diff --git a/spec/System/TestUtils_spec.lua b/spec/System/TestUtils_spec.lua new file mode 100644 index 0000000000..6f1c601341 --- /dev/null +++ b/spec/System/TestUtils_spec.lua @@ -0,0 +1,111 @@ +describe("Utils.stringify", function() + local utils = require("Modules/Utils") + + -- Parses stringify output back into a Lua value + local function serializeAndLoad(value, allowNewlines) + local str = utils.stringify(value, allowNewlines) + local chunk, err = loadstring("return "..str) + assert.is_truthy(chunk) + return chunk(), str + end + + describe("scalars", function() + it("stringifies strings with quotes", function() + assert.equal('"hello"', utils.stringify("hello")) + end) + + it("strips newlines from strings by default", function() + assert.equal('"a b"', utils.stringify("a\nb")) + end) + + it("preserves newlines as long strings when allowed", function() + assert.equal("[[a\nb]]", utils.stringify("a\nb", true)) + end) + + it("does not use long string form for newline-free strings", function() + assert.equal('"ab"', utils.stringify("ab", true)) + end) + + it("stringifies numbers", function() + assert.equal("42", utils.stringify(42)) + assert.equal("-3.5", utils.stringify(-3.5)) + end) + + it("stringifies booleans", function() + assert.equal("true", utils.stringify(true)) + assert.equal("false", utils.stringify(false)) + end) + + it("stringifies nil", function() + assert.equal("nil", utils.stringify(nil)) + end) + + -- supposedly these are valid table keys, but like come on + it("errors on disallowed types", function() + assert.has_error(function() utils.stringify(function() end) end) + assert.has_error(function() utils.stringify({[ function() end ] = "hello"}) end) + end) + end) + + describe("tables", function() + it("serializes and loads an empty table", function() + local out = serializeAndLoad({}) + assert.same({}, out) + end) + + it("serializes and loads an array using array syntax", function() + local input = { 1, 2, 3 } + local out, str = serializeAndLoad(input) + assert.same(input, out) + -- array entries should not include explicit keys + assert.is_nil(str:find("%[1%]")) + end) + + it("serializes and loads a string-keyed map", function() + local input = { foo = "bar", baz = 1 } + local out = serializeAndLoad(input) + assert.same(input, out) + end) + + it("serializes and loads nested tables (no mixed array/map levels)", function() + local input = { a = { b = { c = { deep = true, value = 3 } } }, list = { "x", "y" } } + local out = serializeAndLoad(input) + assert.same(input, out) + end) + + it("sorts map keys deterministically", function() + local str = utils.stringify({ c = 1, a = 1, b = 1 }) + local posA = str:find('%["a"%]') + local posB = str:find('%["b"%]') + local posC = str:find('%["c"%]') + assert.is_truthy(posA < posB and posB < posC) + end) + + it("serializes and loads numeric (non-sequential) keys", function() + local input = { [5] = "five", [10] = "ten" } + local out = serializeAndLoad(input) + assert.same(input, out) + end) + + it("serializes and loads multiline string values when allowed", function() + local input = { text = "line1\nline2" } + local out = serializeAndLoad(input, true) + assert.same(input, out) + end) + + it("serializes and loads mixed tables", function() + local input = {"one", "two", six = 7, 3, 4, five = "six"} + local str = utils.stringify(input, false, 1) + assert.equal([[{ + "one", + "two", + 3, + 4, + ["five"] = "six", + ["six"] = 7, +}]], str) + local out = serializeAndLoad(input) + assert.same(input, out) + end) + end) +end) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 9531e5f254..415a668a0f 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -10,6 +10,7 @@ local m_max = math.max local s_format = string.format local t_insert = table.insert local tradeHelpers = LoadModule("Classes/TradeHelpers") +local utils = LoadModule("Modules/Utils") -- string are an any type while tables require all fields to be matched with type and subType require both to be matched exactly. [1] type, [2] subType, subType is optional and must be nil if not present. local tradeCategoryNames = { @@ -395,11 +396,6 @@ function TradeQueryGeneratorClass:InitMods() error("Error received from api/trade2/data/stats: "..body.error.message) end - local f = io.open("./Data/TradeSiteStats.lua", "w") - if not f then - error("Could not open file for writing trade stat data") - end - for catIdx, _ in ipairs(body.result) do table.sort(body.result[catIdx].entries, function(a, b) if a.text == b.text then @@ -409,14 +405,8 @@ function TradeQueryGeneratorClass:InitMods() end) end - local template = [[-- This file is automatically downloaded, do not edit! --- Trade site stat data (c) Grinding Gear Games --- https://www.pathofexile.com/api/trade2/data/stats --- spell-checker: disable -return %s --- spell-checker: enable]] - f:write(s_format(template, stringify(body.result))) - f:close() + local description = "This file contains the trade site data from https://www.pathofexile.com/api/trade2/data/stats" + utils.saveTableToFile("./Data/TradeSiteStats.lua", body.result, description) self.modData = { ["Explicit"] = { }, @@ -636,19 +626,12 @@ return %s end end - local queryModsFile = io.open(queryModFilePath, 'w') - queryModsFile:write([[-- This file is automatically generated, do not edit! --- Stat data (c) Grinding Gear Games - --- This file contains categories of stats, mapped from trade hash to details --- relevant for generating search weights Note that the trade site requires a --- prefix of e.g. explicit.stat_{hash}. See --- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade --- site stats. - -]]) - queryModsFile:write("return " .. stringify(self.modData)) - queryModsFile:close() + local qmDescription = [[This file contains categories of stats, mapped from trade hash to details +relevant for generating search weights Note that the trade site requires a +prefix of e.g. explicit.stat_{hash}. See +TradeSiteStats.lua for a list of all trade +site stats.]] + utils.saveTableToFile(queryModFilePath, self.modData, qmDescription) end function TradeQueryGeneratorClass:GenerateModWeights(modsToTest) diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 8a042c3670..01312bf016 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -5,6 +5,7 @@ -- local dkjson = require "dkjson" +local utils = LoadModule("Modules/Utils") ---@class TradeQueryRequests local TradeQueryRequestsClass = newClass("TradeQueryRequests", function(self, rateLimiter) @@ -219,7 +220,7 @@ function TradeQueryRequestsClass:PerformSearch(realm, league, query, callback) if response.error then if not (response.error.code and response.error.message) then errMsg = "Encountered unknown error, check console for details." - ConPrintf("Unknown error: %s", stringify(response.error)) + ConPrintf("Unknown error: %s", utils.stringify(response.error)) callback(response, errMsg) end if response.error.message:find("Logging in will increase this limit") then diff --git a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua index f807e04d31..3d6178f9d5 100644 --- a/src/Data/FlavourText.lua +++ b/src/Data/FlavourText.lua @@ -1,156 +1,158 @@ -- This file is automatically generated, do not edit! --- Flavour text data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games + +-- spell-checker: disable return { - [1] = { - id = "FourUniqueBodyStr1", - name = "Bramblejack", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyStr1", + ["name"] = "Bramblejack", + ["origin"] = "Ezomyte", + ["text"] = { "It is safer to be feared than to be loved.", }, }, - [2] = { - id = "FourUniqueBodyStr2", - name = "Blackbraid", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyStr2", + ["name"] = "Blackbraid", + ["origin"] = "Ezomyte", + ["text"] = { "An Ezomyte endures.", }, }, - [3] = { - id = "FourUniqueBodyStr3", - name = "Edyrn's Tusks", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyStr3", + ["name"] = "Edyrn's Tusks", + ["origin"] = "Ezomyte", + ["text"] = { "In death, the legendary boar's tusks were turned", "to the slaying of Phaaryl's Eternal oppressors.", }, }, - [4] = { - id = "FourUniqueBodyStr4", - name = "The Road Warrior", - text = { + { + ["id"] = "FourUniqueBodyStr4", + ["name"] = "The Road Warrior", + ["text"] = { "That most legendary caravan bandit had", "one rule: never let them see you flinch.", }, }, - [5] = { - id = "FourUniqueBodyStr5", - name = "Titanrot Cataphract", - text = { + { + ["id"] = "FourUniqueBodyStr5", + ["name"] = "Titanrot Cataphract", + ["text"] = { "Not the sound of thunder on the wind, but the", "rhoaback riders—death charging from the sands.", }, }, - [6] = { - id = "FourUniqueBodyStr6", - name = "Wandering Reliquary", - text = { + { + ["id"] = "FourUniqueBodyStr6", + ["name"] = "Wandering Reliquary", + ["text"] = { "Knowing she could outlast any opponent,", "Wrashmin fought not to win, but to delay.", }, }, - [7] = { - id = "FourUniqueBodyStr7", - name = "Kingsguard", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyStr7", + ["name"] = "Kingsguard", + ["origin"] = "Ezomyte", + ["text"] = { "The toughest armour is the trust of your people.", }, }, - [8] = { - id = "FourUniqueBodyStr8", - name = "Greed's Embrace", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyStr8", + ["name"] = "Greed's Embrace", + ["origin"] = "Vaal", + ["text"] = { "Some would question if the risk was worth it.", "The rest were already dead.", }, }, - [9] = { - id = "FourUniqueBodyStr12_", - name = "The Brass Dome", - text = { + { + ["id"] = "FourUniqueBodyStr12_", + ["name"] = "The Brass Dome", + ["text"] = { "The turtle's shell one day becomes its tomb.", }, }, - [10] = { - id = "FourUniqueBodyStr14", - name = "Kaom's Heart", - text = { + { + ["id"] = "FourUniqueBodyStr14", + ["name"] = "Kaom's Heart", + ["text"] = { "The warrior who fears will fall.", }, }, - [11] = { - id = "FourUniqueBodyDex1", - name = "Bristleboar", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyDex1", + ["name"] = "Bristleboar", + ["origin"] = "Ezomyte", + ["text"] = { "When cornered and desperate, look within for the rage to break loose.", }, }, - [12] = { - id = "FourUniqueBodyDex2", - name = "Foxshade", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyDex2", + ["name"] = "Foxshade", + ["origin"] = "Ezomyte", + ["text"] = { "To catch an animal, think like an animal.", }, }, - [13] = { - id = "FourUniqueBodyDex3", - name = "Ashrend", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyDex3", + ["name"] = "Ashrend", + ["origin"] = "Ezomyte", + ["text"] = { "The blasted oak stands forever.", }, }, - [14] = { - id = "FourUniqueBodyDex4", - name = "Sands of Silk", - text = { + { + ["id"] = "FourUniqueBodyDex4", + ["name"] = "Sands of Silk", + ["text"] = { "The desert is ever flowing.", }, }, - [15] = { - id = "FourUniqueBodyDex5", - name = "Briskwrap", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBodyDex5", + ["name"] = "Briskwrap", + ["origin"] = "Ezomyte", + ["text"] = { "\"I carry neither food nor drink. I rely on the charity", "of my fellow wayfarers. Dead men are generous men.\"", "- Taruk of the Wildmen", }, }, - [16] = { - id = "FourUniqueBodyDex6", - name = "Dustbloom", - text = { + { + ["id"] = "FourUniqueBodyDex6", + ["name"] = "Dustbloom", + ["text"] = { "Wraeclast has suffered many great disasters,", "but life always springs back anew.", }, }, - [17] = { - id = "FourUniqueBodyDex7", - name = "The Rat Cage", - text = { + { + ["id"] = "FourUniqueBodyDex7", + ["name"] = "The Rat Cage", + ["text"] = { "The truth lies inside every man, if you dig around.", "Many a confession was found in the bowels of Axiom.", }, }, - [18] = { - id = "FourUniqueBodyDex8", - name = "Quatl's Molt", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyDex8", + ["name"] = "Quatl's Molt", + ["origin"] = "Vaal", + ["text"] = { "As the serpent wills.", }, }, - [19] = { - id = "FourUniqueBodyDex10", - name = "Queen of the Forest", - text = { + { + ["id"] = "FourUniqueBodyDex10", + ["name"] = "Queen of the Forest", + ["text"] = { "Shedding away her regal past,", "she forged a new destiny.", "Sacrificing the ephemeral joys of man,", @@ -159,117 +161,117 @@ return { "she found peace at last.", }, }, - [20] = { - id = "FourUniqueBodyDex11", - name = "Yriel's Fostering", - text = { + { + ["id"] = "FourUniqueBodyDex11", + ["name"] = "Yriel's Fostering", + ["text"] = { "Feed a beast and it will not hunt.", "Protect it and it will not fight.", "Ferocity must be learned, not taught.", "It is suffering that forges the greatest warriors.", }, }, - [21] = { - id = "FourUniqueBodyDex15", - name = "Hyrri's Ire", - text = { + { + ["id"] = "FourUniqueBodyDex15", + ["name"] = "Hyrri's Ire", + ["text"] = { "Hyrri loosed a barrage of arrows,", "tipped with a poisoned hatred", "only oppression can ferment.", }, }, - [22] = { - id = "FourUniqueBodyDex16", - name = "The Auspex", - text = { + { + ["id"] = "FourUniqueBodyDex16", + ["name"] = "The Auspex", + ["text"] = { "\"The boy is a bad omen,\" he cried. \"Ravens gather", "before him!\" That night, a new raven appeared, and", "shadowed the Auspex for the rest of his days.", }, }, - [23] = { - id = "FourUniqueBodyInt1", - name = "Ghostwrithe", - text = { + { + ["id"] = "FourUniqueBodyInt1", + ["name"] = "Ghostwrithe", + ["text"] = { "Faith springs abundant at the edge of death.", }, }, - [24] = { - id = "FourUniqueBodyInt2", - name = "Bitterbloom", - text = { + { + ["id"] = "FourUniqueBodyInt2", + ["name"] = "Bitterbloom", + ["text"] = { "The soul cannot flourish in a doubting mind.", }, }, - [25] = { - id = "FourUniqueBodyInt3", - name = "The Black Doubt", - text = { + { + ["id"] = "FourUniqueBodyInt3", + ["name"] = "The Black Doubt", + ["text"] = { "Suspicion is a sinister shadow slithering in the soul.", }, }, - [26] = { - id = "FourUniqueBodyInt4", - name = "Necromantle", - text = { + { + ["id"] = "FourUniqueBodyInt4", + ["name"] = "Necromantle", + ["text"] = { "Fueled by the blackness in the hearts of men,", "the armies of Saresh were just as relentless.", }, }, - [27] = { - id = "FourUniqueBodyInt5", - name = "Cloak of Flame", - text = { + { + ["id"] = "FourUniqueBodyInt5", + ["name"] = "Cloak of Flame", + ["text"] = { "He who sows an ember shall reap an inferno.", }, }, - [28] = { - id = "FourUniqueBodyInt6", - name = "Prayers for Rain", - text = { + { + ["id"] = "FourUniqueBodyInt6", + ["name"] = "Prayers for Rain", + ["text"] = { "In its final era, the roofs of Keth were rife with", "anything and everything that could hold water...", "should the opportunity arise.", }, }, - [29] = { - id = "FourUniqueBodyInt7", - name = "Tetzlapokal's Desire", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyInt7", + ["name"] = "Tetzlapokal's Desire", + ["origin"] = "Vaal", + ["text"] = { "A faith born of flesh.", }, }, - [30] = { - id = "FourUniqueBodyInt8", - name = "The Covenant", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyInt8", + ["name"] = "The Covenant", + ["origin"] = "Vaal", + ["text"] = { "My Soul is your Strength", "My Price is your Blood", }, }, - [31] = { - id = "FourUniqueBodyInt9", - name = "Gloamgown", - text = { + { + ["id"] = "FourUniqueBodyInt9", + ["name"] = "Gloamgown", + ["text"] = { "The tale-women of old knew how to build anticipation.", }, }, - [32] = { - id = "FourUniqueBodyInt12", - name = "Vis Mortis", - text = { + { + ["id"] = "FourUniqueBodyInt12", + ["name"] = "Vis Mortis", + ["text"] = { "Reap what others have sown", "Muster them from their graves", "Parade them for your pleasure", "Zealots in mortis enslaved", }, }, - [33] = { - id = "FourUniqueBodyInt13", - name = "Cloak of Defiance", - text = { + { + ["id"] = "FourUniqueBodyInt13", + ["name"] = "Cloak of Defiance", + ["text"] = { "When the throat roars,", "As eyes weep,", "When the hand grips hard", @@ -280,688 +282,688 @@ return { "Of the Defiant Heart.", }, }, - [34] = { - id = "FourUniqueBodyInt14", - name = "Silks of Veneration", - text = { + { + ["id"] = "FourUniqueBodyInt14", + ["name"] = "Silks of Veneration", + ["text"] = { "Hallowed Dordalus was cast into the pit as a heretic,", "but his piety was so great, he would not burn.", "He rose again, lauded, his faith forever changed...", "but not the way the Templar believed.", }, }, - [35] = { - id = "FourUniqueBodyStrDex1", - name = "Coat of Red", - text = { + { + ["id"] = "FourUniqueBodyStrDex1", + ["name"] = "Coat of Red", + ["text"] = { "For those noble families obsessed", "with keeping their bloodline pure,", "there was a price to pay...", }, }, - [36] = { - id = "FourUniqueBodyStrDex2", - name = "The Barrow Dweller", - text = { + { + ["id"] = "FourUniqueBodyStrDex2", + ["name"] = "The Barrow Dweller", + ["text"] = { "In the mists they dwell,", "forever hungry,", "forever cold.", }, }, - [37] = { - id = "FourUniqueBodyStrDex3", - name = "Irongrasp", - text = { + { + ["id"] = "FourUniqueBodyStrDex3", + ["name"] = "Irongrasp", + ["text"] = { "A power unknown aids your own.", }, }, - [38] = { - id = "FourUniqueBodyStrDex4", - name = "Pariah's Embrace", - text = { + { + ["id"] = "FourUniqueBodyStrDex4", + ["name"] = "Pariah's Embrace", + ["text"] = { "His isolation caused him to treasure", "their companionship all the more.", }, }, - [39] = { - id = "FourUniqueBodyStrDex5", - name = "Belly of the Beast", - text = { + { + ["id"] = "FourUniqueBodyStrDex5", + ["name"] = "Belly of the Beast", + ["text"] = { "There is no safer place", "Than the Belly of the Beast", }, }, - [40] = { - id = "FourUniqueBodyStrDex6", - name = "Doryani's Prototype", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyStrDex6", + ["name"] = "Doryani's Prototype", + ["origin"] = "Vaal", + ["text"] = { "\"This was the first step in some grand design,", "lost to the ages, now ours to decipher.\"", "- Dominus, High Templar", }, }, - [41] = { - id = "FourUniqueBodyStrDex7", - name = "Widow's Reign", - text = { + { + ["id"] = "FourUniqueBodyStrDex7", + ["name"] = "Widow's Reign", + ["text"] = { "That day, both the Unblinking Eye and", "their enemies stood in silence. That day,", "the sky was clear, but it was raining.", }, }, - [42] = { - id = "FourUniqueBodyStrDex8", - name = "Lightning Coil", - text = { + { + ["id"] = "FourUniqueBodyStrDex8", + ["name"] = "Lightning Coil", + ["text"] = { "The world churned during the Great Wasting.", "Tawhoa may have stilled the rioting earth,", "but it was Valako that tamed the broken sky.", }, }, - [43] = { - id = "FourUniqueBodyStrDex9", - name = "The Fallen Formation", - text = { + { + ["id"] = "FourUniqueBodyStrDex9", + ["name"] = "The Fallen Formation", + ["text"] = { "\"I will never forget. I will carry your memory", "forward, all of you, from this ghastly Vale.\"", "- Artair, last survivor of the Ogham rebellion", }, }, - [44] = { - id = "FourUniqueBodyStrDex11", - name = "The Coming Calamity", - text = { + { + ["id"] = "FourUniqueBodyStrDex11", + ["name"] = "The Coming Calamity", + ["text"] = { "Whiff of cold, tiny spark, faintest flicker in the dark.", "Embers swirl, ice takes form, sky exposed - Death's perfect storm.", "Frost and thunder, flames shine bright, ruin walks the land tonight.", "By your hand they dance and bend, wield them and brook no end.", }, }, - [45] = { - id = "FourUniqueBodyStrDex14", - name = "The Sunken Vessel", - text = { + { + ["id"] = "FourUniqueBodyStrDex14", + ["name"] = "The Sunken Vessel", + ["text"] = { "\"What are you lot looking at? We're", "under fire! Get to your stations!\"", "- Captain Sventura, the Unlucky", }, }, - [46] = { - id = "FourUniqueBodyStrInt1_", - name = "Enfolding Dawn", - text = { + { + ["id"] = "FourUniqueBodyStrInt1_", + ["name"] = "Enfolding Dawn", + ["text"] = { "The gleam of the night and howling teeth alike could not abate the rising of the sun.", }, }, - [47] = { - id = "FourUniqueBodyStrInt3", - name = "Icetomb", - text = { + { + ["id"] = "FourUniqueBodyStrInt3", + ["name"] = "Icetomb", + ["text"] = { "When Solaris closes her burning eye", "At the end of time,", "the world will perish in ice.", }, }, - [48] = { - id = "FourUniqueBodyStrInt4", - name = "Reverie", - text = { + { + ["id"] = "FourUniqueBodyStrInt4", + ["name"] = "Reverie", + ["text"] = { "\"Do not despair! Give yourself to the woods!", "Become empty, and the Goddess will find you.", "From within her roots... you shall be restored.\"", "- Cirel of Caer Tarth", }, }, - [49] = { - id = "FourUniqueBodyStrInt5", - name = "Voll's Protector", - text = { + { + ["id"] = "FourUniqueBodyStrInt5", + ["name"] = "Voll's Protector", + ["text"] = { "Although a great leader during the war,", "Voll proved disastrous in times of peace.", }, }, - [50] = { - id = "FourUniqueBodyStrInt6", - name = "Soul Mantle", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyStrInt6", + ["name"] = "Soul Mantle", + ["origin"] = "Vaal", + ["text"] = { "The greatest mistakes cause suffering", "long after they have been made", }, }, - [51] = { - id = "FourUniqueBodyStrInt7", - name = "The Mutable Star", - text = { + { + ["id"] = "FourUniqueBodyStrInt7", + ["name"] = "The Mutable Star", + ["text"] = { "Through every great purge, and every fiery inquisition,", "the Twilight Order endured in secret.", }, }, - [52] = { - id = "FourUniqueBodyStrInt8", - name = "Waveshaper", - text = { + { + ["id"] = "FourUniqueBodyStrInt8", + ["name"] = "Waveshaper", + ["text"] = { "\"Move in ways your enemy does not expect.", "Confuse them with elegance and grace.", "They'll never see the axe coming.\"", "- Rakiata, Chieftain of the Tasalio Tribe", }, }, - [53] = { - id = "FourUniqueBodyStrInt9", - name = "Couture of Crimson", - text = { + { + ["id"] = "FourUniqueBodyStrInt9", + ["name"] = "Couture of Crimson", + ["text"] = { "It is often said of nobles that they live off their", "peasants... sometimes, it's truer than any suspect.", }, }, - [54] = { - id = "FourUniqueBodyStrInt11", - name = "Geofri's Sanctuary", - text = { + { + ["id"] = "FourUniqueBodyStrInt11", + ["name"] = "Geofri's Sanctuary", + ["text"] = { "Faith does not make us invulnerable.", "It makes us immortal.", }, }, - [55] = { - id = "FourUniqueBodyStrInt12", - name = "Sacrosanctum", - text = { + { + ["id"] = "FourUniqueBodyStrInt12", + ["name"] = "Sacrosanctum", + ["text"] = { "The Twilight Order rejected the gods, choosing", "instead to put their faith in each other.", }, }, - [56] = { - id = "FourUniqueBodyStrInt14", - name = "Loreweave", - text = { + { + ["id"] = "FourUniqueBodyStrInt14", + ["name"] = "Loreweave", + ["text"] = { "The collector need not even speak. Each ring", "regaled them with tales of his conquest.", }, }, - [57] = { - id = "FourUniqueBodyStrInt15", - name = "The Unleashed", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueBodyStrInt15", + ["name"] = "The Unleashed", + ["origin"] = "Kalguuran", + ["text"] = { "His latent potential unleashed itself, a beast", "bursting from its shackles. Each strike of Farrow's", "hammer rang out a song for the First Ones.", }, }, - [58] = { - id = "FourUniqueBodyStrInt16", - name = "Decree of Loyalty", - text = { + { + ["id"] = "FourUniqueBodyStrInt16", + ["name"] = "Decree of Loyalty", + ["text"] = { "\"Hold firm. Let no word but the Mothers' turn your head.", "Through your unfaltering fealty, you achieve perfection.\"", }, }, - [59] = { - id = "FourUniqueBodyDexInt1", - name = "Apron of Emiran", - text = { + { + ["id"] = "FourUniqueBodyDexInt1", + ["name"] = "Apron of Emiran", + ["text"] = { "\"Prepare the rack, boy. And be careful with those hooks!\"", "- the Master Torturer's last words", }, }, - [60] = { - id = "FourUniqueBodyDexInt2", - name = "Gloomform", - text = { + { + ["id"] = "FourUniqueBodyDexInt2", + ["name"] = "Gloomform", + ["text"] = { "It was in this forsaken land, where mists shroud the world in mystery,", "that thieves, murderers, and outcasts, sought refuge.", }, }, - [61] = { - id = "FourUniqueBodyDexInt3", - name = "Sierran Inheritance", - text = { + { + ["id"] = "FourUniqueBodyDexInt3", + ["name"] = "Sierran Inheritance", + ["text"] = { "Born among the high peaks, many Mutewind", "live their entire lives in snow and ice.", }, }, - [62] = { - id = "FourUniqueBodyDexInt4", - name = "The Dancing Mirage", - text = { + { + ["id"] = "FourUniqueBodyDexInt4", + ["name"] = "The Dancing Mirage", + ["text"] = { "Be not where death falls.", }, }, - [63] = { - id = "FourUniqueBodyDexInt5", - name = "Redflare Conduit", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyDexInt5", + ["name"] = "Redflare Conduit", + ["origin"] = "Vaal", + ["text"] = { "In all things, control.", }, }, - [64] = { - id = "FourUniqueBodyDexInt6", - name = "Zerphi's Serape", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyDexInt6", + ["name"] = "Zerphi's Serape", + ["origin"] = "Vaal", + ["text"] = { "Mortality is a curse.", "The cure is simple.", }, }, - [65] = { - id = "FourUniqueBodyDexInt13", - name = "Cospri's Will", - text = { + { + ["id"] = "FourUniqueBodyDexInt13", + ["name"] = "Cospri's Will", + ["text"] = { "Curse their vile Council,", "They cast me aside as if I am some bastard child.", "If they only knew the power I possess.", }, }, - [66] = { - id = "FourUniqueBodyDexInt14", - name = "Forgotten Warden", - text = { + { + ["id"] = "FourUniqueBodyDexInt14", + ["name"] = "Forgotten Warden", + ["text"] = { "A gift from the Draíocht, lost in Darkness.", "The bronze hums. The cloth sighs.", "Living pieces of her, yearning to exist.", }, }, - [67] = { - id = "FourUniqueBodyStrDexInt1", - name = "Tabula Rasa", - text = { + { + ["id"] = "FourUniqueBodyStrDexInt1", + ["name"] = "Tabula Rasa", + ["text"] = { }, }, - [68] = { - id = "FourUniqueBodyStrDexInt2", - name = "Atziri's Splendour", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBodyStrDexInt2", + ["name"] = "Atziri's Splendour", + ["origin"] = "Vaal", + ["text"] = { "\"When you have nothing to hide,", "you have nothing to fear.\"", "- Atziri, Queen of the Vaal", }, }, - [69] = { - id = "FourUniqueHelmetStr1a", - name = "Horns of Bynden", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStr1a", + ["name"] = "Horns of Bynden", + ["origin"] = "Ezomyte", + ["text"] = { "The younger brother waded into battle, shrugging off blows.", }, }, - [70] = { - id = "FourUniqueHelmetStr1b", - name = "Wings of Caelyn", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStr1b", + ["name"] = "Wings of Caelyn", + ["origin"] = "Ezomyte", + ["text"] = { "The older brother retained calm in the midst of fury.", }, }, - [71] = { - id = "FourUniqueHelmetStr2", - name = "Ezomyte Peak", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStr2", + ["name"] = "Ezomyte Peak", + ["origin"] = "Ezomyte", + ["text"] = { "Centuries of servitude, a day", "of glory, an eternity of death.", }, }, - [72] = { - id = "FourUniqueHelmetStr3", - name = "Black Sun Crest", - text = { + { + ["id"] = "FourUniqueHelmetStr3", + ["name"] = "Black Sun Crest", + ["text"] = { "The beasts we fear the most", "are the ones who dwell in total darkness.", }, }, - [73] = { - id = "FourUniqueHelmetStr4", - name = "Thrillsteel", - text = { + { + ["id"] = "FourUniqueHelmetStr4", + ["name"] = "Thrillsteel", + ["text"] = { "We may fight, and we may die, but in these", "moments of blood and battle, we truly live.", }, }, - [74] = { - id = "FourUniqueHelmetStr5", - name = "Deidbell", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStr5", + ["name"] = "Deidbell", + ["origin"] = "Ezomyte", + ["text"] = { "May you never hear it toll.", }, }, - [75] = { - id = "FourUniqueHelmetStr6", - name = "Corona of the Red Sun", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueHelmetStr6", + ["name"] = "Corona of the Red Sun", + ["origin"] = "Vaal", + ["text"] = { "Only the High Priests could enact the sacrifices,", "but all who witnessed shared in exultation.", }, }, - [76] = { - id = "FourUniqueHelmetStr8", - name = "Blood Price", - text = { + { + ["id"] = "FourUniqueHelmetStr8", + ["name"] = "Blood Price", + ["text"] = { "An eye for an eye makes the whole world dead.", }, }, - [77] = { - id = "FourUniqueHelmetDex1", - name = "Innsmouth", - text = { + { + ["id"] = "FourUniqueHelmetDex1", + ["name"] = "Innsmouth", + ["text"] = { "Beyond madness lies inspiration.", }, }, - [78] = { - id = "FourUniqueHelmetDex2", - name = "Goldrim", - text = { + { + ["id"] = "FourUniqueHelmetDex2", + ["name"] = "Goldrim", + ["text"] = { "No metal slips as easily through the fingers as gold.", }, }, - [79] = { - id = "FourUniqueHelmetDex3", - name = "Radiant Grief", - text = { + { + ["id"] = "FourUniqueHelmetDex3", + ["name"] = "Radiant Grief", + ["text"] = { "No man burns alone.", }, }, - [80] = { - id = "FourUniqueHelmetDex5", - name = "Elevore", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetDex5", + ["name"] = "Elevore", + ["origin"] = "Ezomyte", + ["text"] = { "Ancient worshippers of the Greatwolf were overtaken", "by a ravenous hunger for all things mystical.", }, }, - [81] = { - id = "FourUniqueHelmetDex6", - name = "Constricting Command", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueHelmetDex6", + ["name"] = "Constricting Command", + ["origin"] = "Vaal", + ["text"] = { "\"Be vigilant, Nezahul! When the serpent is cornered, does it give up?", "No... It waits. Then it bites the first hand it finds.", "The danger of numbers is all in your mind!\"", "- Viper Napuatzi, instructing Royal Commander Nezahul", }, }, - [82] = { - id = "FourUniqueHelmetDex7", - name = "The Black Insignia", - text = { + { + ["id"] = "FourUniqueHelmetDex7", + ["name"] = "The Black Insignia", + ["text"] = { "Brinerot pirates live in a perpetual blaze of glory,", "pushing their luck right to the end.", }, }, - [83] = { - id = "FourUniqueHelmetDex8", - name = "Starkonja's Head", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetDex8", + ["name"] = "Starkonja's Head", + ["origin"] = "Ezomyte", + ["text"] = { "There was no hero made out of Starkonja's death,", "but merely a long sleep made eternal.", }, }, - [84] = { - id = "FourUniqueHelmetDex9", - name = "Heatshiver", - text = { + { + ["id"] = "FourUniqueHelmetDex9", + ["name"] = "Heatshiver", + ["text"] = { "Give of your heated passions.", "Give of your cold resolve.", "You will be repaid.", }, }, - [85] = { - id = "FourUniqueHelmetDex10", - name = "Myris Uxor", - text = { + { + ["id"] = "FourUniqueHelmetDex10", + ["name"] = "Myris Uxor", + ["text"] = { "The end always comes sooner than we think.", }, }, - [86] = { - id = "FourUniqueHelmetDex11", - name = "Alpha's Howl", - text = { + { + ["id"] = "FourUniqueHelmetDex11", + ["name"] = "Alpha's Howl", + ["text"] = { "Nature respects the strong", "And paints the snow red", "With the blood of the weak", }, }, - [87] = { - id = "FourUniqueHelmetInt1", - name = "Crown of Thorns", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetInt1", + ["name"] = "Crown of Thorns", + ["origin"] = "Ezomyte", + ["text"] = { "Lift it lightly, don it slow.", "The spikes point out and in, you know.", }, }, - [88] = { - id = "FourUniqueHelmetInt2", - name = "The Devouring Diadem", - text = { + { + ["id"] = "FourUniqueHelmetInt2", + ["name"] = "The Devouring Diadem", + ["text"] = { "The spirit hungers for the flesh.", }, }, - [89] = { - id = "FourUniqueHelmetInt3", - name = "Visage of Ayah", - text = { + { + ["id"] = "FourUniqueHelmetInt3", + ["name"] = "Visage of Ayah", + ["text"] = { "Tale-women do not fight as dekharas.", "They command a power all their own.", }, }, - [90] = { - id = "FourUniqueHelmetInt4", - name = "Forbidden Gaze", - text = { + { + ["id"] = "FourUniqueHelmetInt4", + ["name"] = "Forbidden Gaze", + ["text"] = { "Keep your heart as ice,", "lest your passions stir.", }, }, - [91] = { - id = "FourUniqueHelmetInt5", - name = "Mask of the Stitched Demon", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueHelmetInt5", + ["name"] = "Mask of the Stitched Demon", + ["origin"] = "Vaal", + ["text"] = { "From the flesh of the gods, Xibaqua was born.", "From the carnage of Xibaqua, we were born.", "It is our duty to return to the gods what was once theirs.", }, }, - [92] = { - id = "FourUniqueHelmetInt6", - name = "Atziri's Disdain", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueHelmetInt6", + ["name"] = "Atziri's Disdain", + ["origin"] = "Vaal", + ["text"] = { "They screamed her name in adulation as they gave", "their very lives. She looked on with impatience.", }, }, - [93] = { - id = "FourUniqueHelmetInt7", - name = "Crown of Eyes", - text = { + { + ["id"] = "FourUniqueHelmetInt7", + ["name"] = "Crown of Eyes", + ["text"] = { "Turning, gazing, blinking,", "behold the eyes of void.", "Burning, razing, drinking,", "your mind is destroyed.", }, }, - [94] = { - id = "FourUniqueHelmetInt8", - name = "Scold's Bridle", - text = { + { + ["id"] = "FourUniqueHelmetInt8", + ["name"] = "Scold's Bridle", + ["text"] = { "\"The sharper the pain, the sharper the mind.", "A curious paradox.\"", "- Shavronne of Umbra", }, }, - [95] = { - id = "FourUniqueHelmetInt11", - name = "Indigon", - text = { + { + ["id"] = "FourUniqueHelmetInt11", + ["name"] = "Indigon", + ["text"] = { "Where the body's limits begin,", "the mind's limits end.", }, }, - [96] = { - id = "FourUniqueHelmetStrDex1", - name = "Greymake", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStrDex1", + ["name"] = "Greymake", + ["origin"] = "Ezomyte", + ["text"] = { "In the end, even heroes fade away.", }, }, - [97] = { - id = "FourUniqueHelmetStrDex2", - name = "Erian's Cobble", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStrDex2", + ["name"] = "Erian's Cobble", + ["origin"] = "Ezomyte", + ["text"] = { "Sometimes patching up your", "equipment gets out of hand.", }, }, - [98] = { - id = "FourUniqueHelmetStrDex3", - name = "Ironride", - text = { + { + ["id"] = "FourUniqueHelmetStrDex3", + ["name"] = "Ironride", + ["text"] = { "Let the rider's aim be true.", }, }, - [99] = { - id = "FourUniqueHelmetStrDex4", - name = "The Smiling Knight", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStrDex4", + ["name"] = "The Smiling Knight", + ["origin"] = "Ezomyte", + ["text"] = { "He never spoke a word. His opponents imagined", "their own personal mockeries, most cruel.", }, }, - [100] = { - id = "FourUniqueHelmetStrDex5", - name = "The Vile Knight", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueHelmetStrDex5", + ["name"] = "The Vile Knight", + ["origin"] = "Ezomyte", + ["text"] = { "Familiarity breeds contempt.", }, }, - [101] = { - id = "FourUniqueHelmetStrDex7", - name = "The Bringer of Rain", - text = { + { + ["id"] = "FourUniqueHelmetStrDex7", + ["name"] = "The Bringer of Rain", + ["text"] = { "\"What lies beneath your feet?!\"", "\"Sacred ground, watered with tears of blood!\"", }, }, - [102] = { - id = "FourUniqueHelmetStrDex9_", - name = "Decree of Acuity", - text = { + { + ["id"] = "FourUniqueHelmetStrDex9_", + ["name"] = "Decree of Acuity", + ["text"] = { "\"Focus. Hone your mind. Your lessers rely on the tangible.", "Shed your senses, and raze them from this physical realm.\"", }, }, - [103] = { - id = "FourUniqueHelmetStrInt1", - name = "Crown of the Victor", - text = { + { + ["id"] = "FourUniqueHelmetStrInt1", + ["name"] = "Crown of the Victor", + ["text"] = { "An endless river of bodies lie in the wake of ambition.", }, }, - [104] = { - id = "FourUniqueHelmetStrInt2", - name = "Bronzebeard", - text = { + { + ["id"] = "FourUniqueHelmetStrInt2", + ["name"] = "Bronzebeard", + ["text"] = { "Heavy is the head.", }, }, - [105] = { - id = "FourUniqueHelmetStrInt3", - name = "Crown of the Pale King", - text = { + { + ["id"] = "FourUniqueHelmetStrInt3", + ["name"] = "Crown of the Pale King", + ["text"] = { "A lightless world", "a silent reign", "two sightless eyes", "feed on your pain.", }, }, - [106] = { - id = "FourUniqueHelmetStrInt4", - name = "Veil of the Night", - text = { + { + ["id"] = "FourUniqueHelmetStrInt4", + ["name"] = "Veil of the Night", + ["text"] = { "The seeds of greatness are planted in darkness,", "Watered by suffering,", "Tended by desperation,", "And bloom steel flowers of victory.", }, }, - [107] = { - id = "FourUniqueHelmetStrInt5", - name = "Cornathaum", - text = { + { + ["id"] = "FourUniqueHelmetStrInt5", + ["name"] = "Cornathaum", + ["text"] = { "Pain brings clarity.", }, }, - [108] = { - id = "FourUniqueHelmetStrInt6", - name = "The Deepest Tower", - text = { + { + ["id"] = "FourUniqueHelmetStrInt6", + ["name"] = "The Deepest Tower", + ["text"] = { "Death crawls in darkness, closer than we think.", }, }, - [109] = { - id = "FourUniqueHelmetStrInt9", - name = "Vestige of Darkness", - text = { + { + ["id"] = "FourUniqueHelmetStrInt9", + ["name"] = "Vestige of Darkness", + ["text"] = { "\"Your covetous hands bring the Unlight", "ever closer to consuming your realm.\"", }, }, - [110] = { - id = "FourUniqueHelmetDexInt1", - name = "The Hollow Mask", - text = { + { + ["id"] = "FourUniqueHelmetDexInt1", + ["name"] = "The Hollow Mask", + ["text"] = { "The roots burrow deeper, unveiling the wood's bounty...", }, }, - [111] = { - id = "FourUniqueHelmetDexInt2", - name = "Mask of the Sanguimancer", - text = { + { + ["id"] = "FourUniqueHelmetDexInt2", + ["name"] = "Mask of the Sanguimancer", + ["text"] = { "A terror of ancient times, his identity", "remains lost... but his power does not.", }, }, - [112] = { - id = "FourUniqueHelmetDexInt3", - name = "Leer Cast", - text = { + { + ["id"] = "FourUniqueHelmetDexInt3", + ["name"] = "Leer Cast", + ["text"] = { "For none of us are as cruel as all of us.", }, }, - [113] = { - id = "FourUniqueHelmetDexInt4", - name = "Atsak's Sight", - text = { + { + ["id"] = "FourUniqueHelmetDexInt4", + ["name"] = "Atsak's Sight", + ["text"] = { "Remaining unseen, the Dishonoured Assassin struck", "only in the depths of the harshest sandstorms.", }, }, - [114] = { - id = "FourUniqueHelmetDexInt5", - name = "The Vertex", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueHelmetDexInt5", + ["name"] = "The Vertex", + ["origin"] = "Vaal", + ["text"] = { "\"A queen should be seen, admired, but never touched.\"", "- Atziri, Queen of the Vaal", }, }, - [115] = { - id = "FourUniqueHelmetDexInt6", - name = "The Three Dragons", - text = { + { + ["id"] = "FourUniqueHelmetDexInt6", + ["name"] = "The Three Dragons", + ["text"] = { "\"The ice seared his naked feet", "As the lightning stilled his heart,", "But it was the flames upon his lover's face", @@ -969,10 +971,10 @@ return { "- From 'The Three Dragons' by Victario of Sarn", }, }, - [116] = { - id = "FourUniqueHelmetDexInt8", - name = "Mind of the Council", - text = { + { + ["id"] = "FourUniqueHelmetDexInt8", + ["name"] = "Mind of the Council", + ["text"] = { "The sky tore asunder, black cleaving upon blue", "The end of life, of Time, with no escape", "But they found a fragment, a void, a haven", @@ -981,531 +983,531 @@ return { "They know your mind, because they remember", }, }, - [117] = { - id = "FourUniqueGlovesStr1", - name = "Facebreaker", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueGlovesStr1", + ["name"] = "Facebreaker", + ["origin"] = "Ezomyte", + ["text"] = { "\"You think us savages?\" mused the Red Wolf, as", "he pulled teeth from the Eternal's skull. \"I will", "show your kind the way of tooth and claw.\"", }, }, - [118] = { - id = "FourUniqueGlovesStr2", - name = "Treefingers", - text = { + { + ["id"] = "FourUniqueGlovesStr2", + ["name"] = "Treefingers", + ["text"] = { "The largest beings on Wraeclast", "are not flesh and blood.", }, }, - [119] = { - id = "FourUniqueGlovesStr3", - name = "Lochtonial Caress", - text = { + { + ["id"] = "FourUniqueGlovesStr3", + ["name"] = "Lochtonial Caress", + ["text"] = { "Why cling to your sanity? It offers you nothing.", "Surrender to me, and I will grant you everything.", }, }, - [120] = { - id = "FourUniqueGlovesStr4", - name = "Dreadfist", - text = { + { + ["id"] = "FourUniqueGlovesStr4", + ["name"] = "Dreadfist", + ["text"] = { "What is worse, the sting of the past, the pain of the present, or the fear of the future?", }, }, - [121] = { - id = "FourUniqueGlovesStr5", - name = "Atziri's Acuity", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueGlovesStr5", + ["name"] = "Atziri's Acuity", + ["origin"] = "Vaal", + ["text"] = { "\"The heart is the herald.", "It will tell me when it is best to strike.\"", "- Atziri, Queen of the Vaal", }, }, - [122] = { - id = "FourUniqueGlovesStr7", - name = "Empire's Grasp", - text = { + { + ["id"] = "FourUniqueGlovesStr7", + ["name"] = "Empire's Grasp", + ["text"] = { "\"I like my vassals at sword point,", "but my enemies as close as the hilt.\"", "- Emperor Chitus", }, }, - [123] = { - id = "FourUniqueGlovesDex1_", - name = "Northpaw", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueGlovesDex1_", + ["name"] = "Northpaw", + ["origin"] = "Ezomyte", + ["text"] = { "Fight with the ferocity of the First Ones.", }, }, - [124] = { - id = "FourUniqueGlovesDex2", - name = "Grip of Winter", - text = { + { + ["id"] = "FourUniqueGlovesDex2", + ["name"] = "Grip of Winter", + ["text"] = { "After the eruption, the skies turned grey,", "ash began to fall, and a chill set in...", }, }, - [125] = { - id = "FourUniqueGlovesDex4", - name = "Idle Hands", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueGlovesDex4", + ["name"] = "Idle Hands", + ["origin"] = "Vaal", + ["text"] = { "The devil finds work for idle hands.", }, }, - [126] = { - id = "FourUniqueGlovesDex5", - name = "Snakebite", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueGlovesDex5", + ["name"] = "Snakebite", + ["origin"] = "Vaal", + ["text"] = { "As the serpent shuns thought,", "It shuns fear.", "It strikes with the speed of wrath", "And the skill of compulsion.", }, }, - [127] = { - id = "FourUniqueGlovesDex6", - name = "Maligaro's Virtuosity", - text = { + { + ["id"] = "FourUniqueGlovesDex6", + ["name"] = "Maligaro's Virtuosity", + ["text"] = { "Maligaro operated effortlessly,", "with great speed and terrible consequences.", }, }, - [128] = { - id = "FourUniqueGlovesDex9", - name = "Horror's Flight", - text = { + { + ["id"] = "FourUniqueGlovesDex9", + ["name"] = "Horror's Flight", + ["text"] = { "If fear doesn't kill you, I will.", }, }, - [129] = { - id = "FourUniqueGlovesInt1", - name = "Painter's Servant", - text = { + { + ["id"] = "FourUniqueGlovesInt1", + ["name"] = "Painter's Servant", + ["text"] = { "Bloodshed on the crimson shores,", "longing for the endless sea.", "Treasures, life, I'd give it all", "just to capture thee.", }, }, - [130] = { - id = "FourUniqueGlovesInt2", - name = "Candlemaker", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueGlovesInt2", + ["name"] = "Candlemaker", + ["origin"] = "Ezomyte", + ["text"] = { "You can be the wick or the wax. Either way, your light goes out and mine goes on.", }, }, - [131] = { - id = "FourUniqueGlovesInt3", - name = "Doedre's Tenure", - text = { + { + ["id"] = "FourUniqueGlovesInt3", + ["name"] = "Doedre's Tenure", + ["text"] = { "While Doedre lacked Maligaro's sense of style,", "she surpassed her master in pure malevolence.", }, }, - [132] = { - id = "FourUniqueGlovesInt4", - name = "Kitoko's Current", - text = { + { + ["id"] = "FourUniqueGlovesInt4", + ["name"] = "Kitoko's Current", + ["text"] = { "Reality is a puzzle. Ingenuity is power.", }, }, - [133] = { - id = "FourUniqueGlovesInt5", - name = "Demon Stitcher", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueGlovesInt5", + ["name"] = "Demon Stitcher", + ["origin"] = "Vaal", + ["text"] = { "Xibaqua's treachery was met with divine fury.", "One by one, the gods reclaimed their flesh,", "until all that remained was a droplet of pure light:", "The first Vaal.", }, }, - [134] = { - id = "FourUniqueGlovesInt6", - name = "Nightscale", - text = { + { + ["id"] = "FourUniqueGlovesInt6", + ["name"] = "Nightscale", + ["text"] = { "Diamora sings not for hunger, but for longing.", }, }, - [135] = { - id = "FourUniqueGlovesInt7", - name = "Leopold's Applause", - text = { + { + ["id"] = "FourUniqueGlovesInt7", + ["name"] = "Leopold's Applause", + ["text"] = { "\"Keep smiling. The deepest cut comes not from insults, but from false praise.\"", }, }, - [136] = { - id = "FourUniqueGlovesStrDex1", - name = "Jarngreipr", - text = { + { + ["id"] = "FourUniqueGlovesStrDex1", + ["name"] = "Jarngreipr", + ["text"] = { "The whispers of the old gods hum through the iron. They demand a hero.", }, }, - [137] = { - id = "FourUniqueGlovesStrDex2", - name = "Aurseize", - text = { + { + ["id"] = "FourUniqueGlovesStrDex2", + ["name"] = "Aurseize", + ["text"] = { "Wealth is not to be borne lightly.", }, }, - [138] = { - id = "FourUniqueGlovesStrDex3", - name = "Deathblow", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueGlovesStrDex3", + ["name"] = "Deathblow", + ["origin"] = "Ezomyte", + ["text"] = { "Anticipation is a gift.", }, }, - [139] = { - id = "FourUniqueGlovesStrDex4", - name = "Valako's Vice", - text = { + { + ["id"] = "FourUniqueGlovesStrDex4", + ["name"] = "Valako's Vice", + ["text"] = { "Unlike the other gods, when he was born from the volcano,", "Valako rode the clouds of ash into the thundering sky.", }, }, - [140] = { - id = "FourUniqueGlovesStrDex5", - name = "Aerisvane's Wings", - text = { + { + ["id"] = "FourUniqueGlovesStrDex5", + ["name"] = "Aerisvane's Wings", + ["text"] = { "The strongest souls are forged through struggle and defeat.", }, }, - [141] = { - id = "FourUniqueGlovesStrInt1", - name = "Gravebind", - text = { + { + ["id"] = "FourUniqueGlovesStrInt1", + ["name"] = "Gravebind", + ["text"] = { "Try as you like to hide the", "blood on your hands.", "You'll still know the truth.", }, }, - [142] = { - id = "FourUniqueGlovesStrInt2", - name = "Shackles of the Wretched", - text = { + { + ["id"] = "FourUniqueGlovesStrInt2", + ["name"] = "Shackles of the Wretched", + ["text"] = { "Captivity breeds creativity.", }, }, - [143] = { - id = "FourUniqueGlovesStrInt3", - name = "Blueflame Bracers", - text = { + { + ["id"] = "FourUniqueGlovesStrInt3", + ["name"] = "Blueflame Bracers", + ["text"] = { "The secret was lost with its maker.", }, }, - [144] = { - id = "FourUniqueGlovesStrInt4", - name = "The Prisoner's Manacles", - text = { + { + ["id"] = "FourUniqueGlovesStrInt4", + ["name"] = "The Prisoner's Manacles", + ["text"] = { "Only once did Maligaro wonder if he'd gone too far.", "His greatest success took three entire legions to capture.", }, }, - [145] = { - id = "FourUniqueGlovesDexInt1", - name = "Plaguefinger", - text = { + { + ["id"] = "FourUniqueGlovesDexInt1", + ["name"] = "Plaguefinger", + ["text"] = { "Ulcers, scabs, and pocks, the third army makes its claim.", }, }, - [146] = { - id = "FourUniqueGlovesDexInt2", - name = "Killjoy", - text = { + { + ["id"] = "FourUniqueGlovesDexInt2", + ["name"] = "Killjoy", + ["text"] = { "\"Stitches? Wouldn't that defeat the purpose?\"", "- Jeffry, Torturer's Apprentice", }, }, - [147] = { - id = "FourUniqueGlovesDexInt5", - name = "Essentia Sanguis", - text = { + { + ["id"] = "FourUniqueGlovesDexInt5", + ["name"] = "Essentia Sanguis", + ["text"] = { "The darkest clouds clashed and coupled,", "giving birth to four lightning children of hate.", }, }, - [148] = { - id = "FourUniqueGlovesDexInt6", - name = "Thunderfist", - text = { + { + ["id"] = "FourUniqueGlovesDexInt6", + ["name"] = "Thunderfist", + ["text"] = { "The roar of the heavens", "Strikes more than fear", "Into the hearts of Man", }, }, - [149] = { - id = "FourUniqueBootsStr1", - name = "Legionstride", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsStr1", + ["name"] = "Legionstride", + ["origin"] = "Ezomyte", + ["text"] = { "A wall of steel and muscle.", }, }, - [150] = { - id = "FourUniqueBootsStr2", - name = "Corpsewade", - text = { + { + ["id"] = "FourUniqueBootsStr2", + ["name"] = "Corpsewade", + ["text"] = { "Natural decay can be twisted to dark ends.", }, }, - [151] = { - id = "FourUniqueBootsStr3", - name = "The Infinite Pursuit", - text = { + { + ["id"] = "FourUniqueBootsStr3", + ["name"] = "The Infinite Pursuit", + ["text"] = { "We move to be closer to her, but the distance yet grows.", }, }, - [152] = { - id = "FourUniqueBootsStr4", - name = "Trampletoe", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsStr4", + ["name"] = "Trampletoe", + ["origin"] = "Ezomyte", + ["text"] = { "The truly mighty are never outnumbered.", }, }, - [153] = { - id = "FourUniqueBootsStr5", - name = "Birth of Fury", - text = { + { + ["id"] = "FourUniqueBootsStr5", + ["name"] = "Birth of Fury", + ["text"] = { "As the sun rises and the light approaches,", "so too shall your enemies fear you.", }, }, - [154] = { - id = "FourUniqueBootsDex2", - name = "Briarpatch", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsDex2", + ["name"] = "Briarpatch", + ["origin"] = "Ezomyte", + ["text"] = { "The druids walk the Grelwood without fear.", }, }, - [155] = { - id = "FourUniqueBootsDex3", - name = "Gamblesprint", - text = { + { + ["id"] = "FourUniqueBootsDex3", + ["name"] = "Gamblesprint", + ["text"] = { "All your tomorrows lie ahead of you,", "unknown and snarled to the very last.", }, }, - [156] = { - id = "FourUniqueBootsDex4", - name = "Thunderstep", - text = { + { + ["id"] = "FourUniqueBootsDex4", + ["name"] = "Thunderstep", + ["text"] = { "Where legends tread,", "the world hearkens.", }, }, - [157] = { - id = "FourUniqueBootsDex5", - name = "Bushwhack", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsDex5", + ["name"] = "Bushwhack", + ["origin"] = "Ezomyte", + ["text"] = { "Banished for his tragic failure,", "Erian learned to hunt to survive.", }, }, - [158] = { - id = "FourUniqueBootsDex9", - name = "Atziri's Step", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBootsDex9", + ["name"] = "Atziri's Step", + ["origin"] = "Vaal", + ["text"] = { "\"Those who dance are considered insane", "by those who cannot hear the music.\"", "- Atziri, Queen of the Vaal", }, }, - [159] = { - id = "FourUniqueBootsInt1", - name = "Luminous Pace", - text = { + { + ["id"] = "FourUniqueBootsInt1", + ["name"] = "Luminous Pace", + ["text"] = { "Blessed are those who tend the Grove.", }, }, - [160] = { - id = "FourUniqueBootsInt2", - name = "Wanderlust", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsInt2", + ["name"] = "Wanderlust", + ["origin"] = "Ezomyte", + ["text"] = { "All the world is my home.", }, }, - [161] = { - id = "FourUniqueBootsInt3", - name = "Bones of Ullr", - text = { + { + ["id"] = "FourUniqueBootsInt3", + ["name"] = "Bones of Ullr", + ["text"] = { "The dead man walks where", "the living fear to tread.", }, }, - [162] = { - id = "FourUniqueBootsInt4", - name = "Wondertrap", - text = { + { + ["id"] = "FourUniqueBootsInt4", + ["name"] = "Wondertrap", + ["text"] = { "Wonders abound at death's door.", }, }, - [163] = { - id = "FourUniqueBootsInt5", - name = "Windscream", - text = { + { + ["id"] = "FourUniqueBootsInt5", + ["name"] = "Windscream", + ["text"] = { "The mocking wind, a shielding spell,", "The haunting screams, a maddening hell", }, }, - [164] = { - id = "FourUniqueBootsStrDex1", - name = "The Knight-errant", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsStrDex1", + ["name"] = "The Knight-errant", + ["origin"] = "Ezomyte", + ["text"] = { "Some search forever for their path.", }, }, - [165] = { - id = "FourUniqueBootsStrDex2", - name = "Darkray Vectors", - text = { + { + ["id"] = "FourUniqueBootsStrDex2", + ["name"] = "Darkray Vectors", + ["text"] = { "\"Sirrius flew on wings of light, faster than wind, faster", "than thought. But try as he might to outrun the darkness,", "it was there, at every turn, waiting for him.\"", "- Azmerian legend", }, }, - [166] = { - id = "FourUniqueBootsStrDex3", - name = "Obern's Bastion", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBootsStrDex3", + ["name"] = "Obern's Bastion", + ["origin"] = "Ezomyte", + ["text"] = { "The storm cannot sway those of sure footing.", }, }, - [167] = { - id = "FourUniqueBootsStrDex4", - name = "Shankgonne", - text = { + { + ["id"] = "FourUniqueBootsStrDex4", + ["name"] = "Shankgonne", + ["text"] = { "\"Captain Hiff Greybeard accomplished what nary a Brinerot", "could: he died of old age. Almost had him a dozen times", "meself, if it weren't for that damn leg of his... crafty shite...\"", }, }, - [168] = { - id = "FourUniqueBootsStrInt2", - name = "Wake of Destruction", - text = { + { + ["id"] = "FourUniqueBootsStrInt2", + ["name"] = "Wake of Destruction", + ["text"] = { "Tempest's power given form,", "Flee before the walking storm.", }, }, - [169] = { - id = "FourUniqueBootsStrInt9", - name = "Decree of Flight", - text = { + { + ["id"] = "FourUniqueBootsStrInt9", + ["name"] = "Decree of Flight", + ["text"] = { "\"Soar. Be swift. Let none trespass here, from", "above or below, lest your purpose be forfeit.\"", }, }, - [170] = { - id = "FourUniqueBootsDexInt2", - name = "Ghostmarch", - text = { + { + ["id"] = "FourUniqueBootsDexInt2", + ["name"] = "Ghostmarch", + ["text"] = { "The cursed ones march forever,", "On their hopeless, last endeavour.", }, }, - [171] = { - id = "FourUniqueBootsDexInt3", - name = "Powertread", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBootsDexInt3", + ["name"] = "Powertread", + ["origin"] = "Vaal", + ["text"] = { "The combat stance used by Vaal nobles", "was as elegant as it was deadly.", }, }, - [172] = { - id = "FourUniqueShieldStr1", - name = "Dionadair", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStr1", + ["name"] = "Dionadair", + ["origin"] = "Ezomyte", + ["text"] = { "Praetor Draven knew his only chance to subjugate", "the Ezomytes was to catch them unaware.", }, }, - [173] = { - id = "FourUniqueShieldStr2", - name = "Wulfsbane", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStr2", + ["name"] = "Wulfsbane", + ["origin"] = "Ezomyte", + ["text"] = { "The Counts of Ogham share a", "legacy of cunning and power.", }, }, - [174] = { - id = "FourUniqueShieldStr3", - name = "Doomgate", - text = { + { + ["id"] = "FourUniqueShieldStr3", + ["name"] = "Doomgate", + ["text"] = { "Welcome to Wraeclast.", }, }, - [175] = { - id = "FourUniqueShieldStr4", - name = "Window to Paradise", - text = { + { + ["id"] = "FourUniqueShieldStr4", + ["name"] = "Window to Paradise", + ["text"] = { "\"Beyond fire, blood, and nightmare,", "the Saviour will build Utopia.\"", }, }, - [176] = { - id = "FourUniqueShieldStr5", - name = "The Wailing Wall", - text = { + { + ["id"] = "FourUniqueShieldStr5", + ["name"] = "The Wailing Wall", + ["text"] = { "Some stories are never told.", }, }, - [177] = { - id = "FourUniqueShieldStr6", - name = "Lycosidae", - text = { + { + ["id"] = "FourUniqueShieldStr6", + ["name"] = "Lycosidae", + ["text"] = { "A true predator does not chase; It waits.", }, }, - [178] = { - id = "FourUniqueShieldStr7", - name = "Redblade Banner", - text = { + { + ["id"] = "FourUniqueShieldStr7", + ["name"] = "Redblade Banner", + ["text"] = { "Blood shed is blood shared.", }, }, - [179] = { - id = "FourUniqueShieldStr8", - name = "The Surrender", - text = { + { + ["id"] = "FourUniqueShieldStr8", + ["name"] = "The Surrender", + ["text"] = { "Our hearts cry out", "but are silenced by our flesh", "and so we give up our flesh.", }, }, - [180] = { - id = "FourUniqueShieldStr13", - name = "Chernobog's Pillar", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStr13", + ["name"] = "Chernobog's Pillar", + ["origin"] = "Ezomyte", + ["text"] = { "Fire dances with those who doubt", "Licks the skin and flesh from the fearful", "Where there is no fear", "There is no flame", }, }, - [181] = { - id = "FourUniqueShieldStr14", - name = "Nightfall", - text = { + { + ["id"] = "FourUniqueShieldStr14", + ["name"] = "Nightfall", + ["text"] = { "\"Upon plains of endless chill,", "They Who Never Tire... dominate.", "They Who Never Surrender... terrify.", @@ -1513,617 +1515,617 @@ return { "- Tul, She That Silences", }, }, - [182] = { - id = "FourUniqueShieldStrDex1", - name = "Arvil's Wheel", - text = { + { + ["id"] = "FourUniqueShieldStrDex1", + ["name"] = "Arvil's Wheel", + ["text"] = { "The unending carnage of war", "mercilessly grinds away", "at body and mind.", }, }, - [183] = { - id = "FourUniqueShieldStrDex2", - name = "Merit of Service", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStrDex2", + ["name"] = "Merit of Service", + ["origin"] = "Ezomyte", + ["text"] = { "Lead by example, and you shall never be alone.", }, }, - [184] = { - id = "FourUniqueShieldStrDex4", - name = "Feathered Fortress", - text = { + { + ["id"] = "FourUniqueShieldStrDex4", + ["name"] = "Feathered Fortress", + ["text"] = { "Ride the western wind, and take flight.", }, }, - [185] = { - id = "FourUniqueShieldStrDex12", - name = "Eyes of the Runefather", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueShieldStrDex12", + ["name"] = "Eyes of the Runefather", + ["origin"] = "Kalguuran", + ["text"] = { "From aeons past, Dannig felt the Runefather's", "gaze, challenging him. There is no honour in ease.", "True greatness is torn from the jaws of defeat.", }, }, - [186] = { - id = "FourUniqueShieldStrInt1", - name = "Alkem Eira", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStrInt1", + ["name"] = "Alkem Eira", + ["origin"] = "Ezomyte", + ["text"] = { "May your resolve never waver.", }, }, - [187] = { - id = "FourUniqueShieldStrInt2", - name = "Oaksworn", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldStrInt2", + ["name"] = "Oaksworn", + ["origin"] = "Ezomyte", + ["text"] = { "The druids swore to protect the Grelwood with their very lives.", }, }, - [188] = { - id = "FourUniqueShieldStrInt3", - name = "Saffell's Frame", - text = { + { + ["id"] = "FourUniqueShieldStrInt3", + ["name"] = "Saffell's Frame", + ["text"] = { "A swift mind solves problems before they occur.", }, }, - [189] = { - id = "FourUniqueShieldStrInt4", - name = "Crest of Ardura", - text = { + { + ["id"] = "FourUniqueShieldStrInt4", + ["name"] = "Crest of Ardura", + ["text"] = { "When the Red Sekhema called,", "the Ardura were the first to answer.", }, }, - [190] = { - id = "FourUniqueShieldStrInt5", - name = "Prism Guardian", - text = { + { + ["id"] = "FourUniqueShieldStrInt5", + ["name"] = "Prism Guardian", + ["text"] = { "When blood is paid, the weak think twice.", }, }, - [191] = { - id = "FourUniqueShieldStrInt6", - name = "Rise of the Phoenix", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueShieldStrInt6", + ["name"] = "Rise of the Phoenix", + ["origin"] = "Vaal", + ["text"] = { "My bearer shall be guarded by flame,", "for I am the phoenix, forever radiant in glory.", }, }, - [192] = { - id = "FourUniqueShieldDex1", - name = "Dunkelhalt", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldDex1", + ["name"] = "Dunkelhalt", + ["origin"] = "Ezomyte", + ["text"] = { "\"A thief in the night, Draven did creep,", "families asleep, taken, held on high.", "Clever, he thought, 'til his children paid.", "Nay, villain, a man never bleeds alone.\"", }, }, - [193] = { - id = "FourUniqueShieldDex2", - name = "Nocturne", - text = { + { + ["id"] = "FourUniqueShieldDex2", + ["name"] = "Nocturne", + ["text"] = { "Light and shadow chase eternal,", "but neither knows the other exists...", }, }, - [194] = { - id = "FourUniqueShieldDex3", - name = "Rondel de Ezo", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueShieldDex3", + ["name"] = "Rondel de Ezo", + ["origin"] = "Ezomyte", + ["text"] = { "\"Resist for long enough, and your oppressor", "will lose his will. Then, you've won.\"", }, }, - [195] = { - id = "FourUniqueShieldDex4", - name = "Bloodbarrier", - text = { + { + ["id"] = "FourUniqueShieldDex4", + ["name"] = "Bloodbarrier", + ["text"] = { "A window onto a realm of red,", "where countless voices scream...", }, }, - [196] = { - id = "FourUniqueShieldDex5", - name = "Kaltenhalt", - text = { + { + ["id"] = "FourUniqueShieldDex5", + ["name"] = "Kaltenhalt", + ["text"] = { "Cold, miserable and alone... but alive.", }, }, - [197] = { - id = "FourUniqueShieldDex6", - name = "Silverthorne", - text = { + { + ["id"] = "FourUniqueShieldDex6", + ["name"] = "Silverthorne", + ["text"] = { "As a boy, in the arena, Daresso learned to", "feign weakness to open up a lethal blow.", }, }, - [198] = { - id = "FourUniqueShieldDex11_", - name = "Calgyra's Arc", - text = { + { + ["id"] = "FourUniqueShieldDex11_", + ["name"] = "Calgyra's Arc", + ["text"] = { "\"There is nowhere my vengeance cannot find you.\"", }, }, - [199] = { - id = "FourUniqueShieldDex12", - name = "Sunsplinter", - text = { + { + ["id"] = "FourUniqueShieldDex12", + ["name"] = "Sunsplinter", + ["text"] = { "\"Lundara held back the hordes, while Solerai rose to split the sky.", "With a single stroke, she ended the Winter of the World.\"", "- Wranga, tale-woman of the Wahida akhara", }, }, - [200] = { - id = "FourUniqueFocus1", - name = "Deathrattle", - text = { + { + ["id"] = "FourUniqueFocus1", + ["name"] = "Deathrattle", + ["text"] = { "The cry of death whispers in the wind.", }, }, - [201] = { - id = "FourUniqueFocus2", - name = "Threaded Light", - text = { + { + ["id"] = "FourUniqueFocus2", + ["name"] = "Threaded Light", + ["text"] = { "A gift, a braid, of golden hair.", "The war, forgotten.", "The reason, remembered.", }, }, - [202] = { - id = "FourUniqueFocus3", - name = "Effigy of Cruelty", - text = { + { + ["id"] = "FourUniqueFocus3", + ["name"] = "Effigy of Cruelty", + ["text"] = { "The horrors we imagined as children", "still exist somewhere in the dark...", }, }, - [203] = { - id = "FourUniqueFocus4", - name = "Carrion Call", - text = { + { + ["id"] = "FourUniqueFocus4", + ["name"] = "Carrion Call", + ["text"] = { "Obedience stretches beyond the grave.", }, }, - [204] = { - id = "FourUniqueFocus5", - name = "Serpent's Lesson", - text = { + { + ["id"] = "FourUniqueFocus5", + ["name"] = "Serpent's Lesson", + ["text"] = { "Sinuous, entwined... inextricable.", }, }, - [205] = { - id = "FourUniqueFocus6", - name = "The Eternal Spark", - text = { + { + ["id"] = "FourUniqueFocus6", + ["name"] = "The Eternal Spark", + ["text"] = { "A flash of blue, a stormcloud's kiss,", "her motionless dance the pulse of bliss", }, }, - [206] = { - id = "FourUniqueFocus7", - name = "Apep's Supremacy", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueFocus7", + ["name"] = "Apep's Supremacy", + ["origin"] = "Vaal", + ["text"] = { "Give him your body, and your burdens will follow.", }, }, - [207] = { - id = "FourUniqueFocus8", - name = "Rathpith Globe", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueFocus8", + ["name"] = "Rathpith Globe", + ["origin"] = "Vaal", + ["text"] = { "The Vaal emptied their slaves of beating hearts,", "and left a mountain of twitching dead.", }, }, - [208] = { - id = "FourUniqueQuiver1", - name = "Asphyxia's Wrath", - text = { + { + ["id"] = "FourUniqueQuiver1", + ["name"] = "Asphyxia's Wrath", + ["text"] = { "Mist of breath", "Icing to lips and throat", "As the warm ones choke and fall", "Upon the frozen wasteland.", }, }, - [209] = { - id = "FourUniqueQuiver2_", - name = "Blackgleam", - text = { + { + ["id"] = "FourUniqueQuiver2_", + ["name"] = "Blackgleam", + ["text"] = { "Molten feathers, veiled spark,", "Hissing arrows from the dark.", }, }, - [210] = { - id = "FourUniqueQuiver3", - name = "The Lethal Draw", - text = { + { + ["id"] = "FourUniqueQuiver3", + ["name"] = "The Lethal Draw", + ["text"] = { "Life and death ooze from the same sap.", }, }, - [211] = { - id = "FourUniqueQuiver5", - name = "Rearguard", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueQuiver5", + ["name"] = "Rearguard", + ["origin"] = "Vaal", + ["text"] = { "\"It's a rare man that has eyes in the back of his head.\"", "- Kiravi, Vaal Archer", }, }, - [212] = { - id = "FourUniqueQuiver6", - name = "Murkshaft", - text = { + { + ["id"] = "FourUniqueQuiver6", + ["name"] = "Murkshaft", + ["text"] = { "\"Boiling frogs isn't for spells, dear. That's a disgusting", "rumour. They're actually for brewing poisons.\"", "- Selassie of the Black Fen", }, }, - [213] = { - id = "FourUniqueQuiver8", - name = "Cadiro's Gambit", - text = { + { + ["id"] = "FourUniqueQuiver8", + ["name"] = "Cadiro's Gambit", + ["text"] = { "\"One can never fully eliminate Chance, but with the right", "machinations, all the outcomes may be turned in your favour...\"", "- Cadiro Perandus", }, }, - [214] = { - id = "FourUniqueQuiver12", - name = "Drillneck", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueQuiver12", + ["name"] = "Drillneck", + ["origin"] = "Vaal", + ["text"] = { "\"Why waste such a fine arrow on just one man?\"", "- Kiravi, Vaal Archer", }, }, - [215] = { - id = "FourUniqueAmulet1", - name = "Igniferis", - text = { + { + ["id"] = "FourUniqueAmulet1", + ["name"] = "Igniferis", + ["text"] = { "A hearth unyielding, ever warm,", "A light unbroken, endlessly reborn.", }, }, - [216] = { - id = "FourUniqueAmulet2", - name = "Idol of Uldurn", - text = { + { + ["id"] = "FourUniqueAmulet2", + ["name"] = "Idol of Uldurn", + ["text"] = { "Worship of house gods was tolerated", "in Oriath, so long as it remained private.", }, }, - [217] = { - id = "FourUniqueAmulet3", - name = "The Everlasting Gaze", - text = { + { + ["id"] = "FourUniqueAmulet3", + ["name"] = "The Everlasting Gaze", + ["text"] = { "What they saw was what they believed, and", "they believed Lunaris had not abandoned them.", }, }, - [218] = { - id = "FourUniqueAmulet4", - name = "Ungil's Harmony", - text = { + { + ["id"] = "FourUniqueAmulet4", + ["name"] = "Ungil's Harmony", + ["text"] = { "Gentle anger, raging calm.", }, }, - [219] = { - id = "FourUniqueAmulet5", - name = "Revered Resin", - text = { + { + ["id"] = "FourUniqueAmulet5", + ["name"] = "Revered Resin", + ["text"] = { "The sacred sap flows slowly, but surely.", }, }, - [220] = { - id = "FourUniqueAmulet6", - name = "Carnage Heart", - text = { + { + ["id"] = "FourUniqueAmulet6", + ["name"] = "Carnage Heart", + ["text"] = { "Forged from the blood of countless wars,", "its thirst has only begun.", }, }, - [221] = { - id = "FourUniqueAmulet7", - name = "Surefooted Sigil", - text = { + { + ["id"] = "FourUniqueAmulet7", + ["name"] = "Surefooted Sigil", + ["text"] = { "Natural grace is born, not earned.", }, }, - [222] = { - id = "FourUniqueAmulet8", - name = "Defiance of Destiny", - text = { + { + ["id"] = "FourUniqueAmulet8", + ["name"] = "Defiance of Destiny", + ["text"] = { "The respect of Karui warriors is hard to earn,", "but lasts a lifetime... and beyond.", }, }, - [223] = { - id = "FourUniqueAmulet9", - name = "Stone of Lazhwar", - text = { + { + ["id"] = "FourUniqueAmulet9", + ["name"] = "Stone of Lazhwar", + ["text"] = { "You are slow, foolish and ignorant.", "I am not.", }, }, - [224] = { - id = "FourUniqueAmulet10_", - name = "Ligurium Talisman", - text = { + { + ["id"] = "FourUniqueAmulet10_", + ["name"] = "Ligurium Talisman", + ["text"] = { "Healing the soul requires sacrifice.", }, }, - [225] = { - id = "FourUniqueAmulet12", - name = "Rondel of Fragility", - text = { + { + ["id"] = "FourUniqueAmulet12", + ["name"] = "Rondel of Fragility", + ["text"] = { "Fanatics are the most dangerous enemy,", "for they care not for their own survival.", }, }, - [226] = { - id = "FourUniqueAmulet13", - name = "The Anvil", - text = { + { + ["id"] = "FourUniqueAmulet13", + ["name"] = "The Anvil", + ["text"] = { "Forge your Perseverance on the Anvil of Faith.", }, }, - [227] = { - id = "FourUniqueAmulet14", - name = "Yoke of Suffering", - text = { + { + ["id"] = "FourUniqueAmulet14", + ["name"] = "Yoke of Suffering", + ["text"] = { "Let the unrepentant be dragged ever downwards by the weight of their sins.", }, }, - [228] = { - id = "FourUniqueAmulet15_", - name = "Astramentis", - text = { + { + ["id"] = "FourUniqueAmulet15_", + ["name"] = "Astramentis", + ["text"] = { "Mindless rage will shake the world,", "Cunning lies will bend it.", "Reckless haste will break the world,", "And into darkness send it.", }, }, - [229] = { - id = "FourUniqueAmulet16", - name = "Fixation of Yix", - text = { + { + ["id"] = "FourUniqueAmulet16", + ["name"] = "Fixation of Yix", + ["text"] = { "He knew not why he was changing, only", "that he wanted to hold his family close...", }, }, - [230] = { - id = "FourUniqueAmulet17", - name = "Beacon of Azis", - text = { + { + ["id"] = "FourUniqueAmulet17", + ["name"] = "Beacon of Azis", + ["text"] = { "The homeguard signalled for aid against a surprise attack,", "but it was not their dekharas that responded.", "It was Solerai herself.", }, }, - [231] = { - id = "FourUniqueAmulet18", - name = "Fireflower", - text = { + { + ["id"] = "FourUniqueAmulet18", + ["name"] = "Fireflower", + ["text"] = { "Tale-women in training drink of a painful desert fruit.", "Fire, they learn, springs from agony.", }, }, - [232] = { - id = "FourUniqueAmulet19_", - name = "Eye of Chayula", - text = { + { + ["id"] = "FourUniqueAmulet19_", + ["name"] = "Eye of Chayula", + ["text"] = { "Never blinking, always watching.", }, }, - [233] = { - id = "FourUniqueAmulet20", - name = "Serpent's Egg", - text = { + { + ["id"] = "FourUniqueAmulet20", + ["name"] = "Serpent's Egg", + ["text"] = { "When Kabala the Serpent Queen was banished from Keth,", "the Sekhemas took a single hostage as punishment.", }, }, - [234] = { - id = "FourUniqueAmulet21", - name = "Hinekora's Sight", - text = { + { + ["id"] = "FourUniqueAmulet21", + ["name"] = "Hinekora's Sight", + ["text"] = { "Remember the past, anticipate the future.", }, }, - [235] = { - id = "FourUniqueAmulet22", - name = "Eventide Petals", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueAmulet22", + ["name"] = "Eventide Petals", + ["origin"] = "Kalguuran", + ["text"] = { "Dannig sculpted the Verisium to evoke the", "night-blooming lotus of Middengard's stygian peaks,", "which grow only where ash meets the snow and stars.", }, }, - [236] = { - id = "FourUniqueAmulet23", - name = "Immaculate Adherence", - text = { + { + ["id"] = "FourUniqueAmulet23", + ["name"] = "Immaculate Adherence", + ["text"] = { "To stray is to condemn this world to sin.", }, }, - [237] = { - id = "FourUniqueRing1", - name = "Blackheart", - text = { + { + ["id"] = "FourUniqueRing1", + ["name"] = "Blackheart", + ["text"] = { "If evil must always exist, so be it.", "Embrace it. Become its master.", }, }, - [238] = { - id = "FourUniqueRing2a", - name = "Icefang Orbit", - text = { + { + ["id"] = "FourUniqueRing2a", + ["name"] = "Icefang Orbit", + ["text"] = { "Those members of the Brotherhood who employ the venom of", "Trarthan ice snakes must take great care with the volatile substance.", }, }, - [239] = { - id = "FourUniqueRing2b", - name = "Venopuncture", - text = { + { + ["id"] = "FourUniqueRing2b", + ["name"] = "Venopuncture", + ["text"] = { "There is a way to survive the bite of an ice snake,", "but few have the resolve to attempt it.", }, }, - [240] = { - id = "FourUniqueRing3", - name = "Prized Pain", - text = { + { + ["id"] = "FourUniqueRing3", + ["name"] = "Prized Pain", + ["text"] = { "Agony brings clarity to those of pure mind.", }, }, - [241] = { - id = "FourUniqueRing4", - name = "Glowswarm", - text = { + { + ["id"] = "FourUniqueRing4", + ["name"] = "Glowswarm", + ["text"] = { "As their eyes adjusted, they became aware of a strange", "blue light. Countless glowing worms crawled above,", "blissfully unaware of their flight from the sirens.", }, }, - [242] = { - id = "FourUniqueRing5", - name = "Doedre's Damning", - text = { + { + ["id"] = "FourUniqueRing5", + ["name"] = "Doedre's Damning", + ["text"] = { "Where her mouth should have been there was only a whirling, black void.", }, }, - [243] = { - id = "FourUniqueRing6", - name = "Seed of Cataclysm", - text = { + { + ["id"] = "FourUniqueRing6", + ["name"] = "Seed of Cataclysm", + ["text"] = { "The dawn of a new era is set into motion", }, }, - [244] = { - id = "FourUniqueRing7", - name = "Cracklecreep", - text = { + { + ["id"] = "FourUniqueRing7", + ["name"] = "Cracklecreep", + ["text"] = { "Fear the fire that spreads like a plague.", }, }, - [245] = { - id = "FourUniqueRing8", - name = "Blistering Bond", - text = { + { + ["id"] = "FourUniqueRing8", + ["name"] = "Blistering Bond", + ["text"] = { "\"The Brotherhood of Silence does not set out to torture our targets.", "Excruciating pain is simply a byproduct of certain... necessary methods.\"", }, }, - [246] = { - id = "FourUniqueRing10", - name = "Polcirkeln", - text = { + { + ["id"] = "FourUniqueRing10", + ["name"] = "Polcirkeln", + ["text"] = { "I rule the north", "A legacy earned", "Time and time again", "Sing Meginord's song!", }, }, - [247] = { - id = "FourUniqueRing11", - name = "Dream Fragments", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueRing11", + ["name"] = "Dream Fragments", + ["origin"] = "Vaal", + ["text"] = { "Doryani stumbled into a realm of madness", "And awoke its Master.", }, }, - [248] = { - id = "FourUniqueRing12", - name = "Whisper of the Brotherhood", - text = { + { + ["id"] = "FourUniqueRing12", + ["name"] = "Whisper of the Brotherhood", + ["text"] = { "Forged by the last remaining brother", "to return all that was once given.", }, }, - [249] = { - id = "FourUniqueRing13", - name = "Levinstone", - text = { + { + ["id"] = "FourUniqueRing13", + ["name"] = "Levinstone", + ["text"] = { "Highgate held other secrets.", }, }, - [250] = { - id = "FourUniqueRing14", - name = "The Burrower", - text = { + { + ["id"] = "FourUniqueRing14", + ["name"] = "The Burrower", + ["text"] = { "It coils deeper and deeper", "It slithers between thoughts", "It lies beneath the valley", "It lies in our minds", }, }, - [251] = { - id = "FourUniqueRing15", - name = "Call of the Brotherhood", - text = { + { + ["id"] = "FourUniqueRing15", + ["name"] = "Call of the Brotherhood", + ["text"] = { "Forged by three brothers", "so that they may recognize each other", "across any distance of time or travel.", }, }, - [252] = { - id = "FourUniqueRing16", - name = "Ming's Heart", - text = { + { + ["id"] = "FourUniqueRing16", + ["name"] = "Ming's Heart", + ["text"] = { "Ming slew Tranquillity", "Took Chaos for his wife", "And on Her immortal finger", "He placed his Heart", }, }, - [253] = { - id = "FourUniqueRing17", - name = "Blackflame", - text = { + { + ["id"] = "FourUniqueRing17", + ["name"] = "Blackflame", + ["text"] = { "Beyond the veil of death, there burns a fire", "by whose light night is borne.", }, }, - [254] = { - id = "FourUniqueRing18", - name = "Original Sin", - text = { + { + ["id"] = "FourUniqueRing18", + ["name"] = "Original Sin", + ["text"] = { "Innocence rose to godhood not on inspired faith,", "but on the vilification and hatred of another.", }, }, - [255] = { - id = "FourUniqueRing19", - name = "Vigilant View", - text = { + { + ["id"] = "FourUniqueRing19", + ["name"] = "Vigilant View", + ["text"] = { "The warriors of the Unblinking Eye moved", "together as one, shoulder to shoulder.", }, }, - [256] = { - id = "FourUniqueRing20", - name = "Death Rush", - text = { + { + ["id"] = "FourUniqueRing20", + ["name"] = "Death Rush", + ["text"] = { "To truly appreciate life you must be there when it ends", }, }, - [257] = { - id = "FourUniqueRing21", - name = "Thief's Torment", - text = { + { + ["id"] = "FourUniqueRing21", + ["name"] = "Thief's Torment", + ["text"] = { "The ring I stole,", "My finger they took,", "A shrouded mind,", @@ -2133,42 +2135,42 @@ return { "A blessing is often a curse.", }, }, - [258] = { - id = "FourUniqueRing22", - name = "Evergrasping Ring", - text = { + { + ["id"] = "FourUniqueRing22", + ["name"] = "Evergrasping Ring", + ["text"] = { "Power comes to those who seek", "Death comes to those who reach", }, }, - [259] = { - id = "FourUniqueRing23", - name = "Heartbound Loop", - text = { + { + ["id"] = "FourUniqueRing23", + ["name"] = "Heartbound Loop", + ["text"] = { "When the axe finally fell, Seryl shared his pain,", "and the last thought that flickered through his", "fading mind was her broken, shattered scream.", }, }, - [260] = { - id = "FourUniqueRing24", - name = "Snakepit", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueRing24", + ["name"] = "Snakepit", + ["origin"] = "Vaal", + ["text"] = { "They wrap around you until your blood turns as cold as theirs.", }, }, - [261] = { - id = "FourUniqueRing25", - name = "Gifts from Above", - text = { + { + ["id"] = "FourUniqueRing25", + ["name"] = "Gifts from Above", + ["text"] = { "God blesses those who bless themselves.", }, }, - [262] = { - id = "FourUniqueRing26a", - name = "Berek's Grip", - text = { + { + ["id"] = "FourUniqueRing26a", + ["name"] = "Berek's Grip", + ["text"] = { "\"Berek hid from Storm's lightning wrath", "In the embrace of oblivious Frost", "Repelled by ice, blinded by blizzards", @@ -2177,10 +2179,10 @@ return { "- Berek and the Untamed", }, }, - [263] = { - id = "FourUniqueRing26b", - name = "Berek's Pass", - text = { + { + ["id"] = "FourUniqueRing26b", + ["name"] = "Berek's Pass", + ["text"] = { "\"From Frost's ice-bound pass", "Berek taunted and jeered", "Until furious Flame scaled the mountain", @@ -2189,10 +2191,10 @@ return { "- Berek and the Untamed", }, }, - [264] = { - id = "FourUniqueRing26c", - name = "Berek's Respite", - text = { + { + ["id"] = "FourUniqueRing26c", + ["name"] = "Berek's Respite", + ["text"] = { "\"With Flame licking at his heels", "Berek berated the clouds", "Until vengeful Storm spewed forth his rains", @@ -2202,10 +2204,10 @@ return { "- Berek and the Untamed", }, }, - [265] = { - id = "FourUniqueRing27", - name = "The Taming", - text = { + { + ["id"] = "FourUniqueRing27", + ["name"] = "The Taming", + ["text"] = { "\"Moon after moon did Berek make fools", "Of the great and Untamed Three", "Until malice for a Brother", @@ -2215,755 +2217,755 @@ return { "- Berek and the Untamed", }, }, - [266] = { - id = "FourUniqueRing28", - name = "Perandus Seal", - text = { + { + ["id"] = "FourUniqueRing28", + ["name"] = "Perandus Seal", + ["text"] = { "A pact with Prospero always comes at a price.", }, }, - [267] = { - id = "FourUniqueRing29", - name = "Andvarius", - text = { + { + ["id"] = "FourUniqueRing29", + ["name"] = "Andvarius", + ["text"] = { "Danger is the price of wealth.", }, }, - [268] = { - id = "FourUniqueRing30", - name = "Ventor's Gamble", - text = { + { + ["id"] = "FourUniqueRing30", + ["name"] = "Ventor's Gamble", + ["text"] = { "In a blaze of glory,", "An anomaly defying all odds", "The \"unkillable\" beast met the divine", "And Ventor met his latest trophy.", }, }, - [269] = { - id = "FourUniqueRing32", - name = "Kalandra's Touch", - text = { + { + ["id"] = "FourUniqueRing32", + ["name"] = "Kalandra's Touch", + ["text"] = { "Power is a matter of perspective.", }, }, - [270] = { - id = "FourUniqueRing33", - name = "Grip of Kulemak", - text = { + { + ["id"] = "FourUniqueRing33", + ["name"] = "Grip of Kulemak", + ["text"] = { "Drink deeply of the Well.", "Let the Abyss coil within.", }, }, - [271] = { - id = "FourUniqueRing34", - name = "Veilpiercer", - text = { + { + ["id"] = "FourUniqueRing34", + ["name"] = "Veilpiercer", + ["text"] = { "The tribe revelled wildly, unaware that each fruit", "they ate further bound their continuity to the fog's.", "In time, the merest touch could break their reality.", }, }, - [272] = { - id = "FourUniqueBelt1", - name = "Meginord's Girdle", - text = { + { + ["id"] = "FourUniqueBelt1", + ["name"] = "Meginord's Girdle", + ["text"] = { "Kaom's strength was rivaled only by", "the great Meginord of the north.", }, }, - [273] = { - id = "FourUniqueBelt2", - name = "Midnight Braid", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBelt2", + ["name"] = "Midnight Braid", + ["origin"] = "Ezomyte", + ["text"] = { "Adversity is the soil in", "which persistence grows.", }, }, - [274] = { - id = "FourUniqueBelt3", - name = "Keelhaul", - text = { + { + ["id"] = "FourUniqueBelt3", + ["name"] = "Keelhaul", + ["text"] = { "Below all living things,", "there exists a flow...", }, }, - [275] = { - id = "FourUniqueBelt4", - name = "Umbilicus Immortalis", - text = { + { + ["id"] = "FourUniqueBelt4", + ["name"] = "Umbilicus Immortalis", + ["text"] = { "\"The power of rebirth rivals that of immortality.\"", "- Icius Perandus, Antiquities Collection, Item 3", }, }, - [276] = { - id = "FourUniqueBelt5", - name = "Birthright Buckle", - text = { + { + ["id"] = "FourUniqueBelt5", + ["name"] = "Birthright Buckle", + ["text"] = { "Some families have peculiar gifts...", }, }, - [277] = { - id = "FourUniqueBelt6", - name = "Byrnabas", - text = { + { + ["id"] = "FourUniqueBelt6", + ["name"] = "Byrnabas", + ["text"] = { "The Brinerot sail without fear of storms.", }, }, - [278] = { - id = "FourUniqueBelt8", - name = "Soul Tether", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBelt8", + ["name"] = "Soul Tether", + ["origin"] = "Vaal", + ["text"] = { "Vaal bloodpriests were among the earliest intellectuals on record.", "It was they who found that a newly freed soul would", "desperately cling to any other source of life.", }, }, - [279] = { - id = "FourUniqueBelt9", - name = "Infernoclasp", - text = { + { + ["id"] = "FourUniqueBelt9", + ["name"] = "Infernoclasp", + ["text"] = { "Tempered by the forbidden flame.", }, }, - [280] = { - id = "FourUniqueBelt10", - name = "Goregirdle", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBelt10", + ["name"] = "Goregirdle", + ["origin"] = "Ezomyte", + ["text"] = { "Bleeding just means you're still alive.", }, }, - [281] = { - id = "FourUniqueBelt12", - name = "Ryslatha's Coil", - text = { + { + ["id"] = "FourUniqueBelt12", + ["name"] = "Ryslatha's Coil", + ["text"] = { "All creatures have the potential for greatness or unequivocal failure.", }, }, - [282] = { - id = "FourUniqueBelt13", - name = "Coward's Legacy", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueBelt13", + ["name"] = "Coward's Legacy", + ["origin"] = "Vaal", + ["text"] = { "Death is your most important duty.", "Face it, or curse your bloodline for all eternity.", }, }, - [283] = { - id = "FourUniqueBelt15", - name = "Bijouborne", - text = { + { + ["id"] = "FourUniqueBelt15", + ["name"] = "Bijouborne", + ["text"] = { "Trifle not with the trinket mage.", }, }, - [284] = { - id = "FourUniqueBelt17", - name = "Waistgate", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueBelt17", + ["name"] = "Waistgate", + ["origin"] = "Kalguuran", + ["text"] = { "Clever artifice is not always complex.", }, }, - [285] = { - id = "FourUniqueBelt18_", - name = "Headhunter", - text = { + { + ["id"] = "FourUniqueBelt18_", + ["name"] = "Headhunter", + ["text"] = { "\"A man's soul rules from a cavern of bone, learns and", "judges through flesh-born windows. The heart is meat.", "The head is where the Man is.\"", "- Lavianga, Advisor to Kaom", }, }, - [286] = { - id = "FourUniqueBelt19", - name = "Cat O' Nine Tails", - text = { + { + ["id"] = "FourUniqueBelt19", + ["name"] = "Cat O' Nine Tails", + ["text"] = { "A Templar thinks he's righteous for flogging", "himself once for every ten lashings he gives.", }, }, - [287] = { - id = "FourUniqueBelt21", - name = "Shavronne's Satchel", - text = { + { + ["id"] = "FourUniqueBelt21", + ["name"] = "Shavronne's Satchel", + ["text"] = { "Bring mystery to life. Again and again.", }, }, - [288] = { - id = "FourUniqueBelt23", - name = "Darkness Enthroned", - text = { + { + ["id"] = "FourUniqueBelt23", + ["name"] = "Darkness Enthroned", + ["text"] = { "Kulemak sat triumphant, raising the crown.", "Darkness coiled the world in eternal night.", "Victory, a mere moment, came crashing down.", "No conqueror, no conquered, only searing Light.", }, }, - [289] = { - id = "FourUniqueBelt24", - name = "Mageblood", - text = { + { + ["id"] = "FourUniqueBelt24", + ["name"] = "Mageblood", + ["text"] = { "Rivers of power coursed through their veins.", "Now, that power is yours, for good or ill.", }, }, - [290] = { - id = "FourUniqueLifeFlask1", - name = "Blood of the Warrior", - text = { + { + ["id"] = "FourUniqueLifeFlask1", + ["name"] = "Blood of the Warrior", + ["text"] = { "\"Tukohama may be asleep, but he still gives us his strength. A small", "needle, an offering, and a vial... drink deeply, my son, and you", "will more than survive the coming battle... you will thrive.\"", }, }, - [291] = { - id = "FourUniqueLifeFlask2", - name = "Opportunity", - text = { + { + ["id"] = "FourUniqueLifeFlask2", + ["name"] = "Opportunity", + ["text"] = { "\"Calculations complete, and He is assembled.", "Our immaculate tactics are set in motion.\"", }, }, - [292] = { - id = "FourUniqueManaFlask1", - name = "Lavianga's Spirits", - text = { + { + ["id"] = "FourUniqueManaFlask1", + ["name"] = "Lavianga's Spirits", + ["text"] = { "\"How do I cope with what I witnessed on Wraeclast?", "Thank the Ancestors! My cup, it overflows.\"", "- Lavianga, former advisor to Kaom", }, }, - [293] = { - id = "FourUniqueManaFlask2", - name = "Uhtred's Chalice", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueManaFlask2", + ["name"] = "Uhtred's Chalice", + ["origin"] = "Kalguuran", + ["text"] = { "Uhtred drank. Verisium burned through his veins.", "He gazed at death's face. With all his strength,", "he turned instead to the stars, and witnessed Truth.", }, }, - [294] = { - id = "FourUniqueOneHandMace1", - name = "Brynhand's Mark", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueOneHandMace1", + ["name"] = "Brynhand's Mark", + ["origin"] = "Ezomyte", + ["text"] = { "The mark of the smith was widely known.", }, }, - [295] = { - id = "FourUniqueOneHandMace2", - name = "Wylund's Stake", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueOneHandMace2", + ["name"] = "Wylund's Stake", + ["origin"] = "Ezomyte", + ["text"] = { "Shaped metal never forgets the forge.", }, }, - [296] = { - id = "FourUniqueOneHandMace3", - name = "Frostbreath", - text = { + { + ["id"] = "FourUniqueOneHandMace3", + ["name"] = "Frostbreath", + ["text"] = { "A merciful murderer swept through the streets of Sarn", "Robbing breath from the weak and worthless.", }, }, - [297] = { - id = "FourUniqueOneHandMace4", - name = "Trenchtimbre", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueOneHandMace4", + ["name"] = "Trenchtimbre", + ["origin"] = "Ezomyte", + ["text"] = { "Ezomyte loyalty was not given to distant leaders.", "It was earned by comrades in arms.", }, }, - [298] = { - id = "FourUniqueOneHandMace5", - name = "Sculpted Suffering", - text = { + { + ["id"] = "FourUniqueOneHandMace5", + ["name"] = "Sculpted Suffering", + ["text"] = { "The Abyssals were created, not born,", "and every moment in the light was agony.", }, }, - [299] = { - id = "FourUniqueOneHandMace6", - name = "Seeing Stars", - text = { + { + ["id"] = "FourUniqueOneHandMace6", + ["name"] = "Seeing Stars", + ["text"] = { "Within lies a window.", }, }, - [300] = { - id = "FourUniqueOneHandMace7", - name = "Nebuloch", - text = { + { + ["id"] = "FourUniqueOneHandMace7", + ["name"] = "Nebuloch", + ["text"] = { "They hoped that, trapped in its prison,", "the creature would age and perish.", "But time would not touch the fiend.", }, }, - [301] = { - id = "FourUniqueOneHandMace9", - name = "Brutus' Lead Sprinkler", - text = { + { + ["id"] = "FourUniqueOneHandMace9", + ["name"] = "Brutus' Lead Sprinkler", + ["text"] = { "\"A sprinkle of liquid encouragement is often", "required to garnish the perfect confession.\"", "- Brutus, Warden of Axiom", }, }, - [302] = { - id = "FourUniqueOneHandMace13", - name = "Mjolner", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueOneHandMace13", + ["name"] = "Mjolner", + ["origin"] = "Kalguuran", + ["text"] = { "Look the storm in the eye and you will have its respect.", }, }, - [303] = { - id = "FourUniqueOneHandMace14", - name = "Sadist's Mercy", - text = { + { + ["id"] = "FourUniqueOneHandMace14", + ["name"] = "Sadist's Mercy", + ["text"] = { "\"You mortals are insidious. You repress your", "evil, or deny it exists. Liars! When I open", "your heads, that violence floods out.\"", "- The Raven Trickster", }, }, - [304] = { - id = "FourUniqueOneHandMace15", - name = "Serle's Grit", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueOneHandMace15", + ["name"] = "Serle's Grit", + ["origin"] = "Kalguuran", + ["text"] = { "A common soldier from a common family kept hammering into the night", "after each grueling march, his eyes afire with starlight and determination.", "Few suspected that he would one day become the greatest among them.", }, }, - [305] = { - id = "FourUniqueTwoHandMace1", - name = "Hoghunt", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueTwoHandMace1", + ["name"] = "Hoghunt", + ["origin"] = "Ezomyte", + ["text"] = { "There was a very clear and delicious", "reason why the Ezomytes chose to", "stop their flight and settle in Phaaryl.", }, }, - [306] = { - id = "FourUniqueTwoHandMace2", - name = "Hrimnor's Hymn", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueTwoHandMace2", + ["name"] = "Hrimnor's Hymn", + ["origin"] = "Ezomyte", + ["text"] = { "\"The crack of bone, the spray of blood.", "Is there sweeter music?\"", "- Hrimnor of the Ezomytes.", }, }, - [307] = { - id = "FourUniqueTwoHandMace3", - name = "Trephina", - text = { + { + ["id"] = "FourUniqueTwoHandMace3", + ["name"] = "Trephina", + ["text"] = { "The art of surgery advances one mistake at a time.", }, }, - [308] = { - id = "FourUniqueTwoHandMace4", - name = "Brain Rattler", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueTwoHandMace4", + ["name"] = "Brain Rattler", + ["origin"] = "Ezomyte", + ["text"] = { "The mind may have no limits, but the skull sure does.", }, }, - [309] = { - id = "FourUniqueTwoHandMace5", - name = "The Empty Roar", - text = { + { + ["id"] = "FourUniqueTwoHandMace5", + ["name"] = "The Empty Roar", + ["text"] = { "Secrecy and silence are powers all their own.", }, }, - [310] = { - id = "FourUniqueTwoHandMace6", - name = "Shyaba", - text = { + { + ["id"] = "FourUniqueTwoHandMace6", + ["name"] = "Shyaba", + ["text"] = { "Be not deceived by the treachery of men.", }, }, - [311] = { - id = "FourUniqueTwoHandMace7", - name = "Chober Chaber", - text = { + { + ["id"] = "FourUniqueTwoHandMace7", + ["name"] = "Chober Chaber", + ["text"] = { "The faithful may continue to serve, even after death.", }, }, - [312] = { - id = "FourUniqueTwoHandMace8", - name = "Quecholli", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueTwoHandMace8", + ["name"] = "Quecholli", + ["origin"] = "Vaal", + ["text"] = { "\"The finest prosperity grows from the direst", "carnage. Such is the nature of progress.\"", "- Doryani of the Vaal", }, }, - [313] = { - id = "FourUniqueTwoHandMace9", - name = "Tidebreaker", - text = { + { + ["id"] = "FourUniqueTwoHandMace9", + ["name"] = "Tidebreaker", + ["text"] = { "The sea strikes the rock relentlessly.", "Whether in one day or in ten thousand years,", "eventually the rock will crumble,", "and the Brine King's domain will grow.", }, }, - [314] = { - id = "FourUniqueTwoHandMace10", - name = "Marohi Erqi", - text = { + { + ["id"] = "FourUniqueTwoHandMace10", + ["name"] = "Marohi Erqi", + ["text"] = { "\"Drunken Erqi boasted to Tukohama; the God of War", "challenged him to a clash of strength. Woe to the", "Divine - he should have made it a test of skill!\"", }, }, - [315] = { - id = "FourUniqueTwoHandMace13", - name = "The Hammer of Faith", - text = { + { + ["id"] = "FourUniqueTwoHandMace13", + ["name"] = "The Hammer of Faith", + ["text"] = { "The secret Order endured by publicly", "praying however the Templars demanded.", "One day, justice would fall upon them...", }, }, - [316] = { - id = "FourUniqueTwoHandMace14", - name = "Twisted Empyrean", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueTwoHandMace14", + ["name"] = "Twisted Empyrean", + ["origin"] = "Kalguuran", + ["text"] = { "Infinite mutations over endless eons borne upon it in a singular moment.", }, }, - [317] = { - id = "FourUniqueSpear1", - name = "Splinter of Lorrata", - text = { + { + ["id"] = "FourUniqueSpear1", + ["name"] = "Splinter of Lorrata", + ["text"] = { "The Baleful Gem's corruption lingers still...", }, }, - [318] = { - id = "FourUniqueSpear2", - name = "Tyranny's Grip", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueSpear2", + ["name"] = "Tyranny's Grip", + ["origin"] = "Ezomyte", + ["text"] = { "The might of the Eternal Empire was formidable,", "but rebels of every culture stood together as one.", }, }, - [319] = { - id = "FourUniqueSpear3", - name = "Chainsting", - text = { + { + ["id"] = "FourUniqueSpear3", + ["name"] = "Chainsting", + ["text"] = { "The Sacred Hunt ends with mercy.", }, }, - [320] = { - id = "FourUniqueSpear4", - name = "Skysliver", - text = { + { + ["id"] = "FourUniqueSpear4", + ["name"] = "Skysliver", + ["text"] = { "Heads fall to the sand, just as the star fell from the sky", }, }, - [321] = { - id = "FourUniqueSpear5", - name = "Daevata's Wind", - text = { + { + ["id"] = "FourUniqueSpear5", + ["name"] = "Daevata's Wind", + ["text"] = { "\"You killed their Golden Sekhema. The Maraketh will think of nothing", "but vengeance now.\" - Dimos, Advisor to General Titucius", }, }, - [322] = { - id = "FourUniqueSpear6", - name = "Tangletongue", - text = { + { + ["id"] = "FourUniqueSpear6", + ["name"] = "Tangletongue", + ["text"] = { "\"In the hands of Orbala, it made a god bleed.\"", "- Wranga, tale-woman of the Wahida akhara", }, }, - [323] = { - id = "FourUniqueSpear7", - name = "Saitha's Spear", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueSpear7", + ["name"] = "Saitha's Spear", + ["origin"] = "Vaal", + ["text"] = { "Born in a star of man's own make,", "fused to her hand by her last mistake.", }, }, - [324] = { - id = "FourUniqueSpear13", - name = "Spire of Ire", - text = { + { + ["id"] = "FourUniqueSpear13", + ["name"] = "Spire of Ire", + ["text"] = { "The spear was specially forged to assassinate Voll,", "but Maligaro never got a chance to use it...", }, }, - [325] = { - id = "FourUniqueSpear14", - name = "Atziri's Contempt", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueSpear14", + ["name"] = "Atziri's Contempt", + ["origin"] = "Vaal", + ["text"] = { "\"My people? I'm not doing this for them.", "They belong to me. They want this for me.", "Their sacrifice is a gift they give out of love", "and adoration... I deserve it. I am their Queen.\"", }, }, - [326] = { - id = "FourUniqueSpear15", - name = "The Ordained", - text = { + { + ["id"] = "FourUniqueSpear15", + ["name"] = "The Ordained", + ["text"] = { "May the Lightless drown in the violence of His devotion.", }, }, - [327] = { - id = "FourUniqueQuarterstaff1", - name = "The Blood Thorn", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueQuarterstaff1", + ["name"] = "The Blood Thorn", + ["origin"] = "Ezomyte", + ["text"] = { "Touch not the thorn, for only blood and pain await.", }, }, - [328] = { - id = "FourUniqueQuarterstaff2", - name = "Pillar of the Caged God", - text = { + { + ["id"] = "FourUniqueQuarterstaff2", + ["name"] = "Pillar of the Caged God", + ["text"] = { "Forged to rule the waves and tide", "Destined to serve the monkey's paw", "Strong as a tower of iron", "Deft as the needle doubt", }, }, - [329] = { - id = "FourUniqueQuarterstaff3", - name = "The Sentry", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueQuarterstaff3", + ["name"] = "The Sentry", + ["origin"] = "Ezomyte", + ["text"] = { "The night Draven attacked,", "Erian was asleep at his post.", }, }, - [330] = { - id = "FourUniqueQuarterstaff5", - name = "Matsya", - text = { + { + ["id"] = "FourUniqueQuarterstaff5", + ["name"] = "Matsya", + ["text"] = { "In our tales, and in our hearts, the rivers still flow.", }, }, - [331] = { - id = "FourUniqueQuarterstaff6", - name = "Nazir's Judgement", - text = { + { + ["id"] = "FourUniqueQuarterstaff6", + ["name"] = "Nazir's Judgement", + ["text"] = { "The first witch hunter knew one critical tactic:", "never let your enemy have a clear moment.", }, }, - [332] = { - id = "FourUniqueQuarterstaff14", - name = "Duality", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueQuarterstaff14", + ["name"] = "Duality", + ["origin"] = "Kalguuran", + ["text"] = { "Dannig saw Seren in his mind's eye, a public ornament of", "extravagance. Until she bore Cadigan a son and vanished.", "Decadence covering brutality, like all Kalguuran customs.", }, }, - [333] = { - id = "FourUniqueWand1", - name = "The Wicked Quill", - text = { + { + ["id"] = "FourUniqueWand1", + ["name"] = "The Wicked Quill", + ["text"] = { "With a flick of the finger, their fates are written,", "the pages torn to a million pieces.", }, }, - [334] = { - id = "FourUniqueWand2", - name = "Sanguine Diviner", - text = { + { + ["id"] = "FourUniqueWand2", + ["name"] = "Sanguine Diviner", + ["text"] = { "One way or another, it will find what it seeks.", }, }, - [335] = { - id = "FourUniqueWand3", - name = "Lifesprig", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueWand3", + ["name"] = "Lifesprig", + ["origin"] = "Ezomyte", + ["text"] = { "From the smallest seeds", "To the tallest redwoods,", "Life endures in Wraeclast.", }, }, - [336] = { - id = "FourUniqueWand4", - name = "Adonia's Ego", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueWand4", + ["name"] = "Adonia's Ego", + ["origin"] = "Ezomyte", + ["text"] = { "Adonia rose with eyes afire, emanating a ghastly aura, and", "broke off a carving from the wall of the Throne Room.", "\"You think me powerless without my wand? Insult me again!\"", }, }, - [337] = { - id = "FourUniqueWand5", - name = "Enezun's Charge", - text = { + { + ["id"] = "FourUniqueWand5", + ["name"] = "Enezun's Charge", + ["text"] = { "He alone was welcome in the sacred spaces of the Titans.", }, }, - [338] = { - id = "FourUniqueWand7", - name = "Cursecarver", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueWand7", + ["name"] = "Cursecarver", + ["origin"] = "Ezomyte", + ["text"] = { "Lost in the Black Fen, Erian hoped that dawn would save him.", "He had no idea how far away the light truly was.", }, }, - [339] = { - id = "FourUniqueWand15", - name = "Liminal Coil", - text = { + { + ["id"] = "FourUniqueWand15", + ["name"] = "Liminal Coil", + ["text"] = { "In that moment, Viridi's bones became", "branches, weaving over the Darkness.", "She coiled around the nothing,", "trapping it within her everything.", }, }, - [340] = { - id = "FourUniqueWand16", - name = "Runeseeker's Call", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueWand16", + ["name"] = "Runeseeker's Call", + ["origin"] = "Ezomyte", + ["text"] = { "Smithed from ancient metal", "wrought from the very stars.", "It is a means to call upon them,", "for one capable of wielding it.", }, }, - [341] = { - id = "FourUniqueStaff1", - name = "Dusk Vigil", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueStaff1", + ["name"] = "Dusk Vigil", + ["origin"] = "Ezomyte", + ["text"] = { "The candlemass tradition was born in a time of darkness and fear.", }, }, - [342] = { - id = "FourUniqueStaff2", - name = "Taryn's Shiver", - text = { + { + ["id"] = "FourUniqueStaff2", + ["name"] = "Taryn's Shiver", + ["text"] = { "Shed by the winged beast of night,", "A scaly frost-encrusted thorn.", "All who feel its wintry light", "Shiver in pain at the frozen dawn.", }, }, - [343] = { - id = "FourUniqueStaff3", - name = "Earthbound", - text = { + { + ["id"] = "FourUniqueStaff3", + ["name"] = "Earthbound", + ["text"] = { "An ancient Azmeri staff, overgrown by roots...", }, }, - [344] = { - id = "FourUniqueStaff5", - name = "The Searing Touch", - text = { + { + ["id"] = "FourUniqueStaff5", + ["name"] = "The Searing Touch", + ["text"] = { "Burn to cinders, scar and maim,", "Rule a world, bathed in flame.", }, }, - [345] = { - id = "FourUniqueStaff6", - name = "Sire of Shards", - text = { + { + ["id"] = "FourUniqueStaff6", + ["name"] = "Sire of Shards", + ["text"] = { "That which was broken may yet break.", }, }, - [346] = { - id = "FourUniqueStaff13", - name = "The Unborn Lich", - text = { + { + ["id"] = "FourUniqueStaff13", + ["name"] = "The Unborn Lich", + ["text"] = { "In ghastly pits beneath the world,", "Kulemak grows countless new bodies,", "each more powerful than the last.", "Not all of his abominations survive.", }, }, - [347] = { - id = "FourUniqueStaff14", - name = "The Whispering Ice", - text = { + { + ["id"] = "FourUniqueStaff14", + ["name"] = "The Whispering Ice", + ["text"] = { "\"From what beast you derived, we can only fathom.", "Aye, you of living ice, rotting gill, and untold nightmare!", "We Brinerot return ye to the sea.\"", "- Weylam Roth", }, }, - [348] = { - id = "FourUniqueStaff17", - name = "Atziri's Rule", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueStaff17", + ["name"] = "Atziri's Rule", + ["origin"] = "Vaal", + ["text"] = { "Bow before her... or suffer the most gruelling death imaginable.", }, }, - [349] = { - id = "FourUniqueStaff18", - name = "The Raven's Flock", - text = { + { + ["id"] = "FourUniqueStaff18", + ["name"] = "The Raven's Flock", + ["text"] = { "\"Where the boy went, ravens gathered,", "feasting on misery. His vile influence", "spread, swift as the carnage they wrought.\"", }, }, - [350] = { - id = "FourUniqueBow1", - name = "Widowhail", - text = { + { + ["id"] = "FourUniqueBow1", + ["name"] = "Widowhail", + ["text"] = { "\"I loosed a volley of arrows into the heart of the man", "who slew my beloved. There was no satisfaction, no", "healing, no revenge. There was only... emptiness.\"", }, }, - [351] = { - id = "FourUniqueBow2", - name = "Quill Rain", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBow2", + ["name"] = "Quill Rain", + ["origin"] = "Ezomyte", + ["text"] = { "\"The rain of a thousand quills that whittle", "present into past, life into death.\"", "- Rigwald of the Ezomytes", }, }, - [352] = { - id = "FourUniqueBow3", - name = "Ironbound", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueBow3", + ["name"] = "Ironbound", + ["origin"] = "Ezomyte", + ["text"] = { "Each crest was a Thane's word, bolted to Ivor's bow.", "They would join the Count's side, or die by his hands.", }, }, - [353] = { - id = "FourUniqueBow4", - name = "Splinterheart", - text = { + { + ["id"] = "FourUniqueBow4", + ["name"] = "Splinterheart", + ["text"] = { "The forests of the Vastiri held many secrets", "mystical and dark. Men learned not to wander,", "lest they return with a strange new purpose.", }, }, - [354] = { - id = "FourUniqueBow5", - name = "Doomfletch", - text = { + { + ["id"] = "FourUniqueBow5", + ["name"] = "Doomfletch", + ["text"] = { "\"Toasted or frozen", "Or twitching in the light", "I'm not fussy", @@ -2971,97 +2973,97 @@ return { "- Koralus Doomfletch", }, }, - [355] = { - id = "FourUniqueBow6", - name = "Death's Harp", - text = { + { + ["id"] = "FourUniqueBow6", + ["name"] = "Death's Harp", + ["text"] = { "The mournful music of the strings,", "The creaking arch, the arrow sings.", "A choking cry, a rattled breath,", "The Reaper's Song, the Harp of Death.", }, }, - [356] = { - id = "FourUniqueBow7", - name = "Voltaxic Rift", - text = { + { + ["id"] = "FourUniqueBow7", + ["name"] = "Voltaxic Rift", + ["text"] = { "The eldritch storm descended upon us, and bruised lightning", "rained down. Metal withered and flesh melted before its", "arcane power. There was no escape, no shelter. Only despair.", }, }, - [357] = { - id = "FourUniqueBow8", - name = "Slivertongue", - text = { + { + ["id"] = "FourUniqueBow8", + ["name"] = "Slivertongue", + ["text"] = { "A hundred blind heads, each seeking the taste of prey on the air.", }, }, - [358] = { - id = "FourUniqueBow9", - name = "Fairgraves' Curse", - text = { + { + ["id"] = "FourUniqueBow9", + ["name"] = "Fairgraves' Curse", + ["text"] = { "The power of the Allflame rends", "souls just as easily as flesh.", }, }, - [359] = { - id = "FourUniqueBow13_", - name = "Lioneye's Glare", - text = { + { + ["id"] = "FourUniqueBow13_", + ["name"] = "Lioneye's Glare", + ["text"] = { "\"Kinslayer, you dishonour your own traditions to turn the tide of battle!", "Let us see which is stronger... Karui savagery or the might of the Empire!\"", "- General Marceus Lioneye", }, }, - [360] = { - id = "FourUniqueBow14", - name = "Periphery", - text = { + { + ["id"] = "FourUniqueBow14", + ["name"] = "Periphery", + ["text"] = { "As the Maji approached the edge of Nothingness, she strung", "fragments of the Wildwood's carcass together. When she", "nocked her arrow, she pulled upon the elements of life itself.", }, }, - [361] = { - id = "FourUniqueCrossbow1", - name = "Mist Whisper", - text = { + { + ["id"] = "FourUniqueCrossbow1", + ["name"] = "Mist Whisper", + ["text"] = { "Sibilant promises surrounded them in the night.", "All the travelers had to give him was their devotion...", }, }, - [362] = { - id = "FourUniqueCrossbow2", - name = "Rampart Raptor", - text = { + { + ["id"] = "FourUniqueCrossbow2", + ["name"] = "Rampart Raptor", + ["text"] = { "\"His approach to the gate was met with sounding trumpets", "and an unfurling of banners. He never saw it coming.\"", "- anonymous Brotherhood of Silence report", }, }, - [363] = { - id = "FourUniqueCrossbow5", - name = "Double Vision", - text = { + { + ["id"] = "FourUniqueCrossbow5", + ["name"] = "Double Vision", + ["text"] = { "For those without a home in the Vastiri, the", "hot day is harsh, but the chill night is far worse.", }, }, - [364] = { - id = "FourUniqueCrossbow13", - name = "The Last Lament", - text = { + { + ["id"] = "FourUniqueCrossbow13", + ["name"] = "The Last Lament", + ["text"] = { "\"And here we shall remain...", "trapped in our symphony of eternal anguish.", "Artist and Composer, their fates entwined for all of time.\"", "- Adamantia Brektov, the Composer", }, }, - [365] = { - id = "FourUniqueCrossbow14", - name = "Redemption", - text = { + { + ["id"] = "FourUniqueCrossbow14", + ["name"] = "Redemption", + ["text"] = { "\"The time has passed for diplomacy!", "If they will not respect House Azadi,", "then let them die gloriously... and loudly.", @@ -3069,665 +3071,665 @@ return { "- Ratha Azadi", }, }, - [366] = { - id = "FourUniqueSceptre1", - name = "The Dark Defiler", - text = { + { + ["id"] = "FourUniqueSceptre1", + ["name"] = "The Dark Defiler", + ["text"] = { "Rare is the Necromancer who leads", "his undead armies from the front.", }, }, - [367] = { - id = "FourUniqueSceptre4", - name = "Font of Power", - text = { + { + ["id"] = "FourUniqueSceptre4", + ["name"] = "Font of Power", + ["text"] = { "Tale-women may not fight directly,", "for they have a much higher purpose.", }, }, - [368] = { - id = "FourUniqueSceptre6", - name = "Guiding Palm", - text = { + { + ["id"] = "FourUniqueSceptre6", + ["name"] = "Guiding Palm", + ["text"] = { "\"When the Third Pact was written in stone, the Dreamer gave the alliance of men and", "beasts knowledge. In return, they gave him a drop of blood; one from each of the", "races of Wraeclast. In the centuries that followed, his Will began to subtly change.\"", "- Book of the Benevolent Dreamer, Histories 220:5", }, }, - [369] = { - id = "FourUniqueSceptre6a", - name = "Guiding Palm of the Heart", - text = { + { + ["id"] = "FourUniqueSceptre6a", + ["name"] = "Guiding Palm of the Heart", + ["text"] = { "\"Power of the Red Pyre! Flaming Heart of the Hive!", "I release your burning message to rest here, forevermore.\"", "The Dreamer declared, casting out the lingering dark embers within him.", }, }, - [370] = { - id = "FourUniqueSceptre6b", - name = "Guiding Palm of the Eye", - text = { + { + ["id"] = "FourUniqueSceptre6b", + ["name"] = "Guiding Palm of the Eye", + ["text"] = { "\"With piercing eyes, you saw through the Stillness.", "Undulating as one, you gloriously covered all in white.", "But... I can bear you no longer.\"", "The Dreamer whispered with fogging breath, ice creeping down his hand.", }, }, - [371] = { - id = "FourUniqueSceptre6c", - name = "Guiding Palm of the Mind", - text = { + { + ["id"] = "FourUniqueSceptre6c", + ["name"] = "Guiding Palm of the Mind", + ["text"] = { "\"Deep in thought, you would tremble the very air before you.", "Wreathed in light, you nurtured them all.", "And yet... Your nature became you.\"", "The Dreamer mused with aching heart, as remnants of forking tendrils burst forth.", }, }, - [372] = { - id = "FourUniqueSceptre6d", - name = "Palm of the Dreamer", - text = { + { + ["id"] = "FourUniqueSceptre6d", + ["name"] = "Palm of the Dreamer", + ["text"] = { "\"We sometimes fail. We sometimes succeed. Who determines one from the other?", "I now know we can never be made One, if we are bore of differing desires.", "And yet, I have hope for a new truth. And I will see it... made real.\"", "- The Benevolent Dreamer", }, }, - [373] = { - id = "FourUniqueSceptre14", - name = "Sylvan's Effigy", - text = { + { + ["id"] = "FourUniqueSceptre14", + ["name"] = "Sylvan's Effigy", + ["text"] = { "Darkness howls through ancient bones, a wistful cry", "on hollow winds. The moon listens. The pack gathers.", }, }, - [374] = { - id = "FourUniqueTalisman1", - name = "Amor Mandragora", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueTalisman1", + ["name"] = "Amor Mandragora", + ["origin"] = "Ezomyte", + ["text"] = { "A sensitive few among the first settlers of Ezomyr", "followed the wisps by canoe. On a misty forested", "island, Cirel of Tarth stood waiting to greet them.", }, }, - [375] = { - id = "FourUniqueTalisman2", - name = "Spiteful Floret", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueTalisman2", + ["name"] = "Spiteful Floret", + ["origin"] = "Ezomyte", + ["text"] = { "If you see the blushing tree of the northern woods,", "remember: \"Blossoms of red, the tree's been fed.", "Blossoms of white, prepare for a fight.\"", }, }, - [376] = { - id = "FourUniqueTalisman4", - name = "Hysseg's Claw", - text = { + { + ["id"] = "FourUniqueTalisman4", + ["name"] = "Hysseg's Claw", + ["text"] = { "In a time of great need, surrounded by Abyssals,", "the Wayward Druid came to the Sun Clan's aid.", "It is a debt they have never forgotten.", }, }, - [377] = { - id = "FourUniqueTalisman8", - name = "The Flesh Poppet", - text = { + { + ["id"] = "FourUniqueTalisman8", + ["name"] = "The Flesh Poppet", + ["text"] = { "Long ago, the witches of the Azak Tribe learned", "how to tap into the flow of Vivid lifeforce to", "'cooperate' with their enemies... forcefully.", }, }, - [378] = { - id = "FourUniqueTalisman10", - name = "Surge of the Tide", - text = { + { + ["id"] = "FourUniqueTalisman10", + ["name"] = "Surge of the Tide", + ["text"] = { "\"A traditional hatungo does not carry an axe,", "it is true. But as Narumoa showed us, there", "are many ways to crush one's enemy...\"", }, }, - [379] = { - id = "FourUniqueTalisman14", - name = "Fury of the King", - text = { + { + ["id"] = "FourUniqueTalisman14", + ["name"] = "Fury of the King", + ["text"] = { "Gruthkul was the Mother of Despair...", "but one day, the Father will return,", "and discover the fate of his children.", }, }, - [380] = { - id = "FourUniqueCharm1", - name = "Nascent Hope", - text = { + { + ["id"] = "FourUniqueCharm1", + ["name"] = "Nascent Hope", + ["text"] = { "\"Even in the face of the Winter of the World,", "life found a way. The Spirit always provides.\"", }, }, - [381] = { - id = "FourUniqueCharm2", - name = "Sanguis Heroum", - text = { + { + ["id"] = "FourUniqueCharm2", + ["name"] = "Sanguis Heroum", + ["text"] = { "Wraeclast has known too few true heroes.", "It remembers those that stood in defiance.", }, }, - [382] = { - id = "FourUniqueCharm3", - name = "Arakaali's Gift", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueCharm3", + ["name"] = "Arakaali's Gift", + ["origin"] = "Vaal", + ["text"] = { "Devotees of the Goddess of Lust", "needed never fear her sting.", }, }, - [383] = { - id = "FourUniqueCharm4", - name = "Beira's Anguish", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueCharm4", + ["name"] = "Beira's Anguish", + ["origin"] = "Ezomyte", + ["text"] = { "They found a crying child tied to a frozen pyre.", "She was clad in ice, but the village was ash.", }, }, - [384] = { - id = "FourUniqueCharm5", - name = "The Black Cat", - text = { + { + ["id"] = "FourUniqueCharm5", + ["name"] = "The Black Cat", + ["text"] = { "The most beloved member of every Brinerot crew", "is the one that refuses to do any actual work.", }, }, - [385] = { - id = "FourUniqueCharm6", - name = "For Utopia", - text = { + { + ["id"] = "FourUniqueCharm6", + ["name"] = "For Utopia", + ["text"] = { "\"It may be centuries hence, but I still hold utmost faith.", "The Saviour will rise, and mankind will be free.\"", }, }, - [386] = { - id = "FourUniqueCharm7", - name = "The Fall of the Axe", - origin = "Ezomyte", - text = { + { + ["id"] = "FourUniqueCharm7", + ["name"] = "The Fall of the Axe", + ["origin"] = "Ezomyte", + ["text"] = { "\"When the headsman's blade swings,", "your last moments stretch to eternity.\"", "- Vorm, the Twice-Pardoned", }, }, - [387] = { - id = "FourUniqueCharm8", - name = "Ngamahu's Chosen", - text = { + { + ["id"] = "FourUniqueCharm8", + ["name"] = "Ngamahu's Chosen", + ["text"] = { "Kaom was not known for his restraint.", }, }, - [388] = { - id = "FourUniqueCharm9", - name = "Breath of the Mountains", - text = { + { + ["id"] = "FourUniqueCharm9", + ["name"] = "Breath of the Mountains", + ["text"] = { "\"To scrape the sky,", "to touch the clouds themselves,", "is to know true freedom.\"", "- Mutewind saying", }, }, - [389] = { - id = "FourUniqueCharm10", - name = "Valako's Roar", - text = { + { + ["id"] = "FourUniqueCharm10", + ["name"] = "Valako's Roar", + ["text"] = { "The sea swells, the sky thunders; two ships tilt at odds.", "Flashes of light show only swinging axes... and a grin.", }, }, - [390] = { - id = "FourUniqueCharm11", - name = "Forsaken Bangle", - text = { + { + ["id"] = "FourUniqueCharm11", + ["name"] = "Forsaken Bangle", + ["text"] = { "Among the Templars, a secret few ate the sins of others.", "They bore this burden to empower their hidden Order.", }, }, - [391] = { - id = "FourUniquePinnacle1", - name = "Morior Invictus", - text = { + { + ["id"] = "FourUniquePinnacle1", + ["name"] = "Morior Invictus", + ["text"] = { "The Unblinking Eye did not cower and wail.", "They stood against the end.", }, }, - [392] = { - id = "FourUniquePinnacle2", - name = "Solus Ipse", - text = { + { + ["id"] = "FourUniquePinnacle2", + ["name"] = "Solus Ipse", + ["text"] = { "One warrior alone survived to face the Arbiter.", }, }, - [393] = { - id = "FourUniquePinnacle3", - name = "Sine Aequo", - text = { + { + ["id"] = "FourUniquePinnacle3", + ["name"] = "Sine Aequo", + ["text"] = { "The greatest warrior of his era fought with honour.", }, }, - [394] = { - id = "FourUniquePinnacle4", - name = "Ab Aeterno", - text = { + { + ["id"] = "FourUniquePinnacle4", + ["name"] = "Ab Aeterno", + ["text"] = { "His enemy was for endurance forged. His own waned.", }, }, - [395] = { - id = "FourUniquePinnacle5", - name = "Sacred Flame", - text = { + { + ["id"] = "FourUniquePinnacle5", + ["name"] = "Sacred Flame", + ["text"] = { "Fire destroys, but fire also purifies.", "Life always springs anew.", }, }, - [396] = { - id = "FourUniqueSanctum1", - name = "Temporalis", - text = { + { + ["id"] = "FourUniqueSanctum1", + ["name"] = "Temporalis", + ["text"] = { "The final element the tale-women", "mastered was Time itself.", }, }, - [397] = { - id = "FourUniqueSanctum2", - name = "Sandstorm Visage", - text = { + { + ["id"] = "FourUniqueSanctum2", + ["name"] = "Sandstorm Visage", + ["text"] = { "A fell wind brings death.", }, }, - [398] = { - id = "FourUniqueSanctum3", - name = "Blessed Bonds", - text = { + { + ["id"] = "FourUniqueSanctum3", + ["name"] = "Blessed Bonds", + ["text"] = { "\"We survived the endless winter.", "We endure the long summer.", "One day, spring will return the rains.\"", }, }, - [399] = { - id = "FourUniqueSanctum4a", - name = "Safrin's Resolve", - text = { + { + ["id"] = "FourUniqueSanctum4a", + ["name"] = "Safrin's Resolve", + ["text"] = { "The Vaal protected those who integrated into their", "culture. Many neighbours became one. Sekhema Safrin", "vowed the Maraketh identity would remain resolute.", }, }, - [400] = { - id = "FourUniqueSanctum4b", - name = "Eshtera's Path", - text = { + { + ["id"] = "FourUniqueSanctum4b", + ["name"] = "Eshtera's Path", + ["text"] = { "During the Winter of the World, her akhara began", "shepherding jingakh across the harsh Vastiri. Sekhema", "Eshtera planted the seeds of Maraketh diplomacy.", }, }, - [401] = { - id = "FourUniqueSanctum4c", - name = "Zaida's Longevity", - text = { + { + ["id"] = "FourUniqueSanctum4c", + ["name"] = "Zaida's Longevity", + ["text"] = { "The relative peace under the fledgling Empire saw", "the first Sekhema to choose, in her resplendent age and", "wisdom, to step down. The role of Zaitema was born.", }, }, - [402] = { - id = "FourUniqueUltimatum1", - name = "Glimpse of Chaos", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueUltimatum1", + ["name"] = "Glimpse of Chaos", + ["origin"] = "Vaal", + ["text"] = { "Man retains sanity and strives toward civilisation", "only under the blessed veil of ignorance.", }, }, - [403] = { - id = "FourUniqueUltimatum2", - name = "Zerphi's Genesis", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueUltimatum2", + ["name"] = "Zerphi's Genesis", + ["origin"] = "Vaal", + ["text"] = { "The most horrifying ideas often begin with a simple innovation.", }, }, - [404] = { - id = "FourUniqueUltimatum3", - name = "Mahuxotl's Machination", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueUltimatum3", + ["name"] = "Mahuxotl's Machination", + ["origin"] = "Vaal", + ["text"] = { "The Banished Architect sought to employ the darkest secrets of the Vaal.", }, }, - [405] = { - id = "FourUniqueUltimatum4", - name = "Hateforge", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueUltimatum4", + ["name"] = "Hateforge", + ["origin"] = "Vaal", + ["text"] = { "The first Karui born on the fringes of the Vaal empire developed a blood fever born of corruption.", }, }, - [406] = { - id = "FourUniqueExpedition1", - name = "Svalinn", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueExpedition1", + ["name"] = "Svalinn", + ["origin"] = "Kalguuran", + ["text"] = { "The priests found the Great Shield the night it fell to Middengard,", "but it was the smiths who delved into the secrets it held.", }, }, - [407] = { - id = "FourUniqueExpedition2", - name = "Keeper of the Arc", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueExpedition2", + ["name"] = "Keeper of the Arc", + ["origin"] = "Kalguuran", + ["text"] = { "The priests of the Kalguur keep faith through numbers", "and calculation, not unprovable promises.", }, }, - [408] = { - id = "FourUniqueExpedition3_", - name = "Olroth's Resolve", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueExpedition3_", + ["name"] = "Olroth's Resolve", + ["origin"] = "Kalguuran", + ["text"] = { "Olroth the Gallant,", "tireless and true,", "he fights for me,", "he fights for you!", }, }, - [409] = { - id = "FourUniqueExpedition4", - name = "Olrovasara", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueExpedition4", + ["name"] = "Olrovasara", + ["origin"] = "Kalguuran", + ["text"] = { "\"True heroes grow stronger in the face of adversity.\"", "- Fourth Tenet of the Knights of the Sun", }, }, - [410] = { - id = "FourUniqueDelirium1", - name = "Assailum", - text = { + { + ["id"] = "FourUniqueDelirium1", + ["name"] = "Assailum", + ["text"] = { "A moment of calm before the battle can end the war.", }, }, - [411] = { - id = "FourUniqueDelirium2", - name = "Perfidy", - text = { + { + ["id"] = "FourUniqueDelirium2", + ["name"] = "Perfidy", + ["text"] = { "The Trickster God turned the very Day and Night against each other.", "What hope have you?", }, }, - [412] = { - id = "FourUniqueDelirium3", - name = "Melting Maelstrom", - text = { + { + ["id"] = "FourUniqueDelirium3", + ["name"] = "Melting Maelstrom", + ["text"] = { "What is life, but a dreamlike spiral of panic?", }, }, - [413] = { - id = "FourUniqueDelirium4", - name = "Collapsing Horizon", - text = { + { + ["id"] = "FourUniqueDelirium4", + ["name"] = "Collapsing Horizon", + ["text"] = { "The edges bend, the world flexes, the infinite spills into view.", }, }, - [414] = { - id = "FourUniqueDelirium5", - name = "Strugglescream", - text = { + { + ["id"] = "FourUniqueDelirium5", + ["name"] = "Strugglescream", + ["text"] = { "There is no light at the end of this inner strife,", "but the shadows eventually become home.", }, }, - [415] = { - id = "FourUniqueRitual1", - name = "The Burden of Shadows", - text = { + { + ["id"] = "FourUniqueRitual1", + ["name"] = "The Burden of Shadows", + ["text"] = { "Nothingness is loathe to relinquish its grip.", "Every moment is a struggle to exist.", }, }, - [416] = { - id = "FourUniqueRitual2", - name = "Beetlebite", - text = { + { + ["id"] = "FourUniqueRitual2", + ["name"] = "Beetlebite", + ["text"] = { "They crawl and chitter and swarm", "in the shadow of his presence.", }, }, - [417] = { - id = "FourUniqueRitual3", - name = "Ingenuity", - text = { + { + ["id"] = "FourUniqueRitual3", + ["name"] = "Ingenuity", + ["text"] = { "Experiments with geomancy taught", "the Maji more than they ever expected.", }, }, - [418] = { - id = "FourUniqueRitual4", - name = "Pragmatism", - text = { + { + ["id"] = "FourUniqueRitual4", + ["name"] = "Pragmatism", + ["text"] = { "In an endless war against darkness,", "one must be ever vigilant.", }, }, - [419] = { - id = "FourUniqueBreach1_", - name = "Skin of the Loyal", - text = { + { + ["id"] = "FourUniqueBreach1_", + ["name"] = "Skin of the Loyal", + ["text"] = { "We happily give our limbs.", "A net woven to keep safe the bones of the Lords.", }, }, - [420] = { - id = "FourUniqueBreach2", - name = "Hand of Wisdom and Action", - text = { + { + ["id"] = "FourUniqueBreach2", + ["name"] = "Hand of Wisdom and Action", + ["text"] = { "She thinks and we act.", "She acts and we think.", "Fragments of the whole that washes clean the skies.", }, }, - [421] = { - id = "FourUniqueBreach3", - name = "Beyond Reach", - text = { + { + ["id"] = "FourUniqueBreach3", + ["name"] = "Beyond Reach", + ["text"] = { "The limit of our knowledge is a barrier", "that protects us from ourselves.", }, }, - [422] = { - id = "FourUniqueBreach4a", - name = "Xoph's Blood", - text = { + { + ["id"] = "FourUniqueBreach4a", + ["name"] = "Xoph's Blood", + ["text"] = { "We are his blood.", "Through us he carries his burning message.", }, }, - [423] = { - id = "FourUniqueBreach4b", - name = "Choir of the Storm", - text = { + { + ["id"] = "FourUniqueBreach4b", + ["name"] = "Choir of the Storm", + ["text"] = { "But the fool did not bow.", "The fool stood and questioned.", "And the fool was unwritten.", }, }, - [424] = { - id = "FourUniqueBreach4c", - name = "The Pandemonius", - text = { + { + ["id"] = "FourUniqueBreach4c", + ["name"] = "The Pandemonius", + ["text"] = { "A single moment sets in motion an eternal fall,", "beneath which all are buried.", }, }, - [425] = { - id = "FourUniqueSpirit1", - name = "Rite of Passage", - text = { + { + ["id"] = "FourUniqueSpirit1", + ["name"] = "Rite of Passage", + ["text"] = { "To become a warrior and a hunter, each young", "Azmeri must prove themselves before the Spirit.", }, }, - [426] = { - id = "FourUniqueCorruption1", - name = "The Gnashing Sash", - text = { + { + ["id"] = "FourUniqueCorruption1", + ["name"] = "The Gnashing Sash", + ["text"] = { "\"Ghorr knows only hunger, only ravenous feasting.", "It will consume all that lives, and more!\"", "- Rantings of a Templar prisoner, page fourteen", }, }, - [427] = { - id = "FourUniqueCorruption2", - name = "Bursting Decay", - text = { + { + ["id"] = "FourUniqueCorruption2", + ["name"] = "Bursting Decay", + ["text"] = { "\"All Beidat desires is a foothold, a grip on your flesh,", "on the world... he will offer you anything to get it...\"", "- Rantings of a Templar prisoner, page thirty", }, }, - [428] = { - id = "FourUniqueCorruption3", - name = "Death Articulated", - text = { + { + ["id"] = "FourUniqueCorruption3", + ["name"] = "Death Articulated", + ["text"] = { "\"The mind at the center of the swarm... K'Tash does", "the thinking... but it has only one thought... hate.\"", "- Rantings of a Templar prisoner, page ninety-four", }, }, - [429] = { - id = "FourUniqueJewel1", - name = "Grand Spectrum", - text = { + { + ["id"] = "FourUniqueJewel1", + ["name"] = "Grand Spectrum", + ["text"] = { "A wellspring of vitality bubbling from within.", }, }, - [430] = { - id = "FourUniqueJewel2", - name = "Grand Spectrum", - text = { + { + ["id"] = "FourUniqueJewel2", + ["name"] = "Grand Spectrum", + ["text"] = { "An indomitable force of control.", }, }, - [431] = { - id = "FourUniqueJewel3", - name = "Grand Spectrum", - text = { + { + ["id"] = "FourUniqueJewel3", + ["name"] = "Grand Spectrum", + ["text"] = { "Skin like steel tempered by bright flames.", }, }, - [432] = { - id = "FourUniqueJewel4", - name = "Megalomaniac", - text = { + { + ["id"] = "FourUniqueJewel4", + ["name"] = "Megalomaniac", + ["text"] = { "If you're going to act like you're better", "than everyone else, make sure you are.", }, }, - [433] = { - id = "FourUniqueJewel5", - name = "Heroic Tragedy", - origin = "Kalguuran", - text = { + { + ["id"] = "FourUniqueJewel5", + ["name"] = "Heroic Tragedy", + ["origin"] = "Kalguuran", + ["text"] = { "They believed themselves courageous and selfless,", "but that bravery became the doom at their door.", }, }, - [434] = { - id = "FourUniqueJewel6", - name = "From Nothing", - text = { + { + ["id"] = "FourUniqueJewel6", + ["name"] = "From Nothing", + ["text"] = { "They clawed their way up from the agonising depths of nonexistence,", "breathing deep with joy the exquisite light of meaning.", }, }, - [435] = { - id = "FourUniqueJewel7", - name = "Controlled Metamorphosis", - text = { + { + ["id"] = "FourUniqueJewel7", + ["name"] = "Controlled Metamorphosis", + ["text"] = { "Our world was dying, but we chose to survive.", "We broke free from the chains within.", }, }, - [436] = { - id = "FourUniqueJewel8", - name = "Prism of Belief", - text = { + { + ["id"] = "FourUniqueJewel8", + ["name"] = "Prism of Belief", + ["text"] = { "Entropy can be reversed.", }, }, - [437] = { - id = "FourUniqueJewel9", - name = "The Adorned", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueJewel9", + ["name"] = "The Adorned", + ["origin"] = "Vaal", + ["text"] = { "At their height, the Vaal glittered under the sun.", "A decade, a century, an aeon of prosperity...", "now nothing more than a passing wonder.", }, }, - [438] = { - id = "FourUniqueJewel10", - name = "Against the Darkness", - text = { + { + ["id"] = "FourUniqueJewel10", + ["name"] = "Against the Darkness", + ["text"] = { "After the fires, in the depths of the Winter of the World, all life in the Vastiri banded together. Whether serpent, hyena, human, or golem, hated enemies clasped hand to claw, built refuge, and fought side by side against the Abyssals. Thus, the Third Pact was born.", }, }, - [439] = { - id = "FourUniqueJewel11", - name = "Undying Hate", - text = { + { + ["id"] = "FourUniqueJewel11", + ["name"] = "Undying Hate", + ["text"] = { "They believed themselves driven by necessity,", "but that desperation made them monstrous.", }, }, - [440] = { - id = "FourUniqueJewel12", - name = "Heart of the Well", - text = { + { + ["id"] = "FourUniqueJewel12", + ["name"] = "Heart of the Well", + ["text"] = { "Countless souls scream in agonising harmony,", "forever sinking under the weight of the newly dead.", }, }, - [441] = { - id = "FourUniqueJewel13", - name = "Flesh Crucible", - origin = "Vaal", - text = { + { + ["id"] = "FourUniqueJewel13", + ["name"] = "Flesh Crucible", + ["origin"] = "Vaal", + ["text"] = { "\"Never mind the pain, it's only... making room. Unrelated fact,", "a person can live a normal life with just one kidney. Or just one", "lung. You never know what Vaal technology will cost you...\"", }, }, - [442] = { - id = "FourUniqueJewel14_", - name = "Split Personality", - text = { + { + ["id"] = "FourUniqueJewel14_", + ["name"] = "Split Personality", + ["text"] = { "\"Try on another life. See how it fits. You'll", "find that your one life is utterly inadequate.\"", "- He of Many Names and Many Faces", }, }, - [443] = { - id = "FourUniqueJewel15", - name = "Voices", - text = { + { + ["id"] = "FourUniqueJewel15", + ["name"] = "Voices", + ["text"] = { "Only a madman would ignore a god's instructions.", }, }, - [444] = { - id = "VaalLimbReplacements", - name = "Transcendent Limb", - text = { + { + ["id"] = "VaalLimbReplacements", + ["name"] = "Transcendent Limb", + ["text"] = { "\"Behold! A marvel of innovation! Pay no mind the cost of flesh...\"", "- Guatelitzi, Architect of Flesh", }, diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua index aa0fdcff82..17ba178c2b 100644 --- a/src/Data/ModCharm.lua +++ b/src/Data/ModCharm.lua @@ -1,56 +1,1315 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1072 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1072 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1072 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1072 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1072 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1072 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1075 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1075 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1075 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1075 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1075 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1073 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1073 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1073 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1073 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1073 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1073 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 618 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 618 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 618 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, - ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 928 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, - ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 928 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, - ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 928 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, - ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 928 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, - ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 926 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, - ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 926 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, - ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 926 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, - ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 926 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, - ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 926 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, - ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 926 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, - ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 926 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, - ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 926 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, - ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 927 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, - ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 927 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, - ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 927 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, - ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 927 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, - ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 927 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, - ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 927 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, - ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 927 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, - ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 927 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, - ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 925 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, - ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 925 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, - ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 925 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, - ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 925 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, - ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 925 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, - ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 925 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, -} \ No newline at end of file + ["CharmGainLifeOnUse1"] = { + "Recover (8-12) Life when Used", + ["affix"] = "Herbal", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (8-12) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse2"] = { + "Recover (35-52) Life when Used", + ["affix"] = "Floral", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 14, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (35-52) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse3"] = { + "Recover (63-92) Life when Used", + ["affix"] = "Blooming", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 26, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (63-92) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse4"] = { + "Recover (96-130) Life when Used", + ["affix"] = "Sprouting", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 36, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (96-130) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse5"] = { + "Recover (134-180) Life when Used", + ["affix"] = "Petaled", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 47, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (134-180) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse6"] = { + "Recover (185-230) Life when Used", + ["affix"] = "Botanic", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 58, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (185-230) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse7"] = { + "Recover (235-280) Life when Used", + ["affix"] = "Natural", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 67, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (235-280) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainLifeOnUse8"] = { + "Recover (285-350) Life when Used", + ["affix"] = "Evergreen", + ["group"] = "CharmGainLifeOnUse", + ["level"] = 76, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 926, + }, + ["tradeHashes"] = { + [2365392475] = { + "Recover (285-350) Life when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse1"] = { + "Recover (16-24) Mana when Used", + ["affix"] = "Drizzling", + ["group"] = "CharmGainManaOnUse", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (16-24) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse2"] = { + "Recover (33-50) Mana when Used", + ["affix"] = "Soaked", + ["group"] = "CharmGainManaOnUse", + ["level"] = 14, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (33-50) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse3"] = { + "Recover (55-75) Mana when Used", + ["affix"] = "Mistbound", + ["group"] = "CharmGainManaOnUse", + ["level"] = 26, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (55-75) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse4"] = { + "Recover (80-110) Mana when Used", + ["affix"] = "Tidebound", + ["group"] = "CharmGainManaOnUse", + ["level"] = 36, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (80-110) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse5"] = { + "Recover (115-145) Mana when Used", + ["affix"] = "Aqueous", + ["group"] = "CharmGainManaOnUse", + ["level"] = 47, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (115-145) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse6"] = { + "Recover (150-180) Mana when Used", + ["affix"] = "Flooded", + ["group"] = "CharmGainManaOnUse", + ["level"] = 58, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (150-180) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse7"] = { + "Recover (185-225) Mana when Used", + ["affix"] = "Oceanic", + ["group"] = "CharmGainManaOnUse", + ["level"] = 67, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (185-225) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGainManaOnUse8"] = { + "Recover (230-300) Mana when Used", + ["affix"] = "Raindancer's", + ["group"] = "CharmGainManaOnUse", + ["level"] = 76, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 927, + }, + ["tradeHashes"] = { + [1120862500] = { + "Recover (230-300) Mana when Used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive1"] = { + "Also grants (44-66) Guard", + ["affix"] = "Sunny", + ["group"] = "CharmGuardWhileActive", + ["level"] = 10, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (44-66) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive2"] = { + "Also grants (85-128) Guard", + ["affix"] = "Dawnlit", + ["group"] = "CharmGuardWhileActive", + ["level"] = 21, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (85-128) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive3"] = { + "Also grants (148-200) Guard", + ["affix"] = "Bright", + ["group"] = "CharmGuardWhileActive", + ["level"] = 36, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (148-200) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive4"] = { + "Also grants (205-260) Guard", + ["affix"] = "Vibrant", + ["group"] = "CharmGuardWhileActive", + ["level"] = 48, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (205-260) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive5"] = { + "Also grants (265-350) Guard", + ["affix"] = "Lustrous", + ["group"] = "CharmGuardWhileActive", + ["level"] = 60, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (265-350) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmGuardWhileActive6"] = { + "Also grants (355-500) Guard", + ["affix"] = "Sunburst", + ["group"] = "CharmGuardWhileActive", + ["level"] = 75, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 925, + }, + ["tradeHashes"] = { + [2676834156] = { + "Also grants (355-500) Guard", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmIncreasedDuration1"] = { + "(16-20)% increased Duration", + ["affix"] = "Investigator's", + ["group"] = "CharmIncreasedDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(16-20)% increased Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmIncreasedDuration2"] = { + "(21-25)% increased Duration", + ["affix"] = "Analyst's", + ["group"] = "CharmIncreasedDuration", + ["level"] = 20, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(21-25)% increased Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmIncreasedDuration3"] = { + "(26-30)% increased Duration", + ["affix"] = "Examiner's", + ["group"] = "CharmIncreasedDuration", + ["level"] = 42, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(26-30)% increased Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmIncreasedDuration4"] = { + "(31-35)% increased Duration", + ["affix"] = "Clinician's", + ["group"] = "CharmIncreasedDuration", + ["level"] = 61, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(31-35)% increased Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CharmIncreasedDuration5"] = { + "(36-40)% increased Duration", + ["affix"] = "Experimenter's", + ["group"] = "CharmIncreasedDuration", + ["level"] = 78, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(36-40)% increased Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "utility_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskChanceRechargeOnKill1"] = { + "(21-25)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Medic", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 8, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(21-25)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChanceRechargeOnKill2"] = { + "(26-30)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Doctor", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 26, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(26-30)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChanceRechargeOnKill3"] = { + "(31-35)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Surgeon", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 45, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(31-35)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent1"] = { + "(23-30)% increased Charges gained", + ["affix"] = "of the Constant", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(23-30)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent2_"] = { + "(31-38)% increased Charges gained", + ["affix"] = "of the Continuous", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 13, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(31-38)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent3_"] = { + "(39-46)% increased Charges gained", + ["affix"] = "of the Endless", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 33, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(39-46)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent4_"] = { + "(47-54)% increased Charges gained", + ["affix"] = "of the Bottomless", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 48, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(47-54)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent5__"] = { + "(55-62)% increased Charges gained", + ["affix"] = "of the Perpetual", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 63, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(55-62)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent6"] = { + "(63-70)% increased Charges gained", + ["affix"] = "of the Eternal", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 82, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(63-70)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed1"] = { + "(15-17)% reduced Charges per use", + ["affix"] = "of the Apprentice", + ["group"] = "FlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(15-17)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed2"] = { + "(18-20)% reduced Charges per use", + ["affix"] = "of the Practitioner", + ["group"] = "FlaskChargesUsed", + ["level"] = 14, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(18-20)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed3__"] = { + "(21-23)% reduced Charges per use", + ["affix"] = "of the Mixologist", + ["group"] = "FlaskChargesUsed", + ["level"] = 34, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(21-23)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed4__"] = { + "(24-26)% reduced Charges per use", + ["affix"] = "of the Distiller", + ["group"] = "FlaskChargesUsed", + ["level"] = 49, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(24-26)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed5"] = { + "(27-29)% reduced Charges per use", + ["affix"] = "of the Brewer", + ["group"] = "FlaskChargesUsed", + ["level"] = 64, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(27-29)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed6"] = { + "(30-32)% reduced Charges per use", + ["affix"] = "of the Chemist", + ["group"] = "FlaskChargesUsed", + ["level"] = 83, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(30-32)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges1"] = { + "(23-30)% increased Charges", + ["affix"] = "of the Wide", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(23-30)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges2__"] = { + "(31-38)% increased Charges", + ["affix"] = "of the Copious", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 12, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(31-38)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges3_"] = { + "(39-46)% increased Charges", + ["affix"] = "of the Plentiful", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 32, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(39-46)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges4__"] = { + "(47-54)% increased Charges", + ["affix"] = "of the Bountiful", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 47, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(47-54)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges5"] = { + "(55-62)% increased Charges", + ["affix"] = "of the Abundant", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 62, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(55-62)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges6"] = { + "(63-70)% increased Charges", + ["affix"] = "of the Ample", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 81, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(63-70)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFillChargesPerMinute1"] = { + "Gains 0.15 Charges per Second", + ["affix"] = "of the Foliage", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 8, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.15 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFillChargesPerMinute2"] = { + "Gains 0.2 Charges per Second", + ["affix"] = "of the Verdant", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 26, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.2 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFillChargesPerMinute3"] = { + "Gains 0.25 Charges per Second", + ["affix"] = "of the Sylvan", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.25 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, +} diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 9332ec47e8..9e42225f28 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -1,132 +1,3623 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, - ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, - ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, - ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, - ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, - ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, - ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, - ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, - ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, - ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, - ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, - ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, - ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, - ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, - ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, - ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, - ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, - ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1519 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, - ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, - ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, - ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, - ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, - ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, - ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, - ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, - ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, - ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, - ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, - ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, - ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, - ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, - ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, - ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, - ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, - ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, - ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, - ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, - ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, - ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, - ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, - ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, - ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, - ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, - ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-15)% increased Critical Damage Bonus" }, } }, - ["CorruptionChanceToPierce1"] = { type = "Corrupted", affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, - ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, - ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, - ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, - ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7302 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-25)% increased Warcry Speed" }, } }, - ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, - ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, - ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, -} \ No newline at end of file + ["CorruptionAdditionalAmmo1"] = { + "Loads an additional bolt", + ["affix"] = "", + ["group"] = "AdditionalAmmo", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads an additional bolt", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAdditionalArrows1"] = { + "Bow Attacks fire an additional Arrow", + ["affix"] = "", + ["group"] = "AdditionalArrows", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 990, + }, + ["tradeHashes"] = { + [3885405204] = { + "Bow Attacks fire an additional Arrow", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAdditionalPhysicalDamageReduction1"] = { + "(3-5)% additional Physical Damage Reduction", + ["affix"] = "", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "(3-5)% additional Physical Damage Reduction", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAllDamage1"] = { + "(20-30)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(20-30)% increased Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionAllResistances1"] = { + "+(5-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-10)% to all Elemental Resistances", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionAlliesInPresenceAllDamage1"] = { + "Allies in your Presence deal (20-30)% increased Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (20-30)% increased Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { + "Allies in your Presence have (10-15)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (10-15)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { + "Allies in your Presence have (5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (5-10)% increased Attack Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { + "Allies in your Presence have (5-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (5-10)% increased Cast Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionArmourBreak1"] = { + "Break (10-15)% increased Armour", + ["affix"] = "", + ["group"] = "ArmourBreak", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4407, + }, + ["tradeHashes"] = { + [1776411443] = { + "Break (10-15)% increased Armour", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionChainFromTerrain1"] = { + "Projectiles have (10-20)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (10-20)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionChanceToPierce1"] = { + "(20-30)% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(20-30)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionChaosResistance1"] = { + "+(13-19)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-19)% to Chaos Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionCharmChargeGeneration1"] = { + "Charms gain (0.08-0.17) charges per Second", + ["affix"] = "", + ["group"] = "CharmChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain (0.08-0.17) charges per Second", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionColdPenetration1"] = { + "Damage Penetrates (10-15)% Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (10-15)% Cold Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionColdResistance1"] = { + "+(20-25)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-25)% to Cold Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionCriticalStrikeMultiplier1"] = { + "(15-20)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(15-20)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionDamageTakenGainedAsLife1"] = { + "(10-20)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-20)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionDamageTakenGainedAsMana1"] = { + "(10-20)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(10-20)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionDexterity1"] = { + "+(10-15) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-15) to Dexterity", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionEnergyShieldDelay1"] = { + "(20-30)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(20-30)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["CorruptionFirePenetration1"] = { + "Damage Penetrates (10-15)% Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (10-15)% Fire Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionFireResistance1"] = { + "+(20-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-25)% to Fire Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionFreezeDamageIncrease1"] = { + "(20-30)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(20-30)% increased Freeze Buildup", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGainLifeOnBlock1"] = { + "(20-25) Life gained when you Block", + ["affix"] = "", + ["group"] = "GainLifeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(20-25) Life gained when you Block", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionGainManaOnBlock1"] = { + "(10-15) Mana gained when you Block", + ["affix"] = "", + ["group"] = "GainManaOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(10-15) Mana gained when you Block", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionGlobalChaosSpellGemsLevel1"] = { + "+1 to Level of all Chaos Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+1 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGlobalColdSpellGemsLevel1"] = { + "+1 to Level of all Cold Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+1 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGlobalFireSpellGemsLevel1"] = { + "+1 to Level of all Fire Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+1 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGlobalLightningSpellGemsLevel1"] = { + "+1 to Level of all Lightning Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+1 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGlobalMeleeSkillGemsLevel1"] = { + "+1 to Level of all Melee Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+1 to Level of all Melee Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionGlobalMinionSkillGemsLevel1"] = { + "+1 to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+1 to Level of all Minion Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { + "+1 to Level of all Physical Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+1 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionGlobalSkillGemLevel1"] = { + "+1 to Level of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 949, + }, + ["tradeHashes"] = { + [4283407333] = { + "+1 to Level of all Skills", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionGlobalTrapSkillGemsLevel1"] = { + "+1 to Level of all Trap Skill Gems", + ["affix"] = "", + ["group"] = "GlobalIncreaseTrapSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+1 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["CorruptionGoldFoundIncrease1"] = { + "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIgniteChanceIncrease1"] = { + "(20-30)% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(20-30)% increased Flammability Magnitude", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedAccuracy1"] = { + "+(50-100) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(50-100) to Accuracy Rating", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedCastSpeed1"] = { + "(10-15)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-15)% increased Cast Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedEnergyShieldPercent1"] = { + "(15-25)% increased maximum Energy Shield", + ["affix"] = "", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(15-25)% increased maximum Energy Shield", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIncreasedEvasionRatingPercent1"] = { + "(15-25)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(15-25)% increased Evasion Rating", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIncreasedFreezeThreshold1"] = { + "(20-30)% increased Freeze Threshold", + ["affix"] = "", + ["group"] = "FreezeThreshold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2984, + }, + ["tradeHashes"] = { + [3780644166] = { + "(20-30)% increased Freeze Threshold", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIncreasedLife1"] = { + "+(30-40) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-40) to maximum Life", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedMana1"] = { + "+(20-25) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-25) to maximum Mana", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "focus", + "quiver", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(15-25)% increased Armour", + ["affix"] = "", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(15-25)% increased Armour", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIncreasedSkillSpeed1"] = { + "(4-6)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(4-6)% increased Skill Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionIncreasedSlowEffect1"] = { + "Debuffs you inflict have (20-30)% increased Slow Magnitude", + ["affix"] = "", + ["group"] = "SlowEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4691, + }, + ["tradeHashes"] = { + [3650992555] = { + "Debuffs you inflict have (20-30)% increased Slow Magnitude", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CorruptionIncreasedSpirit1"] = { + "+(20-30) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(20-30) to Spirit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIncreasedStunThreshold1"] = { + "(20-30)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(20-30)% increased Stun Threshold", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionIntelligence1"] = { + "+(10-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-15) to Intelligence", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionItemFoundRarityIncrease1"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionJewelBlindImmunity1"] = { + "Cannot be Blinded", + ["affix"] = "", + ["group"] = "ImmunityToBlind", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2719, + }, + ["tradeHashes"] = { + [1436284579] = { + "Cannot be Blinded", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelChaosResist1"] = { + "+(3-7)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(3-7)% to Chaos Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelColdResist1"] = { + "+(5-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(5-10)% to Cold Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelCorruptedBloodImmunity1"] = { + "Corrupted Blood cannot be inflicted on you", + ["affix"] = "", + ["group"] = "CorruptedBloodImmunity", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 5272, + }, + ["tradeHashes"] = { + [1658498488] = { + "Corrupted Blood cannot be inflicted on you", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelDexterity1"] = { + "+(4-6) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(4-6) to Dexterity", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelFireResist1"] = { + "+(5-10)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(5-10)% to Fire Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelHinderImmunity1"] = { + "You cannot be Hindered", + ["affix"] = "", + ["group"] = "YouCannotBeHindered", + ["level"] = 1, + ["modTags"] = { + "blue_herring", + }, + ["statOrder"] = { + 10591, + }, + ["tradeHashes"] = { + [721014846] = { + "You cannot be Hindered", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelIntelligence1"] = { + "+(4-6) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(4-6) to Intelligence", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelLightningResist1"] = { + "+(5-10)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(5-10)% to Lightning Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelMaimImmunity1"] = { + "Immune to Maim", + ["affix"] = "", + ["group"] = "ImmuneToMaim", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7302, + }, + ["tradeHashes"] = { + [3429557654] = { + "Immune to Maim", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionJewelStrength1"] = { + "+(4-6) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(4-6) to Strength", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionLifeFlaskChargeGeneration1"] = { + "Life Flasks gain (0.08-0.17) charges per Second", + ["affix"] = "", + ["group"] = "LifeFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain (0.08-0.17) charges per Second", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLifeGainedFromEnemyDeath1"] = { + "Gain (20-25) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (20-25) Life per enemy killed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionLifeLeech1"] = { + "Leech 3% of Physical Attack Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech 3% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLifeRegenerationPercent1"] = { + "Regenerate (1-2)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1-2)% of maximum Life per second", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CorruptionLifeRegenerationRate1"] = { + "(15-25)% increased Life Regeneration rate", + ["affix"] = "", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "(15-25)% increased Life Regeneration rate", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLightningPenetration1"] = { + "Damage Penetrates (10-15)% Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (10-15)% Lightning Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLightningResistance1"] = { + "+(20-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-25)% to Lightning Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalAddedChaosDamage1"] = { + "Adds (7-11) to (12-18) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (7-11) to (12-18) Chaos damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalAddedChaosDamageTwoHand1"] = { + "Adds (10-16) to (17-25) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (10-16) to (17-25) Chaos damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionLocalAddedColdDamage1"] = { + "Adds (8-12) to (13-19) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (8-12) to (13-19) Cold Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalAddedColdDamageTwoHand1"] = { + "Adds (11-17) to (18-26) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (11-17) to (18-26) Cold Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionLocalAddedFireDamage1"] = { + "Adds (9-14) to (15-22) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (9-14) to (15-22) Fire Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalAddedFireDamageTwoHand1"] = { + "Adds (13-20) to (21-31) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (13-20) to (21-31) Fire Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionLocalAddedLightningDamage1"] = { + "Adds (1-2) to (29-43) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-2) to (29-43) Lightning Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalAddedLightningDamageTwoHand1"] = { + "Adds (1-3) to (41-61) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-3) to (41-61) Lightning Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionLocalBlockChance1"] = { + "(10-15)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(10-15)% increased Block chance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalChanceToBleed1"] = { + "(10-15)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(10-15)% chance to cause Bleeding on Hit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionLocalChanceToBlind1"] = { + "(5-10)% chance to Blind Enemies on hit", + ["affix"] = "", + ["group"] = "BlindingHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2013, + }, + ["tradeHashes"] = { + [2301191210] = { + "(5-10)% chance to Blind Enemies on hit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalChanceToMaim1"] = { + "(10-15)% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToMaim", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7798, + }, + ["tradeHashes"] = { + [2763429652] = { + "(10-15)% chance to Maim on Hit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionLocalChanceToPoison1"] = { + "(10-15)% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "(10-15)% chance to Poison on Hit with this weapon", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sword", + "spear", + "dagger", + "warstaff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionLocalCriticalStrikeMultiplier1"] = { + "+(5-10)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(5-10)% to Critical Damage Bonus", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { + "(15-25)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(15-25)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedArmourAndEvasion1"] = { + "(15-25)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(15-25)% increased Armour and Evasion", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedAttackSpeed1"] = { + "(6-8)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(6-8)% increased Attack Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { + "(15-25)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(15-25)% increased Energy Shield", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { + "(15-25)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(15-25)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { + "(15-25)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(15-25)% increased Evasion Rating", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { + "(15-25)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(15-25)% increased Physical Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(15-25)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(15-25)% increased Armour", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalIncreasedSpiritPercent1"] = { + "(15-25)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(15-25)% increased Spirit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionLocalRageOnHit1"] = { + "Grants 1 Rage on Hit", + ["affix"] = "", + ["group"] = "LocalRageOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7705, + }, + ["tradeHashes"] = { + [1725749947] = { + "Grants 1 Rage on Hit", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionLocalStunDamageIncrease1"] = { + "Causes (20-30)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (20-30)% increased Stun Buildup", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionLocalWeaponRangeIncrease1"] = { + "(10-20)% increased Melee Strike Range with this weapon", + ["affix"] = "", + ["group"] = "LocalWeaponRangeIncrease", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7600, + }, + ["tradeHashes"] = { + [548198834] = { + "(10-20)% increased Melee Strike Range with this weapon", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionManaFlaskChargeGeneration1"] = { + "Mana Flasks gain (0.08-0.17) charges per Second", + ["affix"] = "", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain (0.08-0.17) charges per Second", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionManaGainedFromEnemyDeath1"] = { + "Gain (10-15) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (10-15) Mana per enemy killed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionManaLeech1"] = { + "Leech 2% of Physical Attack Damage as Mana", + ["affix"] = "", + ["group"] = "ManaLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech 2% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionManaRegeneration1"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionMaximumBlockChance1"] = { + "+3% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "+3% to maximum Block chance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumColdResistance1"] = { + "+(1-3)% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(1-3)% to Maximum Cold Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumElementalResistance1"] = { + "+1% to all Maximum Elemental Resistances", + ["affix"] = "", + ["group"] = "MaximumElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+1% to all Maximum Elemental Resistances", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionMaximumEnduranceCharges1"] = { + "+1 to Maximum Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1559, + }, + ["tradeHashes"] = { + [1515657623] = { + "+1 to Maximum Endurance Charges", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumFireResistance1"] = { + "+(1-3)% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+(1-3)% to Maximum Fire Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumFrenzyCharges1"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumLightningResistance1"] = { + "+(1-3)% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(1-3)% to Maximum Lightning Resistance", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMaximumPowerCharges1"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionMovementVelocity1"] = { + "(3-5)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(3-5)% increased Movement Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionReducedLocalAttributeRequirements1"] = { + "(10-20)% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "(10-20)% reduced Attribute Requirements", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "armour", + "weapon", + "wand", + "staff", + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionShockChanceIncrease1"] = { + "(20-30)% increased chance to Shock", + ["affix"] = "", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(20-30)% increased chance to Shock", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionSlowPotency1"] = { + "(20-30)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(20-30)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionSpellCriticalStrikeChance1"] = { + "(20-30)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(20-30)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionSpellDamageOnTwoHandWeapon1"] = { + "(40-60)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(40-60)% increased Spell Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionSpellDamageOnWeapon1"] = { + "(20-30)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(20-30)% increased Spell Damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "wand", + "focus", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionStrength1"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionThornsDamageIncrease1"] = { + "(40-50)% increased Thorns damage", + ["affix"] = "", + ["group"] = "ThornsDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(40-50)% increased Thorns damage", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "body_armour", + "shield", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionWeaponElementalDamage1"] = { + "(20-30)% increased Elemental Damage with Attacks", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(20-30)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionWeaponElementalDamageTwoHand1"] = { + "(40-50)% increased Elemental Damage with Attacks", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(40-50)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionWeaponSwapSpeed1"] = { + "(20-30)% increased Weapon Swap Speed", + ["affix"] = "", + ["group"] = "WeaponSwapSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 10535, + }, + ["tradeHashes"] = { + [3233599707] = { + "(20-30)% increased Weapon Swap Speed", + }, + }, + ["type"] = "Corrupted", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpecialCorruptionAreaOfEffect1"] = { + "(15-25)% increased Area of Effect", + ["affix"] = "", + ["group"] = "AreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [280731498] = { + "(15-25)% increased Area of Effect", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionCooldownRecovery1"] = { + "(8-12)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(8-12)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionCurseEffect1"] = { + "(5-10)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(5-10)% increased Curse Magnitudes", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionDamageGainedAsChaos1"] = { + "Gain (5-8)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (5-8)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionEnergyGeneration1"] = { + "Meta Skills gain (20-30)% increased Energy", + ["affix"] = "", + ["group"] = "EnergyGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6410, + }, + ["tradeHashes"] = { + [4236566306] = { + "Meta Skills gain (20-30)% increased Energy", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionPresenceRadius1"] = { + "(15-25)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(15-25)% increased Presence Area of Effect", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionSkillEffectDuration1"] = { + "(15-25)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(15-25)% increased Skill Effect Duration", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpecialCorruptionWarcrySpeed1"] = { + "(15-25)% increased Warcry Speed", + ["affix"] = "", + ["group"] = "WarcrySpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1316278494] = { + "(15-25)% increased Warcry Speed", + }, + }, + ["type"] = "SpecialCorrupted", + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, +} diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 4c3dd0807a..2d37cc0815 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -1,83 +1,2138 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1072 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1072 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1072 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1072 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1072 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1072 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1075 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1075 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1075 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1075 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1075 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1073 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1073 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1073 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1073 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1073 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1073 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 618 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 618 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 618 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 938 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 938 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 938 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 938 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 938 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 930 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 930 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 930 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 930 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 930 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 930 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 930 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 930 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 931 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 931 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 931 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 931 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 931 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 929 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 929 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 929 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 929 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 929 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 933, 939 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 933, 939 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 933, 939 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 933, 939 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 933, 939 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 934, 940 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 934, 940 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 934, 940 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 934, 940 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 934, 940 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 937 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 937 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 937 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 930, 936 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, - ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 935 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 935 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 935 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 935 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 935 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 665 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["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 = { 668, 668.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, 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" }, } }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 678 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) 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 = { 670, 670.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, 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" }, } }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 672, 672.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) 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 = { 676 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 633, 752 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% 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 = { 633, 753 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 633, 751 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 633, 682, 682.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 633, 749 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, -} \ No newline at end of file + ["FlaskBleedCorruptingBloodImmunity1"] = { + "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", + ["affix"] = "of Sealing", + ["group"] = "FlaskBleedCorruptingBloodImmunity", + ["level"] = 8, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 668, + 668.1, + }, + ["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", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { + "(45-49)% less Duration", + "Immunity to Bleeding and Corrupted Blood during Effect", + ["affix"] = "of the Lizard", + ["group"] = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", + ["level"] = 8, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 633, + 749, + }, + ["tradeHashes"] = { + [1506355899] = { + "(45-49)% less Duration", + }, + [3965637181] = { + "Immunity to Bleeding and Corrupted Blood during Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskChanceRechargeOnKill1"] = { + "(21-25)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Medic", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 8, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(21-25)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChanceRechargeOnKill2"] = { + "(26-30)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Doctor", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 26, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(26-30)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChanceRechargeOnKill3"] = { + "(31-35)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "of the Surgeon", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 45, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(31-35)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent1"] = { + "(23-30)% increased Charges gained", + ["affix"] = "of the Constant", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(23-30)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent2_"] = { + "(31-38)% increased Charges gained", + ["affix"] = "of the Continuous", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 13, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(31-38)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent3_"] = { + "(39-46)% increased Charges gained", + ["affix"] = "of the Endless", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 33, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(39-46)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent4_"] = { + "(47-54)% increased Charges gained", + ["affix"] = "of the Bottomless", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 48, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(47-54)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent5__"] = { + "(55-62)% increased Charges gained", + ["affix"] = "of the Perpetual", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 63, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(55-62)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesAddedIncreasePercent6"] = { + "(63-70)% increased Charges gained", + ["affix"] = "of the Eternal", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 82, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(63-70)% increased Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed1"] = { + "(15-17)% reduced Charges per use", + ["affix"] = "of the Apprentice", + ["group"] = "FlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(15-17)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed2"] = { + "(18-20)% reduced Charges per use", + ["affix"] = "of the Practitioner", + ["group"] = "FlaskChargesUsed", + ["level"] = 14, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(18-20)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed3__"] = { + "(21-23)% reduced Charges per use", + ["affix"] = "of the Mixologist", + ["group"] = "FlaskChargesUsed", + ["level"] = 34, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(21-23)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed4__"] = { + "(24-26)% reduced Charges per use", + ["affix"] = "of the Distiller", + ["group"] = "FlaskChargesUsed", + ["level"] = 49, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(24-26)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed5"] = { + "(27-29)% reduced Charges per use", + ["affix"] = "of the Brewer", + ["group"] = "FlaskChargesUsed", + ["level"] = 64, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(27-29)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChargesUsed6"] = { + "(30-32)% reduced Charges per use", + ["affix"] = "of the Chemist", + ["group"] = "FlaskChargesUsed", + ["level"] = 83, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(30-32)% reduced Charges per use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskChillFreezeImmunity1"] = { + "Grants Immunity to Chill for (6-8) seconds if used while Chilled", + "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", + ["affix"] = "of Convection", + ["group"] = "FlaskChillFreezeImmunity", + ["level"] = 4, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 670, + 670.1, + }, + ["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", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskCurseImmunity1"] = { + "Removes Curses on use", + ["affix"] = "of Warding", + ["group"] = "FlaskCurseImmunity", + ["level"] = 18, + ["modTags"] = { + "flask", + "caster", + "curse", + }, + ["statOrder"] = { + 665, + }, + ["tradeHashes"] = { + [3895393544] = { + "Removes Curses on use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskExtraCharges1"] = { + "(23-30)% increased Charges", + ["affix"] = "of the Wide", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(23-30)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges2__"] = { + "(31-38)% increased Charges", + ["affix"] = "of the Copious", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 12, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(31-38)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges3_"] = { + "(39-46)% increased Charges", + ["affix"] = "of the Plentiful", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 32, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(39-46)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges4__"] = { + "(47-54)% increased Charges", + ["affix"] = "of the Bountiful", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 47, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(47-54)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges5"] = { + "(55-62)% increased Charges", + ["affix"] = "of the Abundant", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 62, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(55-62)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraCharges6"] = { + "(63-70)% increased Charges", + ["affix"] = "of the Ample", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 81, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(63-70)% increased Charges", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskExtraLifeCostsMana1"] = { + "(61-68)% increased Life Recovered", + "Removes 15% of Life Recovered from Mana when used", + ["affix"] = "Impairing", + ["group"] = "FlaskExtraLifeCostsMana", + ["level"] = 13, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 933, + 939, + }, + ["tradeHashes"] = { + [1261982764] = { + "(61-68)% increased Life Recovered", + }, + [648019518] = { + "Removes 15% of Life Recovered from Mana when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraLifeCostsMana2"] = { + "(69-76)% increased Life Recovered", + "Removes 15% of Life Recovered from Mana when used", + ["affix"] = "Dizzying", + ["group"] = "FlaskExtraLifeCostsMana", + ["level"] = 30, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 933, + 939, + }, + ["tradeHashes"] = { + [1261982764] = { + "(69-76)% increased Life Recovered", + }, + [648019518] = { + "Removes 15% of Life Recovered from Mana when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraLifeCostsMana3"] = { + "(77-84)% increased Life Recovered", + "Removes 15% of Life Recovered from Mana when used", + ["affix"] = "Depleting", + ["group"] = "FlaskExtraLifeCostsMana", + ["level"] = 47, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 933, + 939, + }, + ["tradeHashes"] = { + [1261982764] = { + "(77-84)% increased Life Recovered", + }, + [648019518] = { + "Removes 15% of Life Recovered from Mana when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraLifeCostsMana4"] = { + "(85-92)% increased Life Recovered", + "Removes 15% of Life Recovered from Mana when used", + ["affix"] = "Vitiating", + ["group"] = "FlaskExtraLifeCostsMana", + ["level"] = 64, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 933, + 939, + }, + ["tradeHashes"] = { + [1261982764] = { + "(85-92)% increased Life Recovered", + }, + [648019518] = { + "Removes 15% of Life Recovered from Mana when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraLifeCostsMana5_"] = { + "(93-100)% increased Life Recovered", + "Removes 15% of Life Recovered from Mana when used", + ["affix"] = "Sapping", + ["group"] = "FlaskExtraLifeCostsMana", + ["level"] = 81, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 933, + 939, + }, + ["tradeHashes"] = { + [1261982764] = { + "(93-100)% increased Life Recovered", + }, + [648019518] = { + "Removes 15% of Life Recovered from Mana when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraManaCostsLife1"] = { + "(61-68)% increased Mana Recovered", + "Removes 15% of Mana Recovered from Life when used", + ["affix"] = "Aged", + ["group"] = "FlaskExtraManaCostsLife", + ["level"] = 13, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 934, + 940, + }, + ["tradeHashes"] = { + [1811130680] = { + "(61-68)% increased Mana Recovered", + }, + [959641748] = { + "Removes 15% of Mana Recovered from Life when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraManaCostsLife2"] = { + "(69-76)% increased Mana Recovered", + "Removes 15% of Mana Recovered from Life when used", + ["affix"] = "Fermented", + ["group"] = "FlaskExtraManaCostsLife", + ["level"] = 30, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 934, + 940, + }, + ["tradeHashes"] = { + [1811130680] = { + "(69-76)% increased Mana Recovered", + }, + [959641748] = { + "Removes 15% of Mana Recovered from Life when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraManaCostsLife3_"] = { + "(77-84)% increased Mana Recovered", + "Removes 15% of Mana Recovered from Life when used", + ["affix"] = "Congealed", + ["group"] = "FlaskExtraManaCostsLife", + ["level"] = 47, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 934, + 940, + }, + ["tradeHashes"] = { + [1811130680] = { + "(77-84)% increased Mana Recovered", + }, + [959641748] = { + "Removes 15% of Mana Recovered from Life when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraManaCostsLife4"] = { + "(85-92)% increased Mana Recovered", + "Removes 15% of Mana Recovered from Life when used", + ["affix"] = "Turbid", + ["group"] = "FlaskExtraManaCostsLife", + ["level"] = 64, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 934, + 940, + }, + ["tradeHashes"] = { + [1811130680] = { + "(85-92)% increased Mana Recovered", + }, + [959641748] = { + "Removes 15% of Mana Recovered from Life when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskExtraManaCostsLife5_"] = { + "(93-100)% increased Mana Recovered", + "Removes 15% of Mana Recovered from Life when used", + ["affix"] = "Caustic", + ["group"] = "FlaskExtraManaCostsLife", + ["level"] = 81, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 934, + 940, + }, + ["tradeHashes"] = { + [1811130680] = { + "(93-100)% increased Mana Recovered", + }, + [959641748] = { + "Removes 15% of Mana Recovered from Life when used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskFillChargesPerMinute1"] = { + "Gains 0.15 Charges per Second", + ["affix"] = "of the Foliage", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 8, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.15 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFillChargesPerMinute2"] = { + "Gains 0.2 Charges per Second", + ["affix"] = "of the Verdant", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 26, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.2 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFillChargesPerMinute3"] = { + "Gains 0.25 Charges per Second", + ["affix"] = "of the Sylvan", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains 0.25 Charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { + "(45-49)% less Duration", + "Immunity to Freeze and Chill during Effect", + ["affix"] = "of the Deer", + ["group"] = "FlaskFreezeAndChillImmunityDuringEffect", + ["level"] = 4, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 633, + 751, + }, + ["tradeHashes"] = { + [1506355899] = { + "(45-49)% less Duration", + }, + [3838369929] = { + "Immunity to Freeze and Chill during Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskFullInstantRecovery1"] = { + "50% reduced Amount Recovered", + "Instant Recovery", + ["affix"] = "Seething", + ["group"] = "FlaskFullInstantRecovery", + ["level"] = 42, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + 936, + }, + ["tradeHashes"] = { + [1526933524] = { + "Instant Recovery", + }, + [700317374] = { + "50% reduced Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskHealsMinions1"] = { + "Grants (51-56)% of Life Recovery to Minions", + ["affix"] = "Novice's", + ["group"] = "FlaskHealsMinions", + ["level"] = 10, + ["modTags"] = { + "flask", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 935, + }, + ["tradeHashes"] = { + [2416869319] = { + "Grants (51-56)% of Life Recovery to Minions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskHealsMinions2"] = { + "Grants (57-62)% of Life Recovery to Minions", + ["affix"] = "Acolyte's", + ["group"] = "FlaskHealsMinions", + ["level"] = 28, + ["modTags"] = { + "flask", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 935, + }, + ["tradeHashes"] = { + [2416869319] = { + "Grants (57-62)% of Life Recovery to Minions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskHealsMinions3"] = { + "Grants (63-68)% of Life Recovery to Minions", + ["affix"] = "Summoner's", + ["group"] = "FlaskHealsMinions", + ["level"] = 46, + ["modTags"] = { + "flask", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 935, + }, + ["tradeHashes"] = { + [2416869319] = { + "Grants (63-68)% of Life Recovery to Minions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskHealsMinions4____"] = { + "Grants (69-74)% of Life Recovery to Minions", + ["affix"] = "Conjurer's", + ["group"] = "FlaskHealsMinions", + ["level"] = 64, + ["modTags"] = { + "flask", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 935, + }, + ["tradeHashes"] = { + [2416869319] = { + "Grants (69-74)% of Life Recovery to Minions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskHealsMinions5"] = { + "Grants (75-80)% of Life Recovery to Minions", + ["affix"] = "Necromancer's", + ["group"] = "FlaskHealsMinions", + ["level"] = 82, + ["modTags"] = { + "flask", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 935, + }, + ["tradeHashes"] = { + [2416869319] = { + "Grants (75-80)% of Life Recovery to Minions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIgniteImmunity1"] = { + "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", + "Removes all Burning when used", + ["affix"] = "of Damping", + ["group"] = "FlaskIgniteImmunity", + ["level"] = 6, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 672, + 672.1, + }, + ["tradeHashes"] = { + [2361218755] = { + "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", + "Removes all Burning when used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskIgniteImmunityDuringEffect_"] = { + "(45-49)% less Duration", + "Immunity to Ignite during Effect", + "Removes Burning on use", + ["affix"] = "of the Urchin", + ["group"] = "FlaskIgniteImmunityDuringEffect", + ["level"] = 6, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 633, + 682, + 682.1, + }, + ["tradeHashes"] = { + [1506355899] = { + "(45-49)% less Duration", + }, + [658443507] = { + "Immunity to Ignite during Effect", + "Removes Burning on use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount1"] = { + "(41-45)% increased Amount Recovered", + ["affix"] = "Opaque", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(41-45)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount2_"] = { + "(46-50)% increased Amount Recovered", + ["affix"] = "Compact", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 11, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(46-50)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount3"] = { + "(51-55)% increased Amount Recovered", + ["affix"] = "Full-bodied", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 23, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(51-55)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount4"] = { + "(56-60)% increased Amount Recovered", + ["affix"] = "Abundant", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 34, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(56-60)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount5"] = { + "(61-65)% increased Amount Recovered", + ["affix"] = "Substantial", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 46, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(61-65)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount6"] = { + "(66-70)% increased Amount Recovered", + ["affix"] = "Concentrated", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 56, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(66-70)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount7"] = { + "(71-75)% increased Amount Recovered", + ["affix"] = "Potent", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 67, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(71-75)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryAmount8"] = { + "(76-80)% increased Amount Recovered", + ["affix"] = "Saturated", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 83, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(76-80)% increased Amount Recovered", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { + "(51-60)% more Recovery if used while on Low Life", + ["affix"] = "Prudent", + ["group"] = "FlaskIncreasedRecoveryOnLowLife", + ["level"] = 2, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 931, + }, + ["tradeHashes"] = { + [886931978] = { + "(51-60)% more Recovery if used while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { + "(61-70)% more Recovery if used while on Low Life", + ["affix"] = "Prepared", + ["group"] = "FlaskIncreasedRecoveryOnLowLife", + ["level"] = 25, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 931, + }, + ["tradeHashes"] = { + [886931978] = { + "(61-70)% more Recovery if used while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { + "(71-80)% more Recovery if used while on Low Life", + ["affix"] = "Wary", + ["group"] = "FlaskIncreasedRecoveryOnLowLife", + ["level"] = 44, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 931, + }, + ["tradeHashes"] = { + [886931978] = { + "(71-80)% more Recovery if used while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { + "(81-90)% more Recovery if used while on Low Life", + ["affix"] = "Careful", + ["group"] = "FlaskIncreasedRecoveryOnLowLife", + ["level"] = 63, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 931, + }, + ["tradeHashes"] = { + [886931978] = { + "(81-90)% more Recovery if used while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { + "(91-100)% more Recovery if used while on Low Life", + ["affix"] = "Cautious", + ["group"] = "FlaskIncreasedRecoveryOnLowLife", + ["level"] = 82, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 931, + }, + ["tradeHashes"] = { + [886931978] = { + "(91-100)% more Recovery if used while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowMana1"] = { + "(51-60)% more Recovery if used while on Low Mana", + ["affix"] = "Sustained", + ["group"] = "FlaskIncreasedRecoveryOnLowMana", + ["level"] = 2, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 929, + }, + ["tradeHashes"] = { + [3276224428] = { + "(51-60)% more Recovery if used while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowMana2"] = { + "(61-70)% more Recovery if used while on Low Mana", + ["affix"] = "Tenacious", + ["group"] = "FlaskIncreasedRecoveryOnLowMana", + ["level"] = 25, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 929, + }, + ["tradeHashes"] = { + [3276224428] = { + "(61-70)% more Recovery if used while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowMana3"] = { + "(71-80)% more Recovery if used while on Low Mana", + ["affix"] = "Persistent", + ["group"] = "FlaskIncreasedRecoveryOnLowMana", + ["level"] = 44, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 929, + }, + ["tradeHashes"] = { + [3276224428] = { + "(71-80)% more Recovery if used while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowMana4"] = { + "(81-90)% more Recovery if used while on Low Mana", + ["affix"] = "Persevering", + ["group"] = "FlaskIncreasedRecoveryOnLowMana", + ["level"] = 63, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 929, + }, + ["tradeHashes"] = { + [3276224428] = { + "(81-90)% more Recovery if used while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoveryOnLowMana5"] = { + "(91-100)% more Recovery if used while on Low Mana", + ["affix"] = "Prolonged", + ["group"] = "FlaskIncreasedRecoveryOnLowMana", + ["level"] = 82, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 929, + }, + ["tradeHashes"] = { + [3276224428] = { + "(91-100)% more Recovery if used while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed1"] = { + "(41-45)% increased Recovery rate", + ["affix"] = "Dense", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(41-45)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed2"] = { + "(46-50)% increased Recovery rate", + ["affix"] = "Undiluted", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 15, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(46-50)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed3_"] = { + "(51-55)% increased Recovery rate", + ["affix"] = "Hearty", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 31, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(51-55)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed4"] = { + "(56-60)% increased Recovery rate", + ["affix"] = "Viscous", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 46, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(56-60)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed5"] = { + "(61-65)% increased Recovery rate", + ["affix"] = "Condensed", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 61, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(61-65)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskIncreasedRecoverySpeed6"] = { + "(66-70)% increased Recovery rate", + ["affix"] = "Catalysed", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 81, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(66-70)% increased Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskPartialInstantRecovery1"] = { + "(20-23)% of Recovery applied Instantly", + ["affix"] = "Simmering", + ["group"] = "FlaskPartialInstantRecovery", + ["level"] = 3, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 937, + }, + ["tradeHashes"] = { + [2503377690] = { + "(20-23)% of Recovery applied Instantly", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskPartialInstantRecovery2"] = { + "(24-27)% of Recovery applied Instantly", + ["affix"] = "Effervescent", + ["group"] = "FlaskPartialInstantRecovery", + ["level"] = 27, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 937, + }, + ["tradeHashes"] = { + [2503377690] = { + "(24-27)% of Recovery applied Instantly", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskPartialInstantRecovery3"] = { + "(28-30)% of Recovery applied Instantly", + ["affix"] = "Bubbling", + ["group"] = "FlaskPartialInstantRecovery", + ["level"] = 46, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 937, + }, + ["tradeHashes"] = { + [2503377690] = { + "(28-30)% of Recovery applied Instantly", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "life_flask", + "mana_flask", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FlaskPoisonImmunity1__"] = { + "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", + ["affix"] = "of the Antitoxin", + ["group"] = "FlaskPoisonImmunity", + ["level"] = 16, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 676, + }, + ["tradeHashes"] = { + [542375676] = { + "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskPoisonImmunityDuringEffect"] = { + "(45-49)% less Duration", + "Immunity to Poison during Effect", + ["affix"] = "of the Skunk", + ["group"] = "FlaskPoisonImmunityDuringEffect", + ["level"] = 16, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 633, + 752, + }, + ["tradeHashes"] = { + [1349296959] = { + "Immunity to Poison during Effect", + }, + [1506355899] = { + "(45-49)% less Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskShockImmunity1"] = { + "Grants Immunity to Shock for (6-8) seconds if used while Shocked", + ["affix"] = "of Earthing", + ["group"] = "FlaskShockImmunity", + ["level"] = 6, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 678, + }, + ["tradeHashes"] = { + [3854439683] = { + "Grants Immunity to Shock for (6-8) seconds if used while Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FlaskShockImmunityDuringEffect"] = { + "(45-49)% less Duration", + "Immunity to Shock during Effect", + ["affix"] = "of the Conger", + ["group"] = "FlaskShockImmunityDuringEffect", + ["level"] = 6, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 633, + 753, + }, + ["tradeHashes"] = { + [1506355899] = { + "(45-49)% less Duration", + }, + [589991690] = { + "Immunity to Shock during Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, +} diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index a2fc2ee5c3..46d4829248 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -1,17 +1,267 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 884 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, - ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2983 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, - ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8021 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, - ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1133 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, - ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 985 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 987 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6119 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, - ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, -} \ No newline at end of file + ["IncursionArm1"] = { + "(8-12)% increased Block chance", + ["affix"] = "", + ["group"] = "IncreasedBlockChance", + ["level"] = 0, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1133, + }, + ["tradeHashes"] = { + [4147897060] = { + "(8-12)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionArm2"] = { + "(6-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 0, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(6-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionArm3"] = { + "(6-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 0, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(6-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionArm4"] = { + "(12-16)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 0, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(12-16)% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionArm5"] = { + "(6-10)% increased Deflection Rating", + ["affix"] = "", + ["group"] = "GlobalDeflectionRating", + ["level"] = 0, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6119, + }, + ["tradeHashes"] = { + [3040571529] = { + "(6-10)% increased Deflection Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionArm6"] = { + "(15-25)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 0, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(15-25)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg1"] = { + "(20-30)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 0, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(20-30)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg2"] = { + "(6-10)% increased Movement Speed while Sprinting", + ["affix"] = "", + ["group"] = "MovementVelocityWhileSprinting", + ["level"] = 0, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 10069, + }, + ["tradeHashes"] = { + [3107707789] = { + "(6-10)% increased Movement Speed while Sprinting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg3"] = { + "(15-25)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 0, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(15-25)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg4"] = { + "(5-10)% reduced Movement Speed Penalty from using Skills while moving", + ["affix"] = "", + ["group"] = "MovementVelocityPenaltyWhilePerformingAction", + ["level"] = 0, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9154, + }, + ["tradeHashes"] = { + [2590797182] = { + "(5-10)% reduced Movement Speed Penalty from using Skills while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg5"] = { + "(20-30)% increased Mana Regeneration Rate while moving", + ["affix"] = "", + ["group"] = "ManaRegenerationRateWhileMoving", + ["level"] = 0, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8021, + }, + ["tradeHashes"] = { + [1327522346] = { + "(20-30)% increased Mana Regeneration Rate while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncursionLeg6"] = { + "(6-10)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 0, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(6-10)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, +} diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index 304cfdfe17..d3b7981b97 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -1,2555 +1,77045 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 992 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 992 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 992 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 992 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 992 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 992 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 992 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 992 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 993 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 993 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 993 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 993 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 993 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 993 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 993 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 993 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 994 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 994 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 994 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 994 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 994 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 994 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 994 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 994 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 991 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 991 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 991 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 991 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 991 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 991 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 991 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 991 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 1014 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 1014 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 1014 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 1014 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 1014 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 1014 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 1014 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 1020 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 1020 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 1020 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 1020 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 1020 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 1020 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 1020 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 1023 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 1023 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 1023 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 1023 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 1023 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 1023 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 1023 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1013 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1013 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1013 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1013 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1013 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1013 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 920 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 920 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 920 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 920 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 920 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 920 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 1024 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 1024 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 1024 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 1024 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 1024 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 1024 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 887 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 887 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 887 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 887 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 887 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 887 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 887 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 887 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 887 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 887 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 887 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, - ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 887 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, - ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 889 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, - ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 889 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 889 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 892 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 892 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 892 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 892 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 892 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 892 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 892 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 892 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 892 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 892 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 892 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 892 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 892 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 892 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 892 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 892 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 892 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 892 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 892 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 892 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 892 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 892 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 892 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, - ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 894 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, - ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 894 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, - ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 894 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 881 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-51) to Armour", statOrder = { 881 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(23-51) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(52-68) to Armour", statOrder = { 881 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(52-68) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-107) to Armour", statOrder = { 881 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(69-107) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(108-140) to Armour", statOrder = { 881 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(108-140) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(141-186) to Armour", statOrder = { 881 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(141-186) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(187-225) to Armour", statOrder = { 881 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(187-225) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(226-267) to Armour", statOrder = { 881 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(226-267) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(268-311) to Armour", statOrder = { 881 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(268-311) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(312-351) to Armour", statOrder = { 881 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(312-351) to Armour" }, } }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-17) to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(8-17) to Evasion Rating" }, } }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(18-38) to Evasion Rating", statOrder = { 883 }, level = 11, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(18-38) to Evasion Rating" }, } }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(39-51) to Evasion Rating", statOrder = { 883 }, level = 16, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(39-51) to Evasion Rating" }, } }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(52-79) to Evasion Rating", statOrder = { 883 }, level = 25, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(52-79) to Evasion Rating" }, } }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(80-107) to Evasion Rating", statOrder = { 883 }, level = 33, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-107) to Evasion Rating" }, } }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(108-141) to Evasion Rating", statOrder = { 883 }, level = 46, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(108-141) to Evasion Rating" }, } }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(142-174) to Evasion Rating", statOrder = { 883 }, level = 54, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(142-174) to Evasion Rating" }, } }, - ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(175-202) to Evasion Rating", statOrder = { 883 }, level = 65, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(175-202) to Evasion Rating" }, } }, - ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(203-233) to Evasion Rating", statOrder = { 883 }, level = 70, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(203-233) to Evasion Rating" }, } }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 885 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 885 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 885 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 885 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 885 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 885 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 885 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 885 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 885 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 882 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 882 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 882 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 882 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 882 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 882 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 882 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 884 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 884 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 884 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 884 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 884 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 884 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 884 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 886 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 886 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 886 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 886 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 886 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 886 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 886 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-56) to Armour", statOrder = { 840 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(28-56) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(57-77) to Armour", statOrder = { 840 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(57-77) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(78-98) to Armour", statOrder = { 840 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(78-98) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(99-127) to Armour", statOrder = { 840 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(99-127) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(128-159) to Armour", statOrder = { 840 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(128-159) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(160-190) to Armour", statOrder = { 840 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(160-190) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(191-221) to Armour", statOrder = { 840 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(191-221) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(222-248) to Armour", statOrder = { 840 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(222-248) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(249-277) to Armour", statOrder = { 840 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(249-277) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(278-310) to Armour", statOrder = { 840 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(278-310) to Armour" }, } }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-46) to Evasion Rating", statOrder = { 841 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(19-46) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(47-66) to Evasion Rating", statOrder = { 841 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-66) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(67-87) to Evasion Rating", statOrder = { 841 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(67-87) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(88-116) to Evasion Rating", statOrder = { 841 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(88-116) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(117-146) to Evasion Rating", statOrder = { 841 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(117-146) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(147-176) to Evasion Rating", statOrder = { 841 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(147-176) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(177-207) to Evasion Rating", statOrder = { 841 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(177-207) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(208-234) to Evasion Rating", statOrder = { 841 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(208-234) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(235-261) to Evasion Rating", statOrder = { 841 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(235-261) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(262-300) to Evasion Rating", statOrder = { 841 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(262-300) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 843 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 843 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 843 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 843 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 843 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 843 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 843 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 843 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 843 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 843 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(9-16) to Armour", "+(6-10) to Evasion Rating", statOrder = { 840, 841 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [53045048] = { "+(6-10) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(17-46) to Armour", "+(11-41) to Evasion Rating", statOrder = { 840, 841 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [53045048] = { "+(11-41) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(47-71) to Armour", "+(42-64) to Evasion Rating", statOrder = { 840, 841 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [53045048] = { "+(42-64) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(72-85) to Armour", "+(65-78) to Evasion Rating", statOrder = { 840, 841 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [53045048] = { "+(65-78) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-102) to Armour", "+(79-94) to Evasion Rating", statOrder = { 840, 841 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [53045048] = { "+(79-94) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(103-127) to Armour", "+(95-119) to Evasion Rating", statOrder = { 840, 841 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [53045048] = { "+(95-119) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(128-149) to Armour", "+(120-141) to Evasion Rating", statOrder = { 840, 841 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [53045048] = { "+(120-141) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(150-170) to Armour", "+(142-161) to Evasion Rating", statOrder = { 840, 841 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [53045048] = { "+(142-161) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(9-16) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 840, 843 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(17-46) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 840, 843 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(47-71) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 840, 843 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(72-85) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 840, 843 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-102) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 840, 843 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(103-127) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 840, 843 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(128-149) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 840, 843 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(150-170) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 840, 843 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-10) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(6-10) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(11-41) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 841, 843 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-41) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(42-64) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 841, 843 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(42-64) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(65-78) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 841, 843 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(65-78) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(79-94) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 841, 843 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(79-94) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(95-119) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 841, 843 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(95-119) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(120-141) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 841, 843 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(120-141) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(142-161) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 841, 843 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(142-161) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 846 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 846 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 846 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 846 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 846 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 846 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 846 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 846 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 848 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 848 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 848 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 848 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 848 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 848 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 848 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 848 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 849 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 849 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 849 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 849 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 849 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 849 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 849 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 849 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 850 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 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 = { 850 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 851 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 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 = { 851 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 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 = { 852 }, level = 75, 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, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, - ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 846, 1061 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 846, 1061 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 846, 1061 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 846, 1061 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 846, 1061 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 846, 1061 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 848, 1061 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 848, 1061 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 848, 1061 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 848, 1061 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 848, 1061 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 848, 1061 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 849, 1061 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 849, 1061 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 849, 1061 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 849, 1061 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 849, 1061 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 849, 1061 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 850, 1061 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 850, 1061 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 850, 1061 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 850, 1061 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 850, 1061 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 850, 1061 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 851, 1061 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 851, 1061 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 851, 1061 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 851, 1061 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 851, 1061 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 851, 1061 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 852, 1061 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 852, 1061 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 852, 1061 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 852, 1061 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 852, 1061 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 852, 1061 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 846, 887 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 846, 887 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 846, 887 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 846, 887 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 846, 887 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 846, 887 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 848, 887 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 848, 887 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 848, 887 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 848, 887 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 848, 887 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 848, 887 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 849, 887 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 849, 887 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 849, 887 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 849, 887 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 849, 887 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 849, 887 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 850, 887 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 850, 887 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 850, 887 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 850, 887 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 850, 887 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 850, 887 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 851, 887 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 851, 887 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 851, 887 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 851, 887 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 851, 887 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 851, 887 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 852, 887 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 852, 887 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 852, 887 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 852, 887 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 852, 887 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 852, 887 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 846, 892 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 846, 892 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 846, 892 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 846, 892 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 846, 892 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 846, 892 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 848, 892 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 848, 892 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 848, 892 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 848, 892 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 848, 892 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 848, 892 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 849, 892 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 849, 892 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 849, 892 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 849, 892 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 849, 892 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 849, 892 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 850, 892 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 850, 892 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 850, 892 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 850, 892 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 850, 892 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 850, 892 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 851, 892 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 851, 892 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 851, 892 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 851, 892 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 851, 892 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 851, 892 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 852, 892 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 852, 892 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 852, 892 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 852, 892 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 852, 892 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 852, 892 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(5-9) to Armour", "(6-13)% increased Armour", statOrder = { 840, 846 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(5-9) to Armour" }, } }, - ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(10-29) to Armour", "(14-20)% increased Armour", statOrder = { 840, 846 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(10-29) to Armour" }, } }, - ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-41) to Armour", "(21-26)% increased Armour", statOrder = { 840, 846 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-41) to Armour" }, } }, - ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(42-57) to Armour", "(27-32)% increased Armour", statOrder = { 840, 846 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(42-57) to Armour" }, } }, - ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(58-75) to Armour", "(33-38)% increased Armour", statOrder = { 840, 846 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(58-75) to Armour" }, } }, - ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(76-95) to Armour", "(39-42)% increased Armour", statOrder = { 840, 846 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(76-95) to Armour" }, } }, - ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(4-6) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 841, 848 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(4-6) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(7-26) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 841, 848 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(7-26) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(27-38) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 841, 848 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(27-38) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(39-53) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 841, 848 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(39-53) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(54-70) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 841, 848 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(54-70) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(71-90) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 841, 848 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(71-90) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 843, 849 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 843, 849 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 843, 849 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 843, 849 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 843, 849 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 843, 849 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(3-5) to Armour", "+(2-3) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(2-3) to Evasion Rating" }, [3484657501] = { "+(3-5) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(6-16) to Armour", "+(4-14) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(4-14) to Evasion Rating" }, [3484657501] = { "+(6-16) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(17-23) to Armour", "+(15-21) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(15-21) to Evasion Rating" }, [3484657501] = { "+(17-23) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(24-32) to Armour", "+(22-29) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(22-29) to Evasion Rating" }, [3484657501] = { "+(24-32) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(33-41) to Armour", "+(30-39) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(30-39) to Evasion Rating" }, [3484657501] = { "+(33-41) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(42-52) to Armour", "+(40-50) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 840, 841, 850 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(40-50) to Evasion Rating" }, [3484657501] = { "+(42-52) to Armour" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(3-5) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(3-5) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(6-16) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(6-16) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(17-23) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-23) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(24-32) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(24-32) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(33-41) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(33-41) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(42-52) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 840, 843, 851 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(42-52) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(2-3) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(2-3) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(4-14) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(4-14) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(15-21) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(15-21) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(22-29) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-29) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(30-39) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(30-39) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(40-50) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 841, 843, 852 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 948 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 948 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 948 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 948 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 948 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, - ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, - ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 1061 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, - ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 1061 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, - ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 1061 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, - ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 1061 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, - ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 1061 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, - ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 1061 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, - ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 1061 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, - ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 1061 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, - ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 1061 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, - ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 1061 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 836 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 836 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 836 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 836 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 836 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10261 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10261 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10261 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10261 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, - ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10261 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10261 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 858 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 858 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 858 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 858 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 858 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 858 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 858 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 858 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 859 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 859 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 859 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 859 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 859 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 859 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 859 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 859 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 859 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 860 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 860 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 860 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 860 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 860 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 860 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 860 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 860 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 860 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 861 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 861 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 861 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 861 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 861 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 861 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 861 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 861 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 861 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 831 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 831 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 831 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 831 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 831 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 831 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 831 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 831 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 831 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 831 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 831 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 831 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 831 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 831 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 831 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 831 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 832 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 832 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 832 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 832 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 832 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 832 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 832 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 832 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 832 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 832 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 832 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 832 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 832 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 832 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 832 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 832 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 832 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 832 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 833 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 833 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 833 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 833 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 833 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 833 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 833 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 833 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 833 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 833 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 833 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 833 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 833 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 833 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 833 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 833 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 833 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 833 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 834 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 834 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 834 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 834 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 834 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 834 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 834 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 834 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 834 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 834 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 834 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 834 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 834 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 834 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 834 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 834 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 834 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 834 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 907 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 907 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 907 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 907 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 907 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 907 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 907 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 907 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 907 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 908 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 908 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 908 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 908 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 908 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 908 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 908 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 908 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 908 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 909 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 909 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 909 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 909 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 909 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 909 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 909 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 909 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 909 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 910 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 910 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 910 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 910 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 910 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 910 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 910 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 910 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 910 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 830 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 830, 835 }, level = 8, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 830, 835 }, level = 14, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 830, 835 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 830, 835 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 830, 835 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 830, 835 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 830, 835 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 830, 835 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, - ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, - ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 906 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, - ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 906 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, - ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 906 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, - ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 906 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, - ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 906 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, - ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 906 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, - ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 906 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 871 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 871 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 871 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 871 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 871 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 871 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 871 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 871 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 871 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 871 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 871 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 871 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 871 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 871 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 871, 892 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 871, 892 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 871, 892 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 871, 892 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 871, 892 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 871, 892 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 871, 892 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 871, 892 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 871, 892 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 871, 892 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 871, 892 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 871, 892 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 871, 892 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 871, 892 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 873 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 873 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 873 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 873 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 873 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 873 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 873 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 873 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 873 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 873 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 873 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 873 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 873 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 873 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 873 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 873 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 874 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 874 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 874 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 874 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 874 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 874 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 874 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 874 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 874 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 874 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 874 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 874 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 874 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 874 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 874 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 874 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 875 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 875 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 875 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 875 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 875 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 875 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 875 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 875 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 875 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 875 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 875 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 875 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 875 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 875 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 875 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 875 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, - ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 876 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 876 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 876 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 876 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 876 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 876 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 876 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 876 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 876 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 876 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 876 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 876 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 876 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 876 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 876 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 876 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 878 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 878 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 878 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 878 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 878 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 878 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 878 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 878 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 878 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 878 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 878 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 878 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 878 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 878 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 878 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 878 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, - ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 872 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 872 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 872 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 872 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 872 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 872 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 872 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 872 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 872, 892 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 872, 892 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 872, 892 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 872, 892 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 872, 892 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 872, 892 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 872, 892 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, - ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 950 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 950 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 950 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 950 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 950 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 950 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 950 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 950 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 972 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 972 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 972 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 972 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, - ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 974 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, - ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 966 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 966 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 966 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", statOrder = { 966 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 966 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+4 to Level of all Melee Skills", statOrder = { 966 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 966 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 966 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 966 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, - ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 968 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+3 to Level of all Projectile Skills", statOrder = { 968 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+4 to Level of all Projectile Skills", statOrder = { 968 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 968 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 968 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 968 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 1034 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 1034 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 1034 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 1034 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 1034 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 1034 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 1034 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 1034 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 1034 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 1034 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, - ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 921 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 921 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 921 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 921 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 921 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 921 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 921 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 921 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 921 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 921 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 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 = { 1043 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 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 = { 1043 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 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 = { 1043 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 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 = { 1043 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 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 = { 1043 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, - ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 65, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, - ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 65, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 1045 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 1045 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 1045 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 1045 }, level = 65, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 1042 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 1042 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 1042 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 1042 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 1042 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 1042 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 1042 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 1047 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 1047 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 1047 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 1047 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 1047 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 1047 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 1047 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1040 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 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 = { 1040 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 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 = { 1040 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 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 = { 1040 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 1041 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 1041 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 1041 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 1041 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 985 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 985 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 985 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 946 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 946 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 946 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 946 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 946 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 946 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 946 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 918 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 918 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 918 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 918 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 987 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 987 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 987 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 987 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 987 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 987 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 987 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 987 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 987 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 987 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 987 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 987 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 919 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 919 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 919 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 919 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, - ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, - ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 880 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, - ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 880 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, - ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 880 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, - ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 880 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, - ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 880 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, - ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 880 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, - ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 880 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, - ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 880 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 835 }, level = 8, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 835 }, level = 13, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 835 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 835 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 835 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 835 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 835 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 835 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 835 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 835 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 915 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 915 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 915 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 915 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 915 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 915 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 915 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 915 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 976 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 976 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 976 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 976 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 976 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 976 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 944 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 944 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 944 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 944 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 944 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, - ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, - ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, - ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 916 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 916 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 916 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 916 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 916 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 916 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 980 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 980 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 980 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 980 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 980 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 980 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 945 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 945 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 945 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 945 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 945 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 945 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, - ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, - ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 917 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 917 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 917 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 917 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 917 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 917 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 941 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 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 = { 941 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 941 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 941 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 941 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 941 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 941 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 941 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 941 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 941 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 880, 1070 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 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 = { 880, 1070 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 880, 1070 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 835, 1070 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 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 = { 835, 1070 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 835, 1070 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, - ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 1043, 1070 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 1043, 1070 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 1043, 1070 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, - ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, - ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 839 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, - ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 839 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, - ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 839 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, - ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 839 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, - ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 839 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, - ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 839 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, - ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 896 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, - ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 896 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, - ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 896 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, - ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 896 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, - ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 896 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, - ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 896 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, - ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 896 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, - ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 896 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, - ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(20-26)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(20-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 857 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 857 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 857 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 857 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 857 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 857 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 857 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 857, 892 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 857, 892 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 857, 892 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 857, 892 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 857, 892 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 857, 892 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 857, 892 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, - ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, - ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1067 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1067 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1067 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1067 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, - ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 1066 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 1066 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 1066 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 1066 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 1066 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, - ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 1064 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 1064 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 1064 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 1064 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 1064 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 1006 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 1006 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 1006 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 1006 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 1006 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 1009 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 1009 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 1010 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 1010 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, - ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(5-8)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(5-8)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(9-11)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(16-19)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-19)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(20-23)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-23)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(24-27)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-27)% increased Energy Shield Recharge Rate" }, } }, - ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, - ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 1028 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 1028 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 1028 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 1028 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 1028 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, - ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, - ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 990 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 990 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 988 }, level = 55, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 988 }, level = 82, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 898 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 898 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 898 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 898 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 899 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 899 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 899 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 899 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 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 = { 899 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 900 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 900 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 900 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 900 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 900 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6640 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6640 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6640 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6640 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6640 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6640 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 1049 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 1049 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 1049 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 1049 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, - ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5605 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5605 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5605 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5605 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5605 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5605 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5606 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5606 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5606 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5606 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5606 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5606 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, - ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 989 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, - ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 989 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 1055 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 1055 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 1055 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 1055 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 1055 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, - ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 1057 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 1057 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 1057 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 1057 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 1057 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, - ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 1059 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, - ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 1059 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, - ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 1059 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, - ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 1059 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, - ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 1059 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, - ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 897 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, - ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 897 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 897 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, - ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 897 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, - ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 897 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 1054 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 1054 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 1054 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 1054 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 1054 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, - ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 1054 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, - ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 1052 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, - ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 1052 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, - ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 1052 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, - ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 1052 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, - ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 1052 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, - ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 1052 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, - ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, - ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 871 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 871 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 871 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 871 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 871 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 873 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, - ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 873 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, - ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 873 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, - ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 873 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, - ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 873 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 873 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 874 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, - ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 874 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, - ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 874 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, - ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 874 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, - ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 874 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 874 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 875 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, - ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 875 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, - ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 875 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, - ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 875 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 875 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 875 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 876 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 876 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 876 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 876 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 876 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 876 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, - ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, - ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 879 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 879 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 879 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 879 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 879 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 879 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, - ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1069 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, - ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1069 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1069 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, - ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1069 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, - ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 1026 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, - ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 1026 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, - ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 1026 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, - ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1026 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, - ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 1026 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, - ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 1026 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6941 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6941 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, - ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6945 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6945 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, - ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Augment Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7703 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, - ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6473 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6473 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceBreach"] = { type = "Prefix", affix = "Breachlord's", "+20% to Maximum Quality", statOrder = { 615 }, level = 1, group = "LocalMaximumQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 898 }, 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 = { 898 }, 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 = { 898 }, 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 = { 898 }, 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 = { 898 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 899 }, 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 = { 899 }, 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 = { 899 }, 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 = { 1604 }, 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 = { 1604 }, 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 = { 1604 }, 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 = { 1604 }, 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 = { 1604 }, 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 = { 1604 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1601 }, 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 = { 1601 }, 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 = { 1601 }, 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 = { 1601 }, 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 = { 1601 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 838 }, 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 = { 838 }, 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 = { 838 }, 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 = { 838 }, 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 = { 2197 }, 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 = { 1602 }, 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 = { 1602 }, 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 = { 1602 }, 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 = { 1602 }, 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 = { 2245 }, 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 = { 2245 }, 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 = { 2245 }, 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 = { 2245 }, 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 = { 2245 }, 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 = { 2245 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1953 }, 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 = { 1953 }, 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 = { 1953 }, 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 = { 1953 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2507 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2507 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2507 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1519 }, 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 = { 1519 }, 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 = { 1519 }, 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 = { 1519 }, 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 = { 1519 }, 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 = { 1519 }, 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 = { 1520 }, 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 = { 1520 }, 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 = { 1520 }, 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 = { 1520 }, 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 = { 2600 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2601 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2602 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2603 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2604 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2605 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2606 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3008 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 876 }, 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 = { 876 }, 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 = { 876 }, 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", "Leech Life 150% faster", statOrder = { 1896 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2726 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2724 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 2725 }, 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 = { 1599 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 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 = { 1599 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 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 = { 1599 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 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 = { 1599 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 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 = { 1599 }, 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 = { 1599 }, 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 = { 1599 }, 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 = { 1599 }, 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 = { 1781 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "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 = { 1781 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "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 = { 1781 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 1039 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 1039 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 1039 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 1039 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 1039 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 1039 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1156 }, 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 = { 1156 }, 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 = { 1156 }, 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 = { 1156 }, 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 = { 1156 }, 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 = { 2360 }, 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 = { 2360 }, 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 = { 2360 }, 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 = { 2360 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 2983 }, 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 = { 2983 }, 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 = { 2983 }, 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 = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 (49-68) Lightning Damage to Spells", statOrder = { 1307 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1307 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1307 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1307 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1307 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1307 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_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 = { 1291 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, 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 = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, 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 = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3073 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1288 }, 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 = { 1288 }, 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 = { 1288 }, 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 = { 2896 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2896 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 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 = { 876, 2896 }, 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 = { 414 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "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 = { 408 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "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 = { 408 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 411 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "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 = { 3982 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2206 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1674 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1674 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1695 }, 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 Hit Chance", statOrder = { 400 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3919 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "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 = { 2905 }, 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 = { 3918 }, 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 = { 3918 }, 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 = { 3920 }, 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" }, } }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 410 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3912 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3913 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9714 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3915 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3916 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3164 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8835 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5496 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6742 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 444 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 141 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 564 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 545, 545.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1630 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6823 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, - ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2583 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 442 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6084 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9178 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, - ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2288 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7991 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, - ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4660 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4660 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 512 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 508 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 531 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 513 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1205 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "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 = { 1205 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1202 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "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 = { 1202 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1199 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "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 = { 1199 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1197 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "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 = { 1197 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 889 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 894 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(20-30)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6575 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, - ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5689 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, - ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7551 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, - ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+2 to Level of all Attack Skills" }, } }, - ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, - ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, - ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7639 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, - ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, - ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, - ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 999 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, - ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1000 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, - ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1001 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, - ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, - ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2574 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, - ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6590 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4727 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9800 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, - ["GenesisTreeRingOfferingEffectCrafted"] = { type = "Prefix", affix = "Sacrificial", "Offering Skills have (16-23)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (16-23)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, - ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7385 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10027 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6561 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7543 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5675 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5565 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10025 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5401 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6036 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, - ["AlloyMaximumRunicWard1"] = { type = "Prefix", affix = "Verisium", "+(37-49) to maximum Runic Ward", statOrder = { 890 }, level = 13, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(37-49) to maximum Runic Ward" }, } }, - ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, - ["AlloyMaximumRunicWardPercent1"] = { type = "Prefix", affix = "Verisium", "(6-10)% increased maximum Runic Ward", statOrder = { 891 }, level = 13, group = "GlobalRunicWardPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(6-10)% increased maximum Runic Ward" }, } }, - ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9682 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, - ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4558 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, - ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9683 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, - ["AlloyLocalWardIncreasePercent1"] = { type = "Prefix", affix = "Verisium", "(24-30)% increased Runic Ward", statOrder = { 855 }, level = 25, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(24-30)% increased Runic Ward" }, } }, - ["AlloyLocalWardIncreasePercent2"] = { type = "Prefix", affix = "Verisium", "(31-40)% increased Runic Ward", statOrder = { 855 }, level = 65, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(31-40)% increased Runic Ward" }, } }, - ["AlloyMaximumRunicWardWeapon1"] = { type = "Suffix", affix = "of the Stars", "+(51-74) to maximum Runic Ward", statOrder = { 890 }, level = 25, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(51-74) to maximum Runic Ward" }, } }, - ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9738 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, - ["AlloyPresenceAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(35-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 25, group = "PresenceRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(35-50)% increased Presence Area of Effect" }, } }, - ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, - ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10247 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, - ["AlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 45, group = "IncreasedCastSpeedNoAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["AlloyAttackSpeedRing1"] = { type = "Suffix", affix = "of the Stars", "(7-9)% increased Attack Speed", statOrder = { 985 }, level = 45, group = "IncreasedAttackSpeedNoCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, } }, - ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6888 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, - ["AlloyTotemPlacementSpeed1"] = { type = "Suffix", affix = "of the Stars", "(30-49)% increased Totem Placement speed", statOrder = { 2360 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-49)% increased Totem Placement speed" }, } }, - ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AlloySkillEffectDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4344 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, - ["AlloyElementalPenetration1"] = { type = "Prefix", affix = "of the Stars", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 45, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, - ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6533 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, - ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, - ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9991 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, - ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, - ["AlloySpiritOnBoots1"] = { type = "Suffix", affix = "of the Stars", "+(10-15) to Spirit", statOrder = { 896 }, level = 45, group = "BaseSpirit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7603 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["AlloyEffectOfSocketedAugments1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 65, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "(20-30)% increased effect of Socketed Augment Items" }, } }, - ["AlloyEffectOfResistanceMods1"] = { type = "Prefix", affix = "Verisium", "(20-30)% increased Explicit Resistance Modifier magnitudes", statOrder = { 45 }, level = 65, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1972391381] = { "(20-30)% increased Explicit Resistance Modifier magnitudes" }, } }, - ["AlloySpellLevelManaHybrid1"] = { type = "Prefix", affix = "Verisium", "+(142-188) to maximum Mana", "+1 to Level of all Spell Skills", statOrder = { 892, 950 }, level = 65, group = "ManaSpellLevelHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(142-188) to maximum Mana" }, [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 880, 946 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, - ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(110-114) to maximum Mana", "Allies in your Presence have (4-8)% increased Attack Speed", statOrder = { 892, 918 }, level = 65, group = "ManaNearbyAllyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(110-114) to maximum Mana" }, [1998951374] = { "Allies in your Presence have (4-8)% increased Attack Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { type = "Suffix", affix = "of the Stars", "(26-31)% increased Cast Speed", "Gain (7-11)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (7-11)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 830, 1145 }, level = 65, group = "AttributeIncreasedLocalPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2897413282] = { "+(7-10) to all Attributes" }, [1509134228] = { "(15-20)% increased Physical Damage" }, } }, - ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { type = "Suffix", affix = "of the Stars", "(8-12)% increased Spirit", "(50-60)% increased Presence Area of Effect", statOrder = { 857, 1069 }, level = 65, group = "SpiritPresenceAreaOfEffectHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [101878827] = { "(50-60)% increased Presence Area of Effect" }, [3984865854] = { "(8-12)% increased Spirit" }, } }, - ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5399 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, - ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6309 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, - ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5570 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4773 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, - ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, - ["AlloyMeleeStrikeRange1"] = { type = "Suffix", affix = "of the Stars", "+(8-10) to Weapon Range", statOrder = { 2507 }, level = 65, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(8-10) to Weapon Range" }, } }, - ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, - ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7546 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, - ["AlloyMarkEffect"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 65, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "(40-50)% increased Effect of your Mark Skills" }, } }, - ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "(33-36)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(33-36)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, - ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 966, 975 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, - ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, - ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1011, 1024 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1024 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1003 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1024 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1004 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, - ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4737 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4659 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4238 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4551 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9278 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7454 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5959 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6343, 6521, 6521.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6343, 6521, 6521.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, - ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6510 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, - ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1909, 2376 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, - ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7446 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7983 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10622 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10622 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5979 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5979 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9544 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9544 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, - ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, - ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6892, 6893 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 892, 1156 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, - ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, - ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4538 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, - ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9910 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, - ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4463 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, - ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, - ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5591, 9503 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 6008, 9503 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9170, 9503 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, - ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, - ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3419 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, - ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1604 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, - ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, - ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2749 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, - ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9301 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4550 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, - ["MinionDamage1"] = { type = "Prefix", affix = "Hustler's", "Minions deal (7-9)% increased Damage", statOrder = { 1720 }, level = 13, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-9)% increased Damage" }, } }, - ["MinionDamage2"] = { type = "Prefix", affix = "Conniver's", "Minions deal (10-12)% increased Damage", statOrder = { 1720 }, level = 26, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-12)% increased Damage" }, } }, - ["MinionDamage3"] = { type = "Prefix", affix = "Schemer's", "Minions deal (13-15)% increased Damage", statOrder = { 1720 }, level = 33, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, - ["MinionDamage4"] = { type = "Prefix", affix = "Plotter's", "Minions deal (16-18)% increased Damage", statOrder = { 1720 }, level = 46, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, - ["MinionDamage5"] = { type = "Prefix", affix = "Conspirator's", "Minions deal (19-21)% increased Damage", statOrder = { 1720 }, level = 54, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, - ["MinionDamage6"] = { type = "Prefix", affix = "Exploiter's", "Minions deal (22-24)% increased Damage", statOrder = { 1720 }, level = 65, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, - ["MinionDamage7"] = { type = "Prefix", affix = "Manipulator's", "Minions deal (25-27)% increased Damage", statOrder = { 1720 }, level = 70, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, - ["MinionDamage8"] = { type = "Prefix", affix = "Puppeteer's", "Minions deal (28-31)% increased Damage", statOrder = { 1720 }, level = 82, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-31)% increased Damage" }, } }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Persuasion", "Minions have (5-7)% increased Movement Speed", statOrder = { 1528 }, level = 27, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-7)% increased Movement Speed" }, } }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Pressure", "Minions have (8-10)% increased Movement Speed", statOrder = { 1528 }, level = 48, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Coercion", "Minions have (11-13)% increased Movement Speed", statOrder = { 1528 }, level = 68, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-13)% increased Movement Speed" }, } }, - ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Compulsion", "Minions have (14-16)% increased Movement Speed", statOrder = { 1528 }, level = 77, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (14-16)% increased Movement Speed" }, } }, - ["MinionElementalResistance1"] = { type = "Suffix", affix = "of Numbness", "Minions have +(7-9)% to all Elemental Resistances", statOrder = { 2667 }, level = 22, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-9)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance2"] = { type = "Suffix", affix = "of Dullness", "Minions have +(10-12)% to all Elemental Resistances", statOrder = { 2667 }, level = 38, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-12)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance3"] = { type = "Suffix", affix = "of Desensitisation", "Minions have +(14-16)% to all Elemental Resistances", statOrder = { 2667 }, level = 49, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(14-16)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2667 }, level = 57, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(17-19)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance5"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(20-22)% to all Elemental Resistances", statOrder = { 2667 }, level = 66, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(20-22)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance6"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(23-25)% to all Elemental Resistances", statOrder = { 2667 }, level = 73, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(23-25)% to all Elemental Resistances" }, } }, - ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, - ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 9030 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 9030 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 9030 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 9030 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, - ["MinionLifeRing1"] = { type = "Prefix", affix = "Bearing", "Minions have (7-10)% increased maximum Life", statOrder = { 1026 }, level = 18, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-10)% increased maximum Life" }, } }, - ["MinionLifeRing2"] = { type = "Prefix", affix = "Bracing", "Minions have (11-14)% increased maximum Life", statOrder = { 1026 }, level = 29, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (11-14)% increased maximum Life" }, } }, - ["MinionLifeRing3"] = { type = "Prefix", affix = "Toughening", "Minions have (15-18)% increased maximum Life", statOrder = { 1026 }, level = 41, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, - ["MinionLifeRing4"] = { type = "Prefix", affix = "Reinforcing", "Minions have (19-22)% increased maximum Life", statOrder = { 1026 }, level = 52, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, - ["MinionLifeRing5"] = { type = "Prefix", affix = "Bolstering", "Minions have (23-26)% increased maximum Life", statOrder = { 1026 }, level = 67, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-26)% increased maximum Life" }, } }, - ["MinionLifeRing6"] = { type = "Prefix", affix = "Fortifying", "Minions have (27-30)% increased maximum Life", statOrder = { 1026 }, level = 75, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, - ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9085 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, - ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9085 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, - ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9085 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, - ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9085 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, - ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 9027 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 9027 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 9027 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 9027 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 9027 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 9027 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, - ["MinionGemLevelBelt1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 36, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["MinionGemLevelBelt2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 64, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9058 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9058 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9058 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9058 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9058 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9058 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, - ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9355 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, - ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9355 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, - ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9355 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, - ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9355 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, - ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9355 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, - ["MinionAreaOfEffect1"] = { type = "Suffix", affix = "of Scurrying", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 23, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect2"] = { type = "Suffix", affix = "of Bustling", "Minions have (9-12)% increased Area of Effect", statOrder = { 2759 }, level = 36, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (9-12)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect3"] = { type = "Suffix", affix = "of Trampling", "Minions have (13-16)% increased Area of Effect", statOrder = { 2759 }, level = 49, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (13-16)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect4"] = { type = "Suffix", affix = "of Storming", "Minions have (17-20)% increased Area of Effect", statOrder = { 2759 }, level = 61, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (17-20)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect5"] = { type = "Suffix", affix = "of Stampeding", "Minions have (21-24)% increased Area of Effect", statOrder = { 2759 }, level = 73, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (21-24)% increased Area of Effect" }, } }, - ["SpellDamageRing1"] = { type = "Prefix", affix = "Apprentice's", "(6-9)% increased Spell Damage", statOrder = { 871 }, level = 9, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(6-9)% increased Spell Damage" }, } }, - ["SpellDamageRing2"] = { type = "Prefix", affix = "Adept's", "(10-13)% increased Spell Damage", statOrder = { 871 }, level = 20, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-13)% increased Spell Damage" }, } }, - ["SpellDamageRing3"] = { type = "Prefix", affix = "Scholar's", "(14-17)% increased Spell Damage", statOrder = { 871 }, level = 31, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-17)% increased Spell Damage" }, } }, - ["SpellDamageRing4"] = { type = "Prefix", affix = "Professor's", "(18-21)% increased Spell Damage", statOrder = { 871 }, level = 46, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, - ["SpellDamageRing5"] = { type = "Prefix", affix = "Occultist's", "(22-25)% increased Spell Damage", statOrder = { 871 }, level = 55, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, - ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 871 }, level = 63, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-29)% increased Spell Damage" }, } }, - ["SpellDamageRing7"] = { type = "Prefix", affix = "Glyphic", "(30-34)% increased Spell Damage", statOrder = { 871 }, level = 71, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, - ["SpellDamageRing8"] = { type = "Prefix", affix = "Runic", "(35-39)% increased Spell Damage", statOrder = { 871 }, level = 82, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, - ["ArcaneSurgeEffect1"] = { type = "Prefix", affix = "Eager", "(12-18)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 24, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(12-18)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect2"] = { type = "Prefix", affix = "Enthusiastic", "(19-25)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 47, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(19-25)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect3"] = { type = "Prefix", affix = "Spirited", "(26-32)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 61, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(26-32)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect4"] = { type = "Prefix", affix = "Passionate", "(33-39)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 79, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(33-39)% increased effect of Arcane Surge on you" }, } }, - ["SpellCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Menace", "(7-9)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 18, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(7-9)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Havoc", "(10-12)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 32, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-12)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Disaster", "(13-15)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 45, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(13-15)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Calamity", "(16-18)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 58, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(16-18)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Ruin", "(19-21)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 70, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(19-21)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Unmaking", "(22-25)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 81, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(22-25)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Ire", "(8-10)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 17, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(8-10)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Anger", "(11-13)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(11-13)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Rage", "(14-17)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(14-17)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 57, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(18-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Ferocity", "(22-25)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 69, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(22-25)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Destruction", "(26-29)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 80, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(26-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, - ["DamageRemovedFromManaBeforeLife1"] = { type = "Prefix", affix = "Taxing", "(4-6)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 23, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(4-6)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife2"] = { type = "Prefix", affix = "Draining", "(7-9)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 39, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(7-9)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife3"] = { type = "Prefix", affix = "Exhausting", "(10-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 52, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-12)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife4"] = { type = "Prefix", affix = "Enervating", "(13-15)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 77, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(13-15)% of Damage is taken from Mana before Life" }, } }, - ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, - ["CurseEffectiveness1"] = { type = "Prefix", affix = "Hexing", "(2-3)% increased Curse Magnitudes", statOrder = { 2376 }, level = 31, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-3)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness2"] = { type = "Prefix", affix = "Condemning", "(4-6)% increased Curse Magnitudes", statOrder = { 2376 }, level = 47, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(4-6)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness3"] = { type = "Prefix", affix = "Maledicting", "(7-9)% increased Curse Magnitudes", statOrder = { 2376 }, level = 61, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(7-9)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness4"] = { type = "Prefix", affix = "Dooming", "(10-12)% increased Curse Magnitudes", statOrder = { 2376 }, level = 77, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-12)% increased Curse Magnitudes" }, } }, - ["GlobalIncreaseSpellSkillGemLevel1"] = { type = "Suffix", affix = "of Jordan", "+1 to Level of all Spell Skills", statOrder = { 950 }, level = 45, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9991 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9991 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9991 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, - ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9738 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, - ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9738 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, - ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9738 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, - ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9738 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, - ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9738 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, - ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, - ["CastSpeedJewellery1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["CastSpeedJewellery2"] = { type = "Suffix", affix = "of Nimbleness", "(13-15)% increased Cast Speed", statOrder = { 987 }, level = 18, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, - ["CastSpeedJewellery3"] = { type = "Suffix", affix = "of Expertise", "(16-18)% increased Cast Speed", statOrder = { 987 }, level = 35, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, - ["CastSpeedJewellery4"] = { type = "Suffix", affix = "of Sortilege", "(19-21)% increased Cast Speed", statOrder = { 987 }, level = 51, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(19-21)% increased Cast Speed" }, } }, - ["CastSpeedJewellery5"] = { type = "Suffix", affix = "of Legerdemain", "(22-24)% increased Cast Speed", statOrder = { 987 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(22-24)% increased Cast Speed" }, } }, - ["CastSpeedJewellery6"] = { type = "Suffix", affix = "of Prestidigitation", "(25-28)% increased Cast Speed", statOrder = { 987 }, level = 66, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["ConvertedSpellDamageGainedAsChaos1"] = { type = "Prefix", affix = "Impure", "Gain (13-15)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (13-15)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos2"] = { type = "Prefix", affix = "Tainted", "Gain (16-18)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (16-18)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos3"] = { type = "Prefix", affix = "Clouded", "Gain (19-21)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (19-21)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos4"] = { type = "Prefix", affix = "Darkened", "Gain (22-24)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (22-24)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos5"] = { type = "Prefix", affix = "Malignant", "Gain (25-27)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-27)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos6"] = { type = "Prefix", affix = "Vile", "Gain (28-30)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (28-30)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand1"] = { type = "Prefix", affix = "Impure", "Gain (26-30)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (26-30)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand2"] = { type = "Prefix", affix = "Tainted", "Gain (31-36)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (31-36)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand3"] = { type = "Prefix", affix = "Clouded", "Gain (37-42)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (37-42)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand4"] = { type = "Prefix", affix = "Darkened", "Gain (43-48)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (43-48)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand5"] = { type = "Prefix", affix = "Malignant", "Gain (49-54)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (49-54)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand6"] = { type = "Prefix", affix = "Vile", "Gain (55-60)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (55-60)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedEssenceDamageasExtraChaos1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (15-20)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedEssenceDamageasExtraChaos2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-33)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedLocalAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Adds (1-3) to (3-5) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-3) to (3-5) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Adds (3-5) to (7-11) Chaos damage", statOrder = { 1291 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (3-5) to (7-11) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Adds (5-11) to (13-19) Chaos damage", statOrder = { 1291 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-11) to (13-19) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Adds (11-19) to (23-29) Chaos damage", statOrder = { 1291 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-19) to (23-29) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Adds (19-23) to (31-37) Chaos damage", statOrder = { 1291 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (31-37) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Adds (23-31) to (41-53) Chaos damage", statOrder = { 1291 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-31) to (41-53) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Adds (31-43) to (59-71) Chaos damage", statOrder = { 1291 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-43) to (59-71) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Adds (43-59) to (73-97) Chaos damage", statOrder = { 1291 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-59) to (73-97) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Adds (59-83) to (101-131) Chaos damage", statOrder = { 1291 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-83) to (101-131) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage10"] = { type = "Prefix", affix = "Pestilent", "Adds (83-101) to (137-157) Chaos damage", statOrder = { 1291 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (83-101) to (137-157) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Impure", "Adds (2-3) to (5-7) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (2-3) to (5-7) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand2"] = { type = "Prefix", affix = "Tainted", "Adds (5-9) to (11-17) Chaos damage", statOrder = { 1291 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-9) to (11-17) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand3"] = { type = "Prefix", affix = "Clouded", "Adds (11-17) to (19-29) Chaos damage", statOrder = { 1291 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-17) to (19-29) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand4"] = { type = "Prefix", affix = "Darkened", "Adds (19-29) to (31-41) Chaos damage", statOrder = { 1291 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-29) to (31-41) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand5"] = { type = "Prefix", affix = "Malignant", "Adds (31-37) to (43-53) Chaos damage", statOrder = { 1291 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-37) to (43-53) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand6"] = { type = "Prefix", affix = "Vile", "Adds (41-53) to (59-79) Chaos damage", statOrder = { 1291 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (41-53) to (59-79) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand7"] = { type = "Prefix", affix = "Twisted", "Adds (59-71) to (83-107) Chaos damage", statOrder = { 1291 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-71) to (83-107) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand8"] = { type = "Prefix", affix = "Malevolent", "Adds (73-97) to (113-149) Chaos damage", statOrder = { 1291 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-97) to (113-149) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand9"] = { type = "Prefix", affix = "Baleful", "Adds (101-131) to (151-197) Chaos damage", statOrder = { 1291 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (101-131) to (151-197) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand10"] = { type = "Prefix", affix = "Pestilent", "Adds (137-157) to (199-239) Chaos damage", statOrder = { 1291 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (137-157) to (199-239) Chaos damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", statOrder = { 911 }, level = 1, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", statOrder = { 911 }, level = 8, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", statOrder = { 911 }, level = 16, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", statOrder = { 911 }, level = 33, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", statOrder = { 911 }, level = 46, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", statOrder = { 911 }, level = 54, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 911 }, level = 60, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", statOrder = { 911 }, level = 65, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", statOrder = { 911 }, level = 75, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage" }, } }, - ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7641 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, - ["ConvertedSoulHybridResistance1"] = { type = "Suffix", affix = "of the Soul", "+(3-41)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-41)% to Chaos Resistance" }, } }, - ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["TimeInfluenceIncreasedDuration1"] = { type = "Suffix", affix = "of Chronomancy", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceIncreasedDuration2"] = { type = "Suffix", affix = "of Chronomancy", "(20-29)% increased Skill Effect Duration", statOrder = { 1645 }, level = 55, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(20-29)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceIncreasedDuration3"] = { type = "Suffix", affix = "of Chronomancy", "(30-40)% increased Skill Effect Duration", statOrder = { 1645 }, level = 78, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(30-40)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, - ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6200 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6200 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6099 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, - ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6099 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, - ["SoulInfluenceIncreasedLifePercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Life", statOrder = { 889 }, level = 65, group = "MaximumLifeIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(1-20)% increased maximum Life" }, } }, - ["SoulInfluenceIncreasedManaPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Mana", statOrder = { 894 }, level = 65, group = "MaximumManaIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(1-20)% increased maximum Mana" }, } }, - ["SoulInfluenceIncreasedSpiritPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased Spirit", statOrder = { 1417 }, level = 65, group = "MaximumSpiritPercentageAllowBaseSpirit", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1416406066] = { "(1-20)% increased Spirit" }, } }, - ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4644 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, - ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { type = "Suffix", affix = "of the Soul", "Hits against you have (10-99)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 65, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (10-99)% reduced Critical Damage Bonus" }, } }, - ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6553 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, - ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5674 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, - ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, - ["SoulInfluenceConvertedChaosAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(5-47)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-47)% to Chaos Resistance" }, } }, - ["SoulInfluenceIncreasedLifeAndMana"] = { type = "Prefix", affix = "Medved's", "+(19-189) to maximum Life", "+(19-189) to maximum Mana", statOrder = { 887, 892 }, level = 65, group = "BaseLifeAndMana", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(19-189) to maximum Mana" }, [3299347043] = { "+(19-189) to maximum Life" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 850, 895 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(1-24) to Spirit", statOrder = { 851, 895 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(1-24) to Spirit", statOrder = { 852, 895 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(1-24) to Spirit", statOrder = { 846, 895 }, level = 65, group = "LocalIncreasedArmourAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(1-24) to Spirit", statOrder = { 848, 895 }, level = 65, group = "LocalIncreasedEvasionAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(1-24) to Spirit", statOrder = { 849, 895 }, level = 65, group = "LocalIncreasedEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(7-57) to maximum Mana", statOrder = { 850, 892 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndManaNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 851, 892 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, - ["SoulInfluenceManaDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 852, 892 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, - ["SoulInfluenceManaDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(7-57) to maximum Mana", statOrder = { 846, 892 }, level = 65, group = "LocalIncreasedArmourAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(7-57) to maximum Mana", statOrder = { 848, 892 }, level = 65, group = "LocalIncreasedEvasionAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(7-57) to maximum Mana", statOrder = { 849, 892 }, level = 65, group = "LocalIncreasedEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9609 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, - ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9609 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10509 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10509 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10509 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10512 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10512 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6914 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, - ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6914 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, - ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4740 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4740 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9622 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, - ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9622 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, - ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceWarcrySpeed1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Speed", statOrder = { 2989 }, level = 45, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-36)% increased Warcry Speed" }, } }, - ["BerserkInfluenceWarcrySpeed2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Speed", statOrder = { 2989 }, level = 75, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(37-50)% increased Warcry Speed" }, } }, - ["BerserkInfluenceWarcryCooldown1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 45, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(23-36)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryCooldown2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 75, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(37-50)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10514 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10514 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryLifeRecovery1"] = { type = "Suffix", affix = "of the Berserker", "Recover (2-3)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 45, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (2-3)% of maximum Life when you use a Warcry" }, } }, - ["BerserkInfluenceWarcryLifeRecovery2"] = { type = "Suffix", affix = "of the Berserker", "Recover (4-5)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 75, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (4-5)% of maximum Life when you use a Warcry" }, } }, - ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4409 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4409 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, - ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, - ["DestructionInfluencePhysicalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(10-15)% increased Explicit Physical Modifier magnitudes", statOrder = { 44 }, level = 65, group = "DestructionInfluencePhysicalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1335369947] = { "(10-15)% increased Explicit Physical Modifier magnitudes" }, } }, - ["DestructionInfluenceFireModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Fire Modifier magnitudes", statOrder = { 40 }, level = 65, group = "DestructionInfluenceFireModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3574578302] = { "(15-20)% increased Explicit Fire Modifier magnitudes" }, } }, - ["DestructionInfluenceLightningModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Lightning Modifier magnitudes", statOrder = { 42 }, level = 65, group = "DestructionInfluenceLightningModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [3624940721] = { "(15-20)% increased Explicit Lightning Modifier magnitudes" }, } }, - ["DestructionInfluenceColdModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Cold Modifier magnitudes", statOrder = { 36 }, level = 65, group = "DestructionInfluenceColdModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3206904707] = { "(15-20)% increased Explicit Cold Modifier magnitudes" }, } }, - ["DestructionInfluenceElementalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 47 }, level = 65, group = "DestructionInfluenceElementalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [231689132] = { "(15-20)% increased Explicit Elemental Damage Modifier magnitudes" }, } }, - ["DestructionInfluenceChaosModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Chaos Modifier magnitudes", statOrder = { 35 }, level = 65, group = "DestructionInfluenceChaosModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3196512240] = { "(15-20)% increased Explicit Chaos Modifier magnitudes" }, } }, - ["DestructionInfluenceManaModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(25-30)% increased Explicit Mana Modifier magnitudes", statOrder = { 43 }, level = 65, group = "DestructionInfluenceManaModifierEffect", weightKey = { "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "crossbow", "warstaff", "talisman", "destruction", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3514984677] = { "(25-30)% increased Explicit Mana Modifier magnitudes" }, } }, - ["DestructionInfluenceSpeedModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(25-30)% increased Explicit Speed Modifier magnitudes", statOrder = { 46 }, level = 65, group = "DestructionInfluenceSpeedModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [363924732] = { "(25-30)% increased Explicit Speed Modifier magnitudes" }, } }, - ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 37 }, level = 65, group = "DestructionInfluenceCriticalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2393315299] = { "(20-30)% increased Explicit Critical Modifier magnitudes" }, } }, - ["DecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-34)% increased Ignite Magnitude", statOrder = { 1077 }, level = 45, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-34)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "(35-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 75, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(35-50)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6068 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, - ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6068 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, - ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% faster", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% faster" }, } }, - ["DecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% slower", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% slower" }, } }, - ["DecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "(30-40)% increased amount of Life Leeched", statOrder = { 1895 }, level = 45, group = "IncreasedLifeLeechAmountGloves", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(30-40)% increased amount of Life Leeched" }, } }, - ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10556 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, - ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10556 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, - ["DecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-21)% increased Curse Magnitudes", statOrder = { 2376 }, level = 45, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-21)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "(22-29)% increased Curse Magnitudes", statOrder = { 2376 }, level = 75, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(22-29)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6533 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, - ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6533 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, - ["DecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "(50-99)% increased Curse Duration", statOrder = { 1540 }, level = 75, group = "BaseCurseDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(50-99)% increased Curse Duration" }, } }, - ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5924 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, - ["MarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Damage", statOrder = { 1738 }, level = 45, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(11-20)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Damage", statOrder = { 1738 }, level = 65, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(21-30)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Damage", statOrder = { 1738 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(15-24)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 45, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(15-24)% increased Effect of your Mark Skills" }, } }, - ["MarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(25-39)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 65, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(25-39)% increased Effect of your Mark Skills" }, } }, - ["MarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Speed", statOrder = { 897 }, level = 45, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-20)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Speed", statOrder = { 897 }, level = 65, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(21-30)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Speed", statOrder = { 897 }, level = 75, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(31-40)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "(16-21)% increased Critical Hit Chance", statOrder = { 976 }, level = 45, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-21)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "(22-27)% increased Critical Hit Chance", statOrder = { 976 }, level = 65, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(22-27)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 976 }, level = 75, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(28-34)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceChanceToPierce1"] = { type = "Suffix", affix = "of the Hunt", "(25-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 45, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(25-50)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "(51-100)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 75, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(51-100)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8822 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8822 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (13-23)% increased Use Speed", statOrder = { 1946 }, level = 45, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (13-23)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (24-39)% increased Use Speed", statOrder = { 1946 }, level = 75, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (24-39)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8823 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8823 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 45, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["MarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 65, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, -} \ No newline at end of file + ["AddedColdDamage1"] = { + "Adds 1 to (2-3) Cold damage to Attacks", + ["affix"] = "Frosted", + ["group"] = "ColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds 1 to (2-3) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage2"] = { + "Adds (3-4) to (5-8) Cold damage to Attacks", + ["affix"] = "Chilled", + ["group"] = "ColdDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (3-4) to (5-8) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage3"] = { + "Adds (5-6) to (9-11) Cold damage to Attacks", + ["affix"] = "Icy", + ["group"] = "ColdDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (5-6) to (9-11) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage4"] = { + "Adds (7-8) to (12-14) Cold damage to Attacks", + ["affix"] = "Frigid", + ["group"] = "ColdDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (7-8) to (12-14) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage5"] = { + "Adds (9-10) to (15-17) Cold damage to Attacks", + ["affix"] = "Freezing", + ["group"] = "ColdDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (9-10) to (15-17) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage6"] = { + "Adds (11-13) to (18-21) Cold damage to Attacks", + ["affix"] = "Frozen", + ["group"] = "ColdDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (11-13) to (18-21) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage7"] = { + "Adds (14-15) to (22-24) Cold damage to Attacks", + ["affix"] = "Glaciated", + ["group"] = "ColdDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (14-15) to (22-24) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage8"] = { + "Adds (16-20) to (25-31) Cold damage to Attacks", + ["affix"] = "Polar", + ["group"] = "ColdDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (16-20) to (25-31) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamage9"] = { + "Adds (21-24) to (32-37) Cold damage to Attacks", + ["affix"] = "Entombing", + ["group"] = "ColdDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (21-24) to (32-37) Cold damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { + "4 to 7 Added Cold Damage per Frenzy Charge", + ["affix"] = "Essences", + ["group"] = "AddedColdDamagePerFrenzyCharge", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 3918, + }, + ["tradeHashes"] = { + [3648858570] = { + "4 to 7 Added Cold Damage per Frenzy Charge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { + "8 to 12 Added Cold Damage per Frenzy Charge", + ["affix"] = "Essences", + ["group"] = "AddedColdDamagePerFrenzyCharge", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 3918, + }, + ["tradeHashes"] = { + [3648858570] = { + "8 to 12 Added Cold Damage per Frenzy Charge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AddedFireDamage1"] = { + "Adds (1-2) to 3 Fire damage to Attacks", + ["affix"] = "Heated", + ["group"] = "FireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (1-2) to 3 Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage2"] = { + "Adds (3-5) to (6-9) Fire damage to Attacks", + ["affix"] = "Smouldering", + ["group"] = "FireDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (3-5) to (6-9) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage3"] = { + "Adds (6-8) to (10-13) Fire damage to Attacks", + ["affix"] = "Smoking", + ["group"] = "FireDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (6-8) to (10-13) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage4"] = { + "Adds (9-11) to (14-17) Fire damage to Attacks", + ["affix"] = "Burning", + ["group"] = "FireDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (9-11) to (14-17) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage5"] = { + "Adds (12-13) to (18-20) Fire damage to Attacks", + ["affix"] = "Flaming", + ["group"] = "FireDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (12-13) to (18-20) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage6"] = { + "Adds (11-16) to (21-26) Fire damage to Attacks", + ["affix"] = "Scorching", + ["group"] = "FireDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (11-16) to (21-26) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage7"] = { + "Adds (13-19) to (27-32) Fire damage to Attacks", + ["affix"] = "Incinerating", + ["group"] = "FireDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (13-19) to (27-32) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage8"] = { + "Adds (20-24) to (33-36) Fire damage to Attacks", + ["affix"] = "Blasting", + ["group"] = "FireDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (20-24) to (33-36) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamage9"] = { + "Adds (25-29) to (37-45) Fire damage to Attacks", + ["affix"] = "Cremating", + ["group"] = "FireDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (25-29) to (37-45) Fire damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { + "Adds 60 to 100 Fire Damage if you've Blocked Recently", + ["affix"] = "of the Essence", + ["group"] = "AddedFireDamageIfBlockedRecently", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 3920, + }, + ["tradeHashes"] = { + [3623716321] = { + "Adds 60 to 100 Fire Damage if you've Blocked Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AddedLightningDamage1"] = { + "Adds 1 to (4-6) Lightning damage to Attacks", + ["affix"] = "Humming", + ["group"] = "LightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (4-6) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage2"] = { + "Adds 1 to (10-15) Lightning damage to Attacks", + ["affix"] = "Buzzing", + ["group"] = "LightningDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (10-15) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage3"] = { + "Adds 1 to (16-22) Lightning damage to Attacks", + ["affix"] = "Snapping", + ["group"] = "LightningDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (16-22) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage4"] = { + "Adds 1 to (23-27) Lightning damage to Attacks", + ["affix"] = "Crackling", + ["group"] = "LightningDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (23-27) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage5"] = { + "Adds 1 to (28-32) Lightning damage to Attacks", + ["affix"] = "Sparking", + ["group"] = "LightningDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (28-32) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage6"] = { + "Adds (1-2) to (33-40) Lightning damage to Attacks", + ["affix"] = "Arcing", + ["group"] = "LightningDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds (1-2) to (33-40) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage7"] = { + "Adds (1-2) to (41-47) Lightning damage to Attacks", + ["affix"] = "Shocking", + ["group"] = "LightningDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds (1-2) to (41-47) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage8"] = { + "Adds (1-3) to (48-59) Lightning damage to Attacks", + ["affix"] = "Discharging", + ["group"] = "LightningDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds (1-3) to (48-59) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedLightningDamage9"] = { + "Adds (1-4) to (60-71) Lightning damage to Attacks", + ["affix"] = "Electrocuting", + ["group"] = "LightningDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds (1-4) to (60-71) Lightning damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage1"] = { + "Adds (1-2) to 3 Physical Damage to Attacks", + ["affix"] = "Glinting", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (1-2) to 3 Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage2"] = { + "Adds (2-3) to (4-6) Physical Damage to Attacks", + ["affix"] = "Burnished", + ["group"] = "PhysicalDamage", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (2-3) to (4-6) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage3"] = { + "Adds (2-4) to (5-8) Physical Damage to Attacks", + ["affix"] = "Polished", + ["group"] = "PhysicalDamage", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (2-4) to (5-8) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage4"] = { + "Adds (4-6) to (8-11) Physical Damage to Attacks", + ["affix"] = "Honed", + ["group"] = "PhysicalDamage", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (4-6) to (8-11) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage5"] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + ["affix"] = "Gleaming", + ["group"] = "PhysicalDamage", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage6"] = { + "Adds (6-10) to (12-17) Physical Damage to Attacks", + ["affix"] = "Annealed", + ["group"] = "PhysicalDamage", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (6-10) to (12-17) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage7"] = { + "Adds (7-11) to (14-20) Physical Damage to Attacks", + ["affix"] = "Razor-sharp", + ["group"] = "PhysicalDamage", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (7-11) to (14-20) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage8"] = { + "Adds (10-15) to (18-26) Physical Damage to Attacks", + ["affix"] = "Tempered", + ["group"] = "PhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (10-15) to (18-26) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AddedPhysicalDamage9"] = { + "Adds (12-19) to (22-32) Physical Damage to Attacks", + ["affix"] = "Flaring", + ["group"] = "PhysicalDamage", + ["level"] = 75, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (12-19) to (22-32) Physical Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AdditionalAmmo1"] = { + "Loads an additional bolt", + ["affix"] = "of Shelling", + ["group"] = "AdditionalAmmo", + ["level"] = 55, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads an additional bolt", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "crossbow", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["AdditionalAmmo2"] = { + "Loads 2 additional bolts", + ["affix"] = "of Bursting", + ["group"] = "AdditionalAmmo", + ["level"] = 82, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads 2 additional bolts", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "crossbow", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["AdditionalArrow1"] = { + "Bow Attacks fire an additional Arrow", + ["affix"] = "of Splintering", + ["group"] = "AdditionalArrows", + ["level"] = 55, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 990, + }, + ["tradeHashes"] = { + [3885405204] = { + "Bow Attacks fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["AdditionalArrow2"] = { + "Bow Attacks fire 2 additional Arrows", + ["affix"] = "of Many", + ["group"] = "AdditionalArrows", + ["level"] = 82, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 990, + }, + ["tradeHashes"] = { + [3885405204] = { + "Bow Attacks fire 2 additional Arrows", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["AdditionalArrowChance1"] = { + "+(25-50)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Surplus", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 46, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(25-50)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalArrowChance2"] = { + "+(75-100)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Splintering", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 55, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(75-100)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalArrowChance3"] = { + "+(125-150)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Shards", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 66, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(125-150)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalArrowChance4"] = { + "+(175-200)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Many", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 82, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(175-200)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalArrowChanceQuiver1"] = { + "+(25-40)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Surplus", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 46, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(25-40)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalArrowChanceQuiver2"] = { + "+(41-60)% Surpassing chance to fire an additional Arrow", + ["affix"] = "of Splintering", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 80, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(41-60)% Surpassing chance to fire an additional Arrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalCharm1"] = { + "+1 Charm Slot", + ["affix"] = "of Symbolism", + ["group"] = "AdditionalCharm", + ["level"] = 23, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 989, + }, + ["tradeHashes"] = { + [2582079000] = { + "+1 Charm Slot", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["AdditionalCharm2"] = { + "+2 Charm Slots", + ["affix"] = "of Inscription", + ["group"] = "AdditionalCharm", + ["level"] = 64, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 989, + }, + ["tradeHashes"] = { + [2582079000] = { + "+2 Charm Slots", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["AdditionalPhysicalDamageReduction1"] = { + "4% additional Physical Damage Reduction", + ["affix"] = "of the Watchman", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 32, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "4% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalPhysicalDamageReduction2"] = { + "5% additional Physical Damage Reduction", + ["affix"] = "of the Custodian", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 41, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "5% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalPhysicalDamageReduction3"] = { + "6% additional Physical Damage Reduction", + ["affix"] = "of the Sentry", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 53, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "6% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalPhysicalDamageReduction4"] = { + "7% additional Physical Damage Reduction", + ["affix"] = "of the Protector", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 66, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "7% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalPhysicalDamageReduction5_"] = { + "8% additional Physical Damage Reduction", + ["affix"] = "of the Conservator", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 77, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "8% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { + "5% additional Physical Damage Reduction during any Flask Effect", + ["affix"] = "of the Essence", + ["group"] = "AdditionalPhysicalDamageReductionDuringFlaskEffect", + ["level"] = 63, + ["modTags"] = { + "flask", + "physical", + }, + ["statOrder"] = { + 3913, + }, + ["tradeHashes"] = { + [2693266036] = { + "5% additional Physical Damage Reduction during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AdditionalShieldBlockChance1"] = { + "+(1-2)% Chance to Block", + ["affix"] = "of the Essence", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 42, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(1-2)% Chance to Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AdditionalShieldBlockChance2"] = { + "+(3-4)% Chance to Block", + ["affix"] = "of the Essence", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 58, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(3-4)% Chance to Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AdditionalShieldBlockChance3"] = { + "+(5-6)% Chance to Block", + ["affix"] = "of the Essence", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 74, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(5-6)% Chance to Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AdditionalShieldBlockChance4"] = { + "+(7-8)% Chance to Block", + ["affix"] = "of the Essence", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 82, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(7-8)% Chance to Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { + "Gain Alchemist's Genius when you use a Flask", + ["affix"] = "of the Essence", + ["group"] = "AlchemistsGeniusOnFlaskUseChance", + ["level"] = 63, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6742, + }, + ["tradeHashes"] = { + [2989883253] = { + "Gain Alchemist's Genius when you use a Flask", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AllAttributes1"] = { + "+(2-4) to all Attributes", + ["affix"] = "of the Clouds", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(2-4) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["AllAttributes2"] = { + "+(5-7) to all Attributes", + ["affix"] = "of the Sky", + ["group"] = "AllAttributes", + ["level"] = 11, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-7) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["AllAttributes3"] = { + "+(8-10) to all Attributes", + ["affix"] = "of the Meteor", + ["group"] = "AllAttributes", + ["level"] = 22, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(8-10) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["AllAttributes4"] = { + "+(11-13) to all Attributes", + ["affix"] = "of the Comet", + ["group"] = "AllAttributes", + ["level"] = 33, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(11-13) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["AllAttributes5"] = { + "+(14-16) to all Attributes", + ["affix"] = "of the Heavens", + ["group"] = "AllAttributes", + ["level"] = 44, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(14-16) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AllAttributes6"] = { + "+(17-18) to all Attributes", + ["affix"] = "of the Galaxy", + ["group"] = "AllAttributes", + ["level"] = 55, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(17-18) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AllAttributes7"] = { + "+(19-20) to all Attributes", + ["affix"] = "of the Universe", + ["group"] = "AllAttributes", + ["level"] = 66, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(19-20) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AllAttributes8"] = { + "+(21-22) to all Attributes", + ["affix"] = "of the Multiverse", + ["group"] = "AllAttributes", + ["level"] = 75, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(21-22) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AllAttributes9_"] = { + "+(23-24) to all Attributes", + ["affix"] = "of the Infinite", + ["group"] = "AllAttributes", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(23-24) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AllResistances1"] = { + "+(3-5)% to all Elemental Resistances", + ["affix"] = "of the Crystal", + ["group"] = "AllResistances", + ["level"] = 12, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(3-5)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AllResistances2"] = { + "+(6-8)% to all Elemental Resistances", + ["affix"] = "of the Prism", + ["group"] = "AllResistances", + ["level"] = 26, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(6-8)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AllResistances3"] = { + "+(9-11)% to all Elemental Resistances", + ["affix"] = "of the Kaleidoscope", + ["group"] = "AllResistances", + ["level"] = 40, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(9-11)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AllResistances4"] = { + "+(12-14)% to all Elemental Resistances", + ["affix"] = "of Variegation", + ["group"] = "AllResistances", + ["level"] = 54, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(12-14)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AllResistances5"] = { + "+(15-16)% to all Elemental Resistances", + ["affix"] = "of the Rainbow", + ["group"] = "AllResistances", + ["level"] = 68, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(15-16)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AllResistances6"] = { + "+(17-18)% to all Elemental Resistances", + ["affix"] = "of the Span", + ["group"] = "AllResistances", + ["level"] = 80, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(17-18)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_int_shield", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["AlloyAccuracyAttackSpeedHybrid1"] = { + "+(327-427) to Accuracy Rating", + "(5-8)% increased Attack Speed", + ["affix"] = "Verisium", + ["group"] = "AccuracyAttackSpeedHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 880, + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(5-8)% increased Attack Speed", + }, + [803737631] = { + "+(327-427) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyAilmentMagnitude1"] = { + "(20-30)% increased Magnitude of Ailments you inflict", + ["affix"] = "of the Stars", + ["group"] = "AilmentEffect", + ["level"] = 45, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(20-30)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyArchonDuration1"] = { + "(35-42)% increased Archon Buff duration", + ["affix"] = "of the Stars", + ["group"] = "ArchonDuration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4344, + }, + ["tradeHashes"] = { + [2158617060] = { + "(35-42)% increased Archon Buff duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyAttackAreaOfEffect1"] = { + "(10-15)% increased Area of Effect for Attacks", + ["affix"] = "of the Stars", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 45, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(10-15)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyAttackSpeedIfMissingWardRecently1"] = { + "(10-15)% increased Attack Speed while missing Runic Ward", + ["affix"] = "of the Stars", + ["group"] = "AttackSpeedWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + }, + ["statOrder"] = { + 4558, + }, + ["tradeHashes"] = { + [325171970] = { + "(10-15)% increased Attack Speed while missing Runic Ward", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyAttackSpeedRing1"] = { + "(7-9)% increased Attack Speed", + ["affix"] = "of the Stars", + ["group"] = "IncreasedAttackSpeedNoCastSpeed", + ["level"] = 45, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(7-9)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { + "(15-20)% increased Physical Damage", + "+(7-10) to all Attributes", + ["affix"] = "of the Stars", + ["group"] = "AttributeIncreasedLocalPhysicalDamageHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 830, + 1145, + }, + ["tradeHashes"] = { + [1509134228] = { + "(15-20)% increased Physical Damage", + }, + [2897413282] = { + "+(7-10) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyBallistaLimit1"] = { + "+2 to maximum number of Summoned Ballista Totems", + ["affix"] = "of the Stars", + ["group"] = "AdditionalBallistaTotem", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 4175, + }, + ["tradeHashes"] = { + [1823942939] = { + "+2 to maximum number of Summoned Ballista Totems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyBellLimit1"] = { + "Tempest Bells are destroyed after an additional (4-5) Hits", + ["affix"] = "of the Stars", + ["group"] = "BellHitLimit", + ["level"] = 65, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4773, + }, + ["tradeHashes"] = { + [3984146263] = { + "Tempest Bells are destroyed after an additional (4-5) Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { + "(39-47)% increased Cast Speed", + "Gain (11-16)% of Elemental Damage as Extra Cold Damage", + ["affix"] = "of the Stars", + ["group"] = "CastSpeedDamageAsExtraColdHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 987, + 9266, + }, + ["tradeHashes"] = { + [1158842087] = { + "Gain (11-16)% of Elemental Damage as Extra Cold Damage", + }, + [2891184298] = { + "(39-47)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { + "(26-31)% increased Cast Speed", + "Gain (7-11)% of Elemental Damage as Extra Cold Damage", + ["affix"] = "of the Stars", + ["group"] = "CastSpeedDamageAsExtraColdHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 987, + 9266, + }, + ["tradeHashes"] = { + [1158842087] = { + "Gain (7-11)% of Elemental Damage as Extra Cold Damage", + }, + [2891184298] = { + "(26-31)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyCastSpeedGloves1"] = { + "(9-12)% increased Cast Speed", + ["affix"] = "of the Stars", + ["group"] = "IncreasedCastSpeedNoAttackSpeed", + ["level"] = 45, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(9-12)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyChanceToChain1"] = { + "(25-35)% chance to Chain an additional time", + ["affix"] = "of the Stars", + ["group"] = "LocalAdditionalChainChance", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 7603, + }, + ["tradeHashes"] = { + [1028592286] = { + "(25-35)% chance to Chain an additional time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { + "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsFireWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 9251, + }, + ["tradeHashes"] = { + [589361270] = { + "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { + "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsFireWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 9251, + }, + ["tradeHashes"] = { + [589361270] = { + "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyDamagingAilmentDuration1"] = { + "(20-25)% increased Duration of Damaging Ailments on Enemies", + ["affix"] = "of the Stars", + ["group"] = "DamagingAilmentDuration", + ["level"] = 45, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 6065, + }, + ["tradeHashes"] = { + [1829102168] = { + "(20-25)% increased Duration of Damaging Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyEffectOfResistanceMods1"] = { + "(20-30)% increased Explicit Resistance Modifier magnitudes", + ["affix"] = "Verisium", + ["group"] = "ArmourEnchantmentHeistResistanceModifierEffect", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 45, + }, + ["tradeHashes"] = { + [1972391381] = { + "(20-30)% increased Explicit Resistance Modifier magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyEffectOfSocketedAugments1"] = { + "(20-30)% increased effect of Socketed Augment Items", + ["affix"] = "of the Stars", + ["group"] = "LocalSocketItemsEffect", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 178, + }, + ["tradeHashes"] = { + [2081918629] = { + "(20-30)% increased effect of Socketed Augment Items", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyElementalPenetration1"] = { + "Damage Penetrates (9-15)% Elemental Resistances", + ["affix"] = "of the Stars", + ["group"] = "ElementalPenetration", + ["level"] = 45, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates (9-15)% Elemental Resistances", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyElementalSkillLimit1"] = { + "+1 to Limit for Elemental Skills", + ["affix"] = "of the Stars", + ["group"] = "ElementalSkillLimit", + ["level"] = 65, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 6309, + }, + ["tradeHashes"] = { + [1713927892] = { + "+1 to Limit for Elemental Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyExposureEffect1"] = { + "(40-50)% increased Exposure Effect", + ["affix"] = "of the Stars", + ["group"] = "ElementalExposureEffect", + ["level"] = 45, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(40-50)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyFlaskChargesPerSecond1"] = { + "Flasks gain (0.75-1) charges per Second", + ["affix"] = "of the Stars", + ["group"] = "AllFlaskChargeGeneration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6888, + }, + ["tradeHashes"] = { + [731781020] = { + "Flasks gain (0.75-1) charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyLightningDamageIgnites1"] = { + "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["affix"] = "of the Stars", + ["group"] = "LightningDamageCanIgnite", + ["level"] = 65, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 7546, + }, + ["tradeHashes"] = { + [3121133045] = { + "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyLocalWardIncreasePercent1"] = { + "(24-30)% increased Runic Ward", + ["affix"] = "Verisium", + ["group"] = "LocalRunicWardIncreasePercent", + ["level"] = 25, + ["modTags"] = { + }, + ["statOrder"] = { + 855, + }, + ["tradeHashes"] = { + [830161081] = { + "(24-30)% increased Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyLocalWardIncreasePercent2"] = { + "(31-40)% increased Runic Ward", + ["affix"] = "Verisium", + ["group"] = "LocalRunicWardIncreasePercent", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 855, + }, + ["tradeHashes"] = { + [830161081] = { + "(31-40)% increased Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyManaCostEfficiency1"] = { + "(18-29)% increased Mana Cost Efficiency", + ["affix"] = "Verisium", + ["group"] = "ManaCostEfficiency", + ["level"] = 25, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(18-29)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { + "+(110-114) to maximum Mana", + "Allies in your Presence have (4-8)% increased Attack Speed", + ["affix"] = "Verisium", + ["group"] = "ManaNearbyAllyAttackSpeedHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 892, + 918, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(110-114) to maximum Mana", + }, + [1998951374] = { + "Allies in your Presence have (4-8)% increased Attack Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMarkEffect"] = { + "(40-50)% increased Effect of your Mark Skills", + ["affix"] = "of the Stars", + ["group"] = "MarkEffect", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "(40-50)% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMaximumElementalInfusions1"] = { + "+1 to maximum number of Elemental Infusions", + ["affix"] = "of the Stars", + ["group"] = "MaximumElementalInfusion", + ["level"] = 45, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 8875, + }, + ["tradeHashes"] = { + [4097212302] = { + "+1 to maximum number of Elemental Infusions", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMaximumRunicWard1"] = { + "+(37-49) to maximum Runic Ward", + ["affix"] = "Verisium", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 13, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+(37-49) to maximum Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMaximumRunicWardPercent1"] = { + "(6-10)% increased maximum Runic Ward", + ["affix"] = "Verisium", + ["group"] = "GlobalRunicWardPercent", + ["level"] = 13, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 891, + }, + ["tradeHashes"] = { + [4273473110] = { + "(6-10)% increased maximum Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMaximumRunicWardWeapon1"] = { + "+(51-74) to maximum Runic Ward", + ["affix"] = "of the Stars", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 25, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+(51-74) to maximum Runic Ward", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMeleeStrikeRange1"] = { + "+(8-10) to Weapon Range", + ["affix"] = "of the Stars", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 65, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+(8-10) to Weapon Range", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyMinionDamagingAilmentMagnitude1"] = { + "Minions have (40-49)% increased Magnitude of Damaging Ailments", + ["affix"] = "of the Stars", + ["group"] = "MinionDamagingAilments", + ["level"] = 45, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9012, + }, + ["tradeHashes"] = { + [953593695] = { + "Minions have (40-49)% increased Magnitude of Damaging Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyNaturesArchon1"] = { + "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", + ["affix"] = "of the Stars", + ["group"] = "ChanceToGainNaturesArchon", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 5399, + }, + ["tradeHashes"] = { + [3518449420] = { + "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyPresenceAreaOfEffect1"] = { + "(35-50)% increased Presence Area of Effect", + ["affix"] = "of the Stars", + ["group"] = "PresenceRadius", + ["level"] = 25, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(35-50)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyPuppeteerStacks1"] = { + "+(4-5) maximum stacks of Puppet Master", + ["affix"] = "of the Stars", + ["group"] = "MaximumPuppeteerStacks", + ["level"] = 65, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 8839, + }, + ["tradeHashes"] = { + [1484026495] = { + "+(4-5) maximum stacks of Puppet Master", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyRecoverRunicWardOnCharmUse1"] = { + "Recover (32-45) Runic Ward when a Charm is used", + ["affix"] = "Verisium", + ["group"] = "RecoverRunicWardOnCharmUse", + ["level"] = 25, + ["modTags"] = { + }, + ["statOrder"] = { + 9683, + }, + ["tradeHashes"] = { + [554145967] = { + "Recover (32-45) Runic Ward when a Charm is used", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyReducedSlowPotency1"] = { + "(15-30)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "of the Stars", + ["group"] = "SlowPotency", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(15-30)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyRemnantPickupRange1"] = { + "Remnants can be collected from (35-50)% further away", + ["affix"] = "of the Stars", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 25, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (35-50)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyRetainGlory1"] = { + "(60-75)% chance for Skills to retain 40% of Glory on use", + ["affix"] = "of the Stars", + ["group"] = "ChanceToRefund40PercentGlory", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 5570, + }, + ["tradeHashes"] = { + [2749595652] = { + "(60-75)% chance for Skills to retain 40% of Glory on use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyRunicWardOnBlock1"] = { + "Recover (10-15) Runic Ward when you Block", + ["affix"] = "of the Stars", + ["group"] = "WardOnBlock", + ["level"] = 13, + ["modTags"] = { + }, + ["statOrder"] = { + 9682, + }, + ["tradeHashes"] = { + [1568848828] = { + "Recover (10-15) Runic Ward when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyRunicWardRechargeRate1"] = { + "(15-20)% increased Runic Ward Regeneration Rate", + ["affix"] = "Verisium", + ["group"] = "WardRegenerationRate", + ["level"] = 13, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10520, + }, + ["tradeHashes"] = { + [2392260628] = { + "(15-20)% increased Runic Ward Regeneration Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloySkillEffectDuration1"] = { + "(15-19)% increased Skill Effect Duration", + ["affix"] = "of the Stars", + ["group"] = "SkillEffectDuration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(15-19)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloySpellAreaOfEffect1"] = { + "Spell Skills have (10-15)% increased Area of Effect", + ["affix"] = "of the Stars", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 45, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (10-15)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloySpellLevelManaHybrid1"] = { + "+(142-188) to maximum Mana", + "+1 to Level of all Spell Skills", + ["affix"] = "Verisium", + ["group"] = "ManaSpellLevelHybrid", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + 950, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(142-188) to maximum Mana", + }, + [124131830] = { + "+1 to Level of all Spell Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloySpiritOnBoots1"] = { + "+(10-15) to Spirit", + ["affix"] = "of the Stars", + ["group"] = "BaseSpirit", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(10-15) to Spirit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { + "(8-12)% increased Spirit", + "(50-60)% increased Presence Area of Effect", + ["affix"] = "of the Stars", + ["group"] = "SpiritPresenceAreaOfEffectHybrid", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(50-60)% increased Presence Area of Effect", + }, + [3984865854] = { + "(8-12)% increased Spirit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyTemporaryMinionSkillLimit1"] = { + "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", + ["affix"] = "of the Stars", + ["group"] = "TemporaryMinionLimit", + ["level"] = 25, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10247, + }, + ["tradeHashes"] = { + [1058934731] = { + "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AlloyTotemPlacementSpeed1"] = { + "(30-49)% increased Totem Placement speed", + ["affix"] = "of the Stars", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 45, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(30-49)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ArcaneSurgeEffect1"] = { + "(12-18)% increased effect of Arcane Surge on you", + ["affix"] = "Eager", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 24, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(12-18)% increased effect of Arcane Surge on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ArcaneSurgeEffect2"] = { + "(19-25)% increased effect of Arcane Surge on you", + ["affix"] = "Enthusiastic", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 47, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(19-25)% increased effect of Arcane Surge on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ArcaneSurgeEffect3"] = { + "(26-32)% increased effect of Arcane Surge on you", + ["affix"] = "Spirited", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 61, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(26-32)% increased effect of Arcane Surge on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ArcaneSurgeEffect4"] = { + "(33-39)% increased effect of Arcane Surge on you", + ["affix"] = "Passionate", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 79, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(33-39)% increased effect of Arcane Surge on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["AreaOfEffectEssence1"] = { + "25% increased Area of Effect", + ["affix"] = "of the Essence", + ["group"] = "AreaOfEffect", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [280731498] = { + "25% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ArmourAppliesToElementalDamage1"] = { + "+(14-19)% of Armour also applies to Elemental Damage", + ["affix"] = "of Covering", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(14-19)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArmourAppliesToElementalDamage2"] = { + "+(20-25)% of Armour also applies to Elemental Damage", + ["affix"] = "of Sheathing", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(20-25)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArmourAppliesToElementalDamage3"] = { + "+(26-31)% of Armour also applies to Elemental Damage", + ["affix"] = "of Lining", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 36, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(26-31)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArmourAppliesToElementalDamage4"] = { + "+(32-37)% of Armour also applies to Elemental Damage", + ["affix"] = "of Padding", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 48, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(32-37)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArmourAppliesToElementalDamage5"] = { + "+(38-43)% of Armour also applies to Elemental Damage", + ["affix"] = "of Furring", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 66, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(38-43)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArmourAppliesToElementalDamage6"] = { + "+(44-50)% of Armour also applies to Elemental Damage", + ["affix"] = "of Thermokryptance", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 81, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(44-50)% of Armour also applies to Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_dex_int_armour", + "str_int_armour", + "str_dex_armour", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ArrowPierceChance1"] = { + "(12-14)% chance to Pierce an Enemy", + ["affix"] = "of Piercing", + ["group"] = "ChanceToPierce", + ["level"] = 11, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(12-14)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ArrowPierceChance2"] = { + "(15-17)% chance to Pierce an Enemy", + ["affix"] = "of Drilling", + ["group"] = "ChanceToPierce", + ["level"] = 26, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(15-17)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ArrowPierceChance3"] = { + "(18-20)% chance to Pierce an Enemy", + ["affix"] = "of Puncturing", + ["group"] = "ChanceToPierce", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(18-20)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ArrowPierceChance4"] = { + "(21-23)% chance to Pierce an Enemy", + ["affix"] = "of Skewering", + ["group"] = "ChanceToPierce", + ["level"] = 61, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(21-23)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ArrowPierceChance5"] = { + "(24-26)% chance to Pierce an Enemy", + ["affix"] = "of Penetrating", + ["group"] = "ChanceToPierce", + ["level"] = 77, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(24-26)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackAndCastSpeed1"] = { + "(3-4)% increased Attack and Cast Speed", + ["affix"] = "of Zeal", + ["group"] = "AttackAndCastSpeed", + ["level"] = 15, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(3-4)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackAndCastSpeed2"] = { + "(5-6)% increased Attack and Cast Speed", + ["affix"] = "of Fervour", + ["group"] = "AttackAndCastSpeed", + ["level"] = 45, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-6)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackAndCastSpeed3"] = { + "(7-8)% increased Attack and Cast Speed", + ["affix"] = "of Haste", + ["group"] = "AttackAndCastSpeed", + ["level"] = 70, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(7-8)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { + "10% increased Attack and Cast Speed during any Flask Effect", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedDuringFlaskEffect", + ["level"] = 63, + ["modTags"] = { + "caster_speed", + "flask", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 3919, + }, + ["tradeHashes"] = { + [614350381] = { + "10% increased Attack and Cast Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackCriticalStrikeChance1"] = { + "(10-14)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Menace", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 5, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(10-14)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeChance2"] = { + "(15-19)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Havoc", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 20, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(15-19)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeChance3"] = { + "(20-24)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Disaster", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 30, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(20-24)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeChance4"] = { + "(25-29)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Calamity", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 44, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(25-29)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeChance5"] = { + "(30-34)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Ruin", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 58, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(30-34)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeChance6"] = { + "(35-38)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Unmaking", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 72, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(35-38)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier1"] = { + "(10-14)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Ire", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(10-14)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier2"] = { + "(15-19)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Anger", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(15-19)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier3"] = { + "(20-24)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Rage", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 31, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(20-24)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier4"] = { + "(25-29)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Fury", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 45, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(25-29)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier5"] = { + "(30-34)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Ferocity", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(30-34)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackCriticalStrikeMultiplier6"] = { + "(35-39)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Destruction", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 74, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(35-39)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["AttackDamagePercent1"] = { + "(4-8)% increased Attack Damage", + ["affix"] = "Bully's", + ["group"] = "AttackDamage", + ["level"] = 4, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(4-8)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackDamagePercent2"] = { + "(9-16)% increased Attack Damage", + ["affix"] = "Thug's", + ["group"] = "AttackDamage", + ["level"] = 15, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(9-16)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackDamagePercent3"] = { + "(17-24)% increased Attack Damage", + ["affix"] = "Brute's", + ["group"] = "AttackDamage", + ["level"] = 30, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(17-24)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackDamagePercent4"] = { + "(25-29)% increased Attack Damage", + ["affix"] = "Assailant's", + ["group"] = "AttackDamage", + ["level"] = 60, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(25-29)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackDamagePercent5"] = { + "(30-34)% increased Attack Damage", + ["affix"] = "Predator's", + ["group"] = "AttackDamage", + ["level"] = 81, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(30-34)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackerTakesDamage1"] = { + "(1-2) to (3-4) Physical Thorns damage", + ["affix"] = "Thorny", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(1-2) to (3-4) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage2"] = { + "(5-7) to (7-10) Physical Thorns damage", + ["affix"] = "Spiny", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 10, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(5-7) to (7-10) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage3"] = { + "(11-16) to (17-23) Physical Thorns damage", + ["affix"] = "Barbed", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 19, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(11-16) to (17-23) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage4"] = { + "(24-35) to (36-53) Physical Thorns damage", + ["affix"] = "Pointed", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 38, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(24-35) to (36-53) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage5"] = { + "(40-60) to (61-92) Physical Thorns damage", + ["affix"] = "Spiked", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 48, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(40-60) to (61-92) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage6"] = { + "(64-97) to (98-145) Physical Thorns damage", + ["affix"] = "Edged", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 63, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(64-97) to (98-145) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamage7"] = { + "(101-151) to (152-220) Physical Thorns damage", + ["affix"] = "Jagged", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 74, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(101-151) to (152-220) Physical Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AttackerTakesDamageEssence5"] = { + "Reflects (51-100) Physical Damage to Melee Attackers", + ["affix"] = "Essences", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 58, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (51-100) Physical Damage to Melee Attackers", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackerTakesDamageEssence6"] = { + "Reflects (101-150) Physical Damage to Melee Attackers", + ["affix"] = "Essences", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 74, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (101-150) Physical Damage to Melee Attackers", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AttackerTakesDamageEssence7"] = { + "Reflects (151-200) Physical Damage to Melee Attackers", + ["affix"] = "Essences", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 82, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (151-200) Physical Damage to Melee Attackers", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate1"] = { + "(5-10)% increased Flask Life Recovery rate", + ["affix"] = "Restoring", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(5-10)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate2"] = { + "(11-16)% increased Flask Life Recovery rate", + ["affix"] = "Recovering", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 16, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(11-16)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate3_"] = { + "(17-22)% increased Flask Life Recovery rate", + ["affix"] = "Renewing", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 33, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(17-22)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate4"] = { + "(23-28)% increased Flask Life Recovery rate", + ["affix"] = "Refreshing", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 46, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(23-28)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate5"] = { + "(29-34)% increased Flask Life Recovery rate", + ["affix"] = "Rejuvenating", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 60, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(29-34)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRate6"] = { + "(35-40)% increased Flask Life Recovery rate", + ["affix"] = "Regenerating", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 75, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(35-40)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { + "(8-11)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(8-11)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { + "(12-15)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 10, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(12-15)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { + "(16-19)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 26, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(16-19)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { + "(20-23)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 42, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(20-23)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { + "(24-27)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 58, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(24-27)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { + "(28-31)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 74, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(28-31)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { + "(32-35)% increased Flask Life Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 82, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(32-35)% increased Flask Life Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskManaRecoveryRate1_"] = { + "(5-10)% increased Flask Mana Recovery rate", + ["affix"] = "Affecting", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 5, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(5-10)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRate2"] = { + "(11-16)% increased Flask Mana Recovery rate", + ["affix"] = "Stirring", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 11, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(11-16)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRate3_"] = { + "(17-22)% increased Flask Mana Recovery rate", + ["affix"] = "Heartening", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 26, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(17-22)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRate4__"] = { + "(23-28)% increased Flask Mana Recovery rate", + ["affix"] = "Exciting", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 36, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(23-28)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRate5"] = { + "(29-34)% increased Flask Mana Recovery rate", + ["affix"] = "Galvanizing", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 54, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(29-34)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRate6"] = { + "(35-40)% increased Flask Mana Recovery rate", + ["affix"] = "Inspiring", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 63, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(35-40)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltFlaskManaRecoveryRateEssence1"] = { + "(11-15)% increased Flask Mana Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 58, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(11-15)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskManaRecoveryRateEssence2"] = { + "(16-20)% increased Flask Mana Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 74, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(16-20)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltFlaskManaRecoveryRateEssence3"] = { + "(21-25)% increased Flask Mana Recovery rate", + ["affix"] = "Essences", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 82, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(21-25)% increased Flask Mana Recovery rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BeltIncreasedCharmChargesGained1"] = { + "(5-10)% increased Charm Charges gained", + ["affix"] = "of Plenty", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 2, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(5-10)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmChargesGained2"] = { + "(11-16)% increased Charm Charges gained", + ["affix"] = "of Surplus", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 16, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(11-16)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmChargesGained3"] = { + "(17-22)% increased Charm Charges gained", + ["affix"] = "of Fertility", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 32, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(17-22)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmChargesGained4"] = { + "(23-28)% increased Charm Charges gained", + ["affix"] = "of Bounty", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 48, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(23-28)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmChargesGained5"] = { + "(29-34)% increased Charm Charges gained", + ["affix"] = "of the Harvest", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 70, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(29-34)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmChargesGained6"] = { + "(35-40)% increased Charm Charges gained", + ["affix"] = "of Abundance", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 81, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(35-40)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmDuration1"] = { + "(4-9)% increased Charm Effect Duration", + ["affix"] = "Conservative", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 8, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(4-9)% increased Charm Effect Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmDuration2"] = { + "(10-15)% increased Charm Effect Duration", + ["affix"] = "Transformative", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 33, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(10-15)% increased Charm Effect Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmDuration3"] = { + "(16-21)% increased Charm Effect Duration", + ["affix"] = "Progressive", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 46, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(16-21)% increased Charm Effect Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmDuration4"] = { + "(22-27)% increased Charm Effect Duration", + ["affix"] = "Innovative", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 60, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(22-27)% increased Charm Effect Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedCharmDuration5"] = { + "(28-33)% increased Charm Effect Duration", + ["affix"] = "Revolutionary", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 75, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(28-33)% increased Charm Effect Duration", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained1"] = { + "(5-10)% increased Flask Charges gained", + ["affix"] = "of Refilling", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 2, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(5-10)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained2"] = { + "(11-16)% increased Flask Charges gained", + ["affix"] = "of Restocking", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 16, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(11-16)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained3_____"] = { + "(17-22)% increased Flask Charges gained", + ["affix"] = "of Replenishing", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 32, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(17-22)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained4"] = { + "(23-28)% increased Flask Charges gained", + ["affix"] = "of Pouring", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 48, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(23-28)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained5_"] = { + "(29-34)% increased Flask Charges gained", + ["affix"] = "of Brimming", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 70, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(29-34)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltIncreasedFlaskChargesGained6"] = { + "(35-40)% increased Flask Charges gained", + ["affix"] = "of Overflowing", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 81, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(35-40)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed1"] = { + "(8-10)% reduced Charm Charges used", + ["affix"] = "of Austerity", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 3, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(8-10)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed2"] = { + "(11-13)% reduced Charm Charges used", + ["affix"] = "of Frugality", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 18, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(11-13)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed3"] = { + "(14-16)% reduced Charm Charges used", + ["affix"] = "of Temperance", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 33, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(14-16)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed4"] = { + "(17-19)% reduced Charm Charges used", + ["affix"] = "of Restraint", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 50, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(17-19)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed5"] = { + "(20-22)% reduced Charm Charges used", + ["affix"] = "of Economy", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 72, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(20-22)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedCharmChargesUsed6"] = { + "(23-25)% reduced Charm Charges used", + ["affix"] = "of Scarcity", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 81, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(23-25)% reduced Charm Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed1"] = { + "(8-10)% reduced Flask Charges used", + ["affix"] = "of Sipping", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 3, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(8-10)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed2"] = { + "(11-13)% reduced Flask Charges used", + ["affix"] = "of Imbibing", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 18, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(11-13)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed3"] = { + "(14-16)% reduced Flask Charges used", + ["affix"] = "of Relishing", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 33, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(14-16)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed4"] = { + "(17-19)% reduced Flask Charges used", + ["affix"] = "of Savouring", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 50, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(17-19)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed5"] = { + "(20-22)% reduced Flask Charges used", + ["affix"] = "of Reveling", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 72, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(20-22)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BeltReducedFlaskChargesUsed6"] = { + "(23-25)% reduced Flask Charges used", + ["affix"] = "of Nourishing", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 81, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(23-25)% reduced Flask Charges used", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceAdditionalCombo1"] = { + "(20-39)% chance to build an additional Combo on Hit", + ["affix"] = "of the Berserker", + ["group"] = "ChanceToGenerateAdditionalCombo", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4185, + }, + ["tradeHashes"] = { + [4258524206] = { + "(20-39)% chance to build an additional Combo on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceAdditionalCombo2"] = { + "(40-60)% chance to build an additional Combo on Hit", + ["affix"] = "of the Berserker", + ["group"] = "ChanceToGenerateAdditionalCombo", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 4185, + }, + ["tradeHashes"] = { + [4258524206] = { + "(40-60)% chance to build an additional Combo on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceArmourBreakDuration1"] = { + "(50-99)% increased Armour Break Duration", + ["affix"] = "of the Berserker", + ["group"] = "ArmourBreakDuration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4409, + }, + ["tradeHashes"] = { + [2637470878] = { + "(50-99)% increased Armour Break Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceArmourBreakDuration2"] = { + "(100-150)% increased Armour Break Duration", + ["affix"] = "of the Berserker", + ["group"] = "ArmourBreakDuration", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 4409, + }, + ["tradeHashes"] = { + [2637470878] = { + "(100-150)% increased Armour Break Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceArmourBreakMagnitude1"] = { + "(15-24)% increased effect of Fully Broken Armour", + ["affix"] = "Vorana's", + ["group"] = "ArmourBreakEffect", + ["level"] = 45, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 5236, + }, + ["tradeHashes"] = { + [1879206848] = { + "(15-24)% increased effect of Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceArmourBreakMagnitude2"] = { + "(25-39)% increased effect of Fully Broken Armour", + ["affix"] = "Vorana's", + ["group"] = "ArmourBreakEffect", + ["level"] = 65, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 5236, + }, + ["tradeHashes"] = { + [1879206848] = { + "(25-39)% increased effect of Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceArmourBreakMagnitude3"] = { + "(40-60)% increased effect of Fully Broken Armour", + ["affix"] = "Vorana's", + ["group"] = "ArmourBreakEffect", + ["level"] = 75, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 5236, + }, + ["tradeHashes"] = { + [1879206848] = { + "(40-60)% increased effect of Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceDamageWithWarcries1"] = { + "(20-34)% increased Damage with Warcries", + ["affix"] = "Vorana's", + ["group"] = "WarcryDamage", + ["level"] = 45, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10509, + }, + ["tradeHashes"] = { + [1594812856] = { + "(20-34)% increased Damage with Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceDamageWithWarcries2"] = { + "(35-49)% increased Damage with Warcries", + ["affix"] = "Vorana's", + ["group"] = "WarcryDamage", + ["level"] = 65, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10509, + }, + ["tradeHashes"] = { + [1594812856] = { + "(35-49)% increased Damage with Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceDamageWithWarcries3"] = { + "(50-75)% increased Damage with Warcries", + ["affix"] = "Vorana's", + ["group"] = "WarcryDamage", + ["level"] = 75, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10509, + }, + ["tradeHashes"] = { + [1594812856] = { + "(50-75)% increased Damage with Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceGloryGeneration1"] = { + "(20-49)% increased Glory generation", + ["affix"] = "Vorana's", + ["group"] = "GloryGeneration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6914, + }, + ["tradeHashes"] = { + [3143918757] = { + "(20-49)% increased Glory generation", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceGloryGeneration2"] = { + "(50-85)% increased Glory generation", + ["affix"] = "Vorana's", + ["group"] = "GloryGeneration", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 6914, + }, + ["tradeHashes"] = { + [3143918757] = { + "(50-85)% increased Glory generation", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceMaximumRage1"] = { + "+(4-7) to Maximum Rage", + ["affix"] = "Vorana's", + ["group"] = "MaximumRage", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(4-7) to Maximum Rage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceMaximumRage2"] = { + "+(8-12) to Maximum Rage", + ["affix"] = "Vorana's", + ["group"] = "MaximumRage", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(8-12) to Maximum Rage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluencePowerWithWarcries1"] = { + "(20-34)% increased total Power counted by Warcries", + ["affix"] = "Vorana's", + ["group"] = "WarcryPower", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 10512, + }, + ["tradeHashes"] = { + [2663359259] = { + "(20-34)% increased total Power counted by Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluencePowerWithWarcries2"] = { + "(35-55)% increased total Power counted by Warcries", + ["affix"] = "Vorana's", + ["group"] = "WarcryPower", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 10512, + }, + ["tradeHashes"] = { + [2663359259] = { + "(35-55)% increased total Power counted by Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageCostEfficiency1"] = { + "(20-34)% increased Rage Cost Efficiency", + ["affix"] = "Vorana's", + ["group"] = "RageCostEfficiency", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4740, + }, + ["tradeHashes"] = { + [2416650879] = { + "(20-34)% increased Rage Cost Efficiency", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageCostEfficiency2"] = { + "(35-60)% increased Rage Cost Efficiency", + ["affix"] = "Vorana's", + ["group"] = "RageCostEfficiency", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 4740, + }, + ["tradeHashes"] = { + [2416650879] = { + "(35-60)% increased Rage Cost Efficiency", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageLossDelay1"] = { + "Inherent Rage loss starts 1 second later", + ["affix"] = "of the Berserker", + ["group"] = "RageLossDelay", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 9622, + }, + ["tradeHashes"] = { + [3987691524] = { + "Inherent Rage loss starts 1 second later", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageLossDelay2"] = { + "Inherent Rage loss starts (3-5) seconds later", + ["affix"] = "of the Berserker", + ["group"] = "RageLossDelay", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 9622, + }, + ["tradeHashes"] = { + [3987691524] = { + "Inherent Rage loss starts (3-5) seconds later", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageWhenHit1"] = { + "Gain (4-5) Rage when Hit by an Enemy", + ["affix"] = "of the Berserker", + ["group"] = "GainRageWhenHit", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [3292710273] = { + "Gain (4-5) Rage when Hit by an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceRageWhenHit2"] = { + "Gain (6-10) Rage when Hit by an Enemy", + ["affix"] = "of the Berserker", + ["group"] = "GainRageWhenHit", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [3292710273] = { + "Gain (6-10) Rage when Hit by an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryArea1"] = { + "Warcry Skills have (15-29)% increased Area of Effect", + ["affix"] = "of the Berserker", + ["group"] = "WarcryAreaOfEffect", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 10514, + }, + ["tradeHashes"] = { + [2567751411] = { + "Warcry Skills have (15-29)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryArea2"] = { + "Warcry Skills have (30-50)% increased Area of Effect", + ["affix"] = "of the Berserker", + ["group"] = "WarcryAreaOfEffect", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 10514, + }, + ["tradeHashes"] = { + [2567751411] = { + "Warcry Skills have (30-50)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryCooldown1"] = { + "(23-36)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of the Berserker", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [4159248054] = { + "(23-36)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryCooldown2"] = { + "(37-50)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of the Berserker", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [4159248054] = { + "(37-50)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryLifeRecovery1"] = { + "Recover (2-3)% of maximum Life when you use a Warcry", + ["affix"] = "of the Berserker", + ["group"] = "RecoverLifeOnWarcry", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 2919, + }, + ["tradeHashes"] = { + [1040141381] = { + "Recover (2-3)% of maximum Life when you use a Warcry", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcryLifeRecovery2"] = { + "Recover (4-5)% of maximum Life when you use a Warcry", + ["affix"] = "of the Berserker", + ["group"] = "RecoverLifeOnWarcry", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 2919, + }, + ["tradeHashes"] = { + [1040141381] = { + "Recover (4-5)% of maximum Life when you use a Warcry", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcrySpeed1"] = { + "(23-36)% increased Warcry Speed", + ["affix"] = "of the Berserker", + ["group"] = "WarcrySpeed", + ["level"] = 45, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1316278494] = { + "(23-36)% increased Warcry Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BerserkInfluenceWarcrySpeed2"] = { + "(37-50)% increased Warcry Speed", + ["affix"] = "of the Berserker", + ["group"] = "WarcrySpeed", + ["level"] = 75, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1316278494] = { + "(37-50)% increased Warcry Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "berserking", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["BleedDuration1"] = { + "(8-12)% increased Bleeding Duration", + ["affix"] = "", + ["group"] = "BleedDuration", + ["level"] = 30, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "(8-12)% increased Bleeding Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["BleedDuration2"] = { + "(13-18)% increased Bleeding Duration", + ["affix"] = "", + ["group"] = "BleedDuration", + ["level"] = 60, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "(13-18)% increased Bleeding Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CannotBePoisonedEssence1"] = { + "Cannot be Poisoned", + ["affix"] = "of the Essence", + ["group"] = "CannotBePoisoned", + ["level"] = 63, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3073, + }, + ["tradeHashes"] = { + [3835551335] = { + "Cannot be Poisoned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CastSpeedDuringManaFlaskEffect1"] = { + "(8-10)% increased Cast Speed during any Flask Effect", + ["affix"] = "of Hurrying", + ["group"] = "CastSpeedDuringManaFlaskEffect", + ["level"] = 22, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 5332, + }, + ["tradeHashes"] = { + [145581225] = { + "(8-10)% increased Cast Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CastSpeedDuringManaFlaskEffect2"] = { + "(11-13)% increased Cast Speed during any Flask Effect", + ["affix"] = "of Quickening", + ["group"] = "CastSpeedDuringManaFlaskEffect", + ["level"] = 41, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 5332, + }, + ["tradeHashes"] = { + [145581225] = { + "(11-13)% increased Cast Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CastSpeedDuringManaFlaskEffect3"] = { + "(14-16)% increased Cast Speed during any Flask Effect", + ["affix"] = "of Hastening", + ["group"] = "CastSpeedDuringManaFlaskEffect", + ["level"] = 59, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 5332, + }, + ["tradeHashes"] = { + [145581225] = { + "(14-16)% increased Cast Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CastSpeedDuringManaFlaskEffect4"] = { + "(17-19)% increased Cast Speed during any Flask Effect", + ["affix"] = "of Accelerating", + ["group"] = "CastSpeedDuringManaFlaskEffect", + ["level"] = 76, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 5332, + }, + ["tradeHashes"] = { + [145581225] = { + "(17-19)% increased Cast Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CastSpeedJewellery1"] = { + "(9-12)% increased Cast Speed", + ["affix"] = "of Talent", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(9-12)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CastSpeedJewellery2"] = { + "(13-15)% increased Cast Speed", + ["affix"] = "of Nimbleness", + ["group"] = "IncreasedCastSpeed", + ["level"] = 18, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(13-15)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CastSpeedJewellery3"] = { + "(16-18)% increased Cast Speed", + ["affix"] = "of Expertise", + ["group"] = "IncreasedCastSpeed", + ["level"] = 35, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(16-18)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CastSpeedJewellery4"] = { + "(19-21)% increased Cast Speed", + ["affix"] = "of Sortilege", + ["group"] = "IncreasedCastSpeed", + ["level"] = 51, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(19-21)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CastSpeedJewellery5"] = { + "(22-24)% increased Cast Speed", + ["affix"] = "of Legerdemain", + ["group"] = "IncreasedCastSpeed", + ["level"] = 60, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(22-24)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CastSpeedJewellery6"] = { + "(25-28)% increased Cast Speed", + ["affix"] = "of Prestidigitation", + ["group"] = "IncreasedCastSpeed", + ["level"] = 66, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(25-28)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilments1"] = { + "(16-20)% chance to Avoid Elemental Ailments", + ["affix"] = "of Stoicism", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 23, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(16-20)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilments2"] = { + "(21-25)% chance to Avoid Elemental Ailments", + ["affix"] = "of Resolve", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 41, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(21-25)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilments3__"] = { + "(26-30)% chance to Avoid Elemental Ailments", + ["affix"] = "of Fortitude", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 57, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(26-30)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilments4"] = { + "(31-35)% chance to Avoid Elemental Ailments", + ["affix"] = "of Will", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 73, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(31-35)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { + "(16-20)% chance to Avoid Elemental Ailments", + ["affix"] = "of the Essence", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 42, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(16-20)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { + "(21-25)% chance to Avoid Elemental Ailments", + ["affix"] = "of the Essence", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 58, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(21-25)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { + "(26-30)% chance to Avoid Elemental Ailments", + ["affix"] = "of the Essence", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 74, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(26-30)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { + "(31-35)% chance to Avoid Elemental Ailments", + ["affix"] = "of the Essence", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 82, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(31-35)% chance to Avoid Elemental Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidFreezeEssence3"] = { + "(39-42)% chance to Avoid being Frozen", + ["affix"] = "of the Essence", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(39-42)% chance to Avoid being Frozen", + }, + [3483999943] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidFreezeEssence4"] = { + "(43-46)% chance to Avoid being Frozen", + ["affix"] = "of the Essence", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(43-46)% chance to Avoid being Frozen", + }, + [3483999943] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidFreezeEssence5"] = { + "(47-50)% chance to Avoid being Frozen", + ["affix"] = "of the Essence", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(47-50)% chance to Avoid being Frozen", + }, + [3483999943] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidFreezeEssence6"] = { + "(51-55)% chance to Avoid being Frozen", + ["affix"] = "of the Essence", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(51-55)% chance to Avoid being Frozen", + }, + [3483999943] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidFreezeEssence7"] = { + "(56-60)% chance to Avoid being Frozen", + ["affix"] = "of the Essence", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(56-60)% chance to Avoid being Frozen", + }, + [3483999943] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidIgniteEssence4"] = { + "(43-46)% chance to Avoid being Ignited", + ["affix"] = "of the Essence", + ["group"] = "AvoidIgnite", + ["level"] = 42, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(43-46)% chance to Avoid being Ignited", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidIgniteEssence5"] = { + "(47-50)% chance to Avoid being Ignited", + ["affix"] = "of the Essence", + ["group"] = "AvoidIgnite", + ["level"] = 58, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(47-50)% chance to Avoid being Ignited", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidIgniteEssence6"] = { + "(51-55)% chance to Avoid being Ignited", + ["affix"] = "of the Essence", + ["group"] = "AvoidIgnite", + ["level"] = 74, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(51-55)% chance to Avoid being Ignited", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidIgniteEssence7_"] = { + "(56-60)% chance to Avoid being Ignited", + ["affix"] = "of the Essence", + ["group"] = "AvoidIgnite", + ["level"] = 82, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(56-60)% chance to Avoid being Ignited", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence2_"] = { + "(35-38)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 10, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(35-38)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence3"] = { + "(39-42)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 26, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(39-42)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence4"] = { + "(43-46)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 42, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(43-46)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence5"] = { + "(47-50)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 58, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(47-50)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence6"] = { + "(51-55)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 74, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(51-55)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToAvoidShockEssence7"] = { + "(56-60)% chance to Avoid being Shocked", + ["affix"] = "of the Essence", + ["group"] = "ReducedShockChance", + ["level"] = 82, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(56-60)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks1_"] = { + "+(1-2)% chance to Block Projectile Attack Damage", + ["affix"] = "of Deflection", + ["group"] = "BlockVsProjectiles", + ["level"] = 8, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(1-2)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks2"] = { + "+(3-4)% chance to Block Projectile Attack Damage", + ["affix"] = "of Protection", + ["group"] = "BlockVsProjectiles", + ["level"] = 19, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(3-4)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks3"] = { + "+(5-6)% chance to Block Projectile Attack Damage", + ["affix"] = "of Cover", + ["group"] = "BlockVsProjectiles", + ["level"] = 30, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(5-6)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks4"] = { + "+(7-8)% chance to Block Projectile Attack Damage", + ["affix"] = "of Asylum", + ["group"] = "BlockVsProjectiles", + ["level"] = 55, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(7-8)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks5_"] = { + "+(9-10)% chance to Block Projectile Attack Damage", + ["affix"] = "of Refuge", + ["group"] = "BlockVsProjectiles", + ["level"] = 70, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(9-10)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToBlockProjectileAttacks6"] = { + "+(11-12)% chance to Block Projectile Attack Damage", + ["affix"] = "of Sanctuary", + ["group"] = "BlockVsProjectiles", + ["level"] = 81, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+(11-12)% chance to Block Projectile Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { + "10% chance to Recover 10% of maximum Mana when you use a Skill", + ["affix"] = "of the Essence", + ["group"] = "ChanceToRecoverManaOnSkillUse", + ["level"] = 63, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3164, + }, + ["tradeHashes"] = { + [308309328] = { + "10% chance to Recover 10% of maximum Mana when you use a Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChaosDamageOverTimeTakenEssence1"] = { + "25% reduced Chaos Damage taken over time", + ["affix"] = "of the Essence", + ["group"] = "ChaosDamageOverTimeTaken", + ["level"] = 63, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1695, + }, + ["tradeHashes"] = { + [3762784591] = { + "25% reduced Chaos Damage taken over time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChaosDamagePercent1"] = { + "(3-7)% increased Chaos Damage", + ["affix"] = "Impure", + ["group"] = "IncreasedChaosDamage", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(3-7)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePercent2"] = { + "(8-12)% increased Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "IncreasedChaosDamage", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(8-12)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePercent3"] = { + "(13-17)% increased Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "IncreasedChaosDamage", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(13-17)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePercent4"] = { + "(18-22)% increased Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "IncreasedChaosDamage", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(18-22)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePercent5"] = { + "(23-26)% increased Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "IncreasedChaosDamage", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(23-26)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePercent6"] = { + "(27-30)% increased Chaos Damage", + ["affix"] = "Vile", + ["group"] = "IncreasedChaosDamage", + ["level"] = 75, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(27-30)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon1"] = { + "(50-68)% increased Chaos Damage", + ["affix"] = "Impure", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(50-68)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon2"] = { + "(69-88)% increased Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(69-88)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon3"] = { + "(89-108)% increased Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(89-108)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon4"] = { + "(109-128)% increased Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(109-128)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon5"] = { + "(129-148)% increased Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(129-148)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon6"] = { + "(149-188)% increased Chaos Damage", + ["affix"] = "Vile", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(149-188)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon7"] = { + "(189-208)% increased Chaos Damage", + ["affix"] = "Twisted", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(189-208)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnTwoHandWeapon8"] = { + "(209-238)% increased Chaos Damage", + ["affix"] = "Malevolent", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(209-238)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon1"] = { + "(25-34)% increased Chaos Damage", + ["affix"] = "Impure", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(25-34)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon2"] = { + "(35-44)% increased Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(35-44)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon3"] = { + "(45-54)% increased Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(45-54)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon4"] = { + "(55-64)% increased Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(55-64)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon5"] = { + "(65-74)% increased Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(65-74)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon6"] = { + "(75-89)% increased Chaos Damage", + ["affix"] = "Vile", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(75-89)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon7"] = { + "(90-104)% increased Chaos Damage", + ["affix"] = "Twisted", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(90-104)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["ChaosDamagePrefixOnWeapon8"] = { + "(105-119)% increased Chaos Damage", + ["affix"] = "Malevolent", + ["group"] = "ChaosDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [736967255] = { + "(105-119)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { + "+(11-15)% to Chaos Damage over Time Multiplier", + ["affix"] = "of the Elder", + ["group"] = "ChaosDamageOverTimeMultiplier", + ["level"] = 68, + ["modTags"] = { + "chaos_damage", + "dot_multi", + "damage", + "chaos", + }, + ["statOrder"] = { + 1205, + }, + ["tradeHashes"] = { + [4055307827] = { + "+(11-15)% to Chaos Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_elder", + "amulet_elder", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { + "+(16-20)% to Chaos Damage over Time Multiplier", + ["affix"] = "of the Elder", + ["group"] = "ChaosDamageOverTimeMultiplier", + ["level"] = 80, + ["modTags"] = { + "chaos_damage", + "dot_multi", + "damage", + "chaos", + }, + ["statOrder"] = { + 1205, + }, + ["tradeHashes"] = { + [4055307827] = { + "+(16-20)% to Chaos Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_elder", + "amulet_elder", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ChaosResist1"] = { + "+(4-7)% to Chaos Resistance", + ["affix"] = "of the Lost", + ["group"] = "ChaosResistance", + ["level"] = 16, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(4-7)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResist2"] = { + "+(8-11)% to Chaos Resistance", + ["affix"] = "of Banishment", + ["group"] = "ChaosResistance", + ["level"] = 30, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(8-11)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResist3"] = { + "+(12-15)% to Chaos Resistance", + ["affix"] = "of Eviction", + ["group"] = "ChaosResistance", + ["level"] = 44, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(12-15)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResist4"] = { + "+(16-19)% to Chaos Resistance", + ["affix"] = "of Expulsion", + ["group"] = "ChaosResistance", + ["level"] = 56, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(16-19)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResist5"] = { + "+(20-23)% to Chaos Resistance", + ["affix"] = "of Exile", + ["group"] = "ChaosResistance", + ["level"] = 68, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(20-23)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResist6"] = { + "+(24-27)% to Chaos Resistance", + ["affix"] = "of Bameth", + ["group"] = "ChaosResistance", + ["level"] = 81, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(24-27)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { + "+50% to Chaos Resistance during any Flask Effect", + ["affix"] = "of the Essence", + ["group"] = "ChaosResistanceWhileUsingFlask", + ["level"] = 63, + ["modTags"] = { + "chaos_resistance", + "flask", + "chaos", + "resistance", + }, + ["statOrder"] = { + 3008, + }, + ["tradeHashes"] = { + [392168009] = { + "+50% to Chaos Resistance during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdDamageOverTimeMultiplierUber1"] = { + "+(11-15)% to Cold Damage over Time Multiplier", + ["affix"] = "of Shaping", + ["group"] = "ColdDamageOverTimeMultiplier", + ["level"] = 68, + ["modTags"] = { + "dot_multi", + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1202, + }, + ["tradeHashes"] = { + [1950806024] = { + "+(11-15)% to Cold Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_shaper", + "amulet_shaper", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ColdDamageOverTimeMultiplierUber2_"] = { + "+(16-20)% to Cold Damage over Time Multiplier", + ["affix"] = "of Shaping", + ["group"] = "ColdDamageOverTimeMultiplier", + ["level"] = 80, + ["modTags"] = { + "dot_multi", + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1202, + }, + ["tradeHashes"] = { + [1950806024] = { + "+(16-20)% to Cold Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_shaper", + "amulet_shaper", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ColdDamagePercent1"] = { + "(3-7)% increased Cold Damage", + ["affix"] = "Bitter", + ["group"] = "ColdDamagePercentage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(3-7)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePercent2"] = { + "(8-12)% increased Cold Damage", + ["affix"] = "Biting", + ["group"] = "ColdDamagePercentage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(8-12)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePercent3"] = { + "(13-17)% increased Cold Damage", + ["affix"] = "Alpine", + ["group"] = "ColdDamagePercentage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(13-17)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePercent4"] = { + "(18-22)% increased Cold Damage", + ["affix"] = "Snowy", + ["group"] = "ColdDamagePercentage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(18-22)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePercent5"] = { + "(23-26)% increased Cold Damage", + ["affix"] = "Hailing", + ["group"] = "ColdDamagePercentage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(23-26)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePercent6"] = { + "(27-30)% increased Cold Damage", + ["affix"] = "Crystalline", + ["group"] = "ColdDamagePercentage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(27-30)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { + "(50-68)% increased Cold Damage", + ["affix"] = "Bitter", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(50-68)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { + "(69-88)% increased Cold Damage", + ["affix"] = "Biting", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(69-88)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { + "(89-108)% increased Cold Damage", + ["affix"] = "Alpine", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(89-108)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { + "(109-128)% increased Cold Damage", + ["affix"] = "Snowy", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(109-128)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { + "(129-148)% increased Cold Damage", + ["affix"] = "Hailing", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(129-148)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { + "(149-188)% increased Cold Damage", + ["affix"] = "Arctic", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(149-188)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { + "(189-208)% increased Cold Damage", + ["affix"] = "Crystalline", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(189-208)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { + "(209-238)% increased Cold Damage", + ["affix"] = "Cryomancer's", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(209-238)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon1"] = { + "(25-34)% increased Cold Damage", + ["affix"] = "Bitter", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(25-34)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon2"] = { + "(35-44)% increased Cold Damage", + ["affix"] = "Biting", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(35-44)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon3_"] = { + "(45-54)% increased Cold Damage", + ["affix"] = "Alpine", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(45-54)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon4"] = { + "(55-64)% increased Cold Damage", + ["affix"] = "Snowy", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(55-64)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon5_"] = { + "(65-74)% increased Cold Damage", + ["affix"] = "Hailing", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(65-74)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon6"] = { + "(75-89)% increased Cold Damage", + ["affix"] = "Arctic", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(75-89)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon7"] = { + "(90-104)% increased Cold Damage", + ["affix"] = "Crystalline", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(90-104)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["ColdDamagePrefixOnWeapon8"] = { + "(105-119)% increased Cold Damage", + ["affix"] = "Cryomancer's", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(105-119)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["ColdResist1"] = { + "+(6-10)% to Cold Resistance", + ["affix"] = "of the Seal", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(6-10)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist2"] = { + "+(11-15)% to Cold Resistance", + ["affix"] = "of the Penguin", + ["group"] = "ColdResistance", + ["level"] = 14, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(11-15)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist3"] = { + "+(16-20)% to Cold Resistance", + ["affix"] = "of the Narwhal", + ["group"] = "ColdResistance", + ["level"] = 26, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(16-20)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist4"] = { + "+(21-25)% to Cold Resistance", + ["affix"] = "of the Yeti", + ["group"] = "ColdResistance", + ["level"] = 38, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(21-25)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist5"] = { + "+(26-30)% to Cold Resistance", + ["affix"] = "of the Walrus", + ["group"] = "ColdResistance", + ["level"] = 50, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(26-30)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist6"] = { + "+(31-35)% to Cold Resistance", + ["affix"] = "of the Polar Bear", + ["group"] = "ColdResistance", + ["level"] = 60, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(31-35)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist7"] = { + "+(36-40)% to Cold Resistance", + ["affix"] = "of the Ice", + ["group"] = "ColdResistance", + ["level"] = 71, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(36-40)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResist8"] = { + "+(41-45)% to Cold Resistance", + ["affix"] = "of Haast", + ["group"] = "ColdResistance", + ["level"] = 82, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(41-45)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ColdResistancePenetrationEssence1"] = { + "Damage Penetrates 3% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 10, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 3% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationEssence2"] = { + "Damage Penetrates 4% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 26, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 4% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationEssence3"] = { + "Damage Penetrates 5% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 5% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationEssence4_"] = { + "Damage Penetrates 6% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 6% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationEssence5"] = { + "Damage Penetrates 7% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 7% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationEssence6_"] = { + "Damage Penetrates 8% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 8% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence1"] = { + "Damage Penetrates (5-6)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 10, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (5-6)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence2"] = { + "Damage Penetrates (7-8)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 26, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (7-8)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence3"] = { + "Damage Penetrates (9-10)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (9-10)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence4"] = { + "Damage Penetrates (11-12)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (11-12)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence5"] = { + "Damage Penetrates (13-14)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (13-14)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { + "Damage Penetrates (15-16)% Cold Resistance", + ["affix"] = "Essences", + ["group"] = "ColdResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (15-16)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ColdResistancePenetrationWarbands"] = { + "Damage Penetrates (6-10)% Cold Resistance", + ["affix"] = "Deceiver's", + ["group"] = "ColdResistancePenetration", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (6-10)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAbyssChaosPenetration"] = { + "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", + ["affix"] = "Abyssal", + ["group"] = "LocalChaosPenetration", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 7641, + }, + ["tradeHashes"] = { + [3762412853] = { + "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { + "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsChaosWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 9240, + }, + ["tradeHashes"] = { + [4011431182] = { + "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { + "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsChaosWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 9240, + }, + ["tradeHashes"] = { + [4011431182] = { + "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { + "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsColdWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 9244, + }, + ["tradeHashes"] = { + [2888350852] = { + "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { + "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsColdWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 9244, + }, + ["tradeHashes"] = { + [2888350852] = { + "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { + "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsLightningWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 9256, + }, + ["tradeHashes"] = { + [457920946] = { + "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { + "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", + ["affix"] = "Verisium", + ["group"] = "DamageGainedAsLightningWhileMissingRunicWard", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 9256, + }, + ["tradeHashes"] = { + [457920946] = { + "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedEssenceDamageasExtraChaos1"] = { + "Gain (15-20)% of Damage as Extra Chaos Damage", + ["affix"] = "Essences", + ["group"] = "DamageGainedAsChaos", + ["level"] = 72, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (15-20)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedEssenceDamageasExtraChaos2H"] = { + "Gain (25-33)% of Damage as Extra Chaos Damage", + ["affix"] = "Essences", + ["group"] = "DamageGainedAsChaos", + ["level"] = 72, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (25-33)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage1"] = { + "Adds (1-3) to (3-5) Chaos damage", + ["affix"] = "Impure", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (1-3) to (3-5) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage10"] = { + "Adds (83-101) to (137-157) Chaos damage", + ["affix"] = "Pestilent", + ["group"] = "LocalChaosDamage", + ["level"] = 81, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (83-101) to (137-157) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage2"] = { + "Adds (3-5) to (7-11) Chaos damage", + ["affix"] = "Tainted", + ["group"] = "LocalChaosDamage", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (3-5) to (7-11) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage3"] = { + "Adds (5-11) to (13-19) Chaos damage", + ["affix"] = "Clouded", + ["group"] = "LocalChaosDamage", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (5-11) to (13-19) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage4"] = { + "Adds (11-19) to (23-29) Chaos damage", + ["affix"] = "Darkened", + ["group"] = "LocalChaosDamage", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (11-19) to (23-29) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage5"] = { + "Adds (19-23) to (31-37) Chaos damage", + ["affix"] = "Malignant", + ["group"] = "LocalChaosDamage", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (19-23) to (31-37) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage6"] = { + "Adds (23-31) to (41-53) Chaos damage", + ["affix"] = "Vile", + ["group"] = "LocalChaosDamage", + ["level"] = 54, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (23-31) to (41-53) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage7"] = { + "Adds (31-43) to (59-71) Chaos damage", + ["affix"] = "Twisted", + ["group"] = "LocalChaosDamage", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (31-43) to (59-71) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage8"] = { + "Adds (43-59) to (73-97) Chaos damage", + ["affix"] = "Malevolent", + ["group"] = "LocalChaosDamage", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (43-59) to (73-97) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamage9"] = { + "Adds (59-83) to (101-131) Chaos damage", + ["affix"] = "Baleful", + ["group"] = "LocalChaosDamage", + ["level"] = 75, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (59-83) to (101-131) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand1"] = { + "Adds (2-3) to (5-7) Chaos damage", + ["affix"] = "Impure", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (2-3) to (5-7) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand10"] = { + "Adds (137-157) to (199-239) Chaos damage", + ["affix"] = "Pestilent", + ["group"] = "LocalChaosDamage", + ["level"] = 81, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (137-157) to (199-239) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand2"] = { + "Adds (5-9) to (11-17) Chaos damage", + ["affix"] = "Tainted", + ["group"] = "LocalChaosDamage", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (5-9) to (11-17) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand3"] = { + "Adds (11-17) to (19-29) Chaos damage", + ["affix"] = "Clouded", + ["group"] = "LocalChaosDamage", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (11-17) to (19-29) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand4"] = { + "Adds (19-29) to (31-41) Chaos damage", + ["affix"] = "Darkened", + ["group"] = "LocalChaosDamage", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (19-29) to (31-41) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand5"] = { + "Adds (31-37) to (43-53) Chaos damage", + ["affix"] = "Malignant", + ["group"] = "LocalChaosDamage", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (31-37) to (43-53) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand6"] = { + "Adds (41-53) to (59-79) Chaos damage", + ["affix"] = "Vile", + ["group"] = "LocalChaosDamage", + ["level"] = 54, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (41-53) to (59-79) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand7"] = { + "Adds (59-71) to (83-107) Chaos damage", + ["affix"] = "Twisted", + ["group"] = "LocalChaosDamage", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (59-71) to (83-107) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand8"] = { + "Adds (73-97) to (113-149) Chaos damage", + ["affix"] = "Malevolent", + ["group"] = "LocalChaosDamage", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (73-97) to (113-149) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedLocalAddedChaosDamageTwoHand9"] = { + "Adds (101-131) to (151-197) Chaos damage", + ["affix"] = "Baleful", + ["group"] = "LocalChaosDamage", + ["level"] = 75, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (101-131) to (151-197) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage1"] = { + "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", + ["affix"] = "Impure", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage2"] = { + "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 8, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage3"] = { + "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage4"] = { + "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage5"] = { + "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage6"] = { + "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", + ["affix"] = "Vile", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 54, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage7"] = { + "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", + ["affix"] = "Twisted", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage8"] = { + "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", + ["affix"] = "Malevolent", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedNearbyAlliesAddedChaosDamage9"] = { + "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", + ["affix"] = "Baleful", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 75, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSoulHybridResistance1"] = { + "+(3-41)% to Chaos Resistance", + ["affix"] = "of the Soul", + ["group"] = "ChaosResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(3-41)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos1"] = { + "Gain (13-15)% of Damage as Extra Chaos Damage", + ["affix"] = "Impure", + ["group"] = "DamageGainedAsChaos", + ["level"] = 5, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (13-15)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos2"] = { + "Gain (16-18)% of Damage as Extra Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "DamageGainedAsChaos", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (16-18)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos3"] = { + "Gain (19-21)% of Damage as Extra Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "DamageGainedAsChaos", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (19-21)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos4"] = { + "Gain (22-24)% of Damage as Extra Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "DamageGainedAsChaos", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (22-24)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos5"] = { + "Gain (25-27)% of Damage as Extra Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "DamageGainedAsChaos", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (25-27)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaos6"] = { + "Gain (28-30)% of Damage as Extra Chaos Damage", + ["affix"] = "Vile", + ["group"] = "DamageGainedAsChaos", + ["level"] = 80, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (28-30)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand1"] = { + "Gain (26-30)% of Damage as Extra Chaos Damage", + ["affix"] = "Impure", + ["group"] = "DamageGainedAsChaos", + ["level"] = 5, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (26-30)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand2"] = { + "Gain (31-36)% of Damage as Extra Chaos Damage", + ["affix"] = "Tainted", + ["group"] = "DamageGainedAsChaos", + ["level"] = 16, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (31-36)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand3"] = { + "Gain (37-42)% of Damage as Extra Chaos Damage", + ["affix"] = "Clouded", + ["group"] = "DamageGainedAsChaos", + ["level"] = 33, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (37-42)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand4"] = { + "Gain (43-48)% of Damage as Extra Chaos Damage", + ["affix"] = "Darkened", + ["group"] = "DamageGainedAsChaos", + ["level"] = 46, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (43-48)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand5"] = { + "Gain (49-54)% of Damage as Extra Chaos Damage", + ["affix"] = "Malignant", + ["group"] = "DamageGainedAsChaos", + ["level"] = 60, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (49-54)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ConvertedSpellDamageGainedAsChaosTwoHand6"] = { + "Gain (55-60)% of Damage as Extra Chaos Damage", + ["affix"] = "Vile", + ["group"] = "DamageGainedAsChaos", + ["level"] = 80, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (55-60)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CriticalMultiplier1"] = { + "(10-14)% increased Critical Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(10-14)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalMultiplier2"] = { + "(15-19)% increased Critical Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(15-19)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalMultiplier3"] = { + "(20-24)% increased Critical Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 31, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(20-24)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalMultiplier4"] = { + "(25-29)% increased Critical Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 45, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(25-29)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalMultiplier5"] = { + "(30-34)% increased Critical Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(30-34)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalMultiplier6"] = { + "(35-39)% increased Critical Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 74, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(35-39)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CriticalStrikeChance1"] = { + "(10-14)% increased Critical Hit Chance", + ["affix"] = "of Menace", + ["group"] = "CriticalStrikeChance", + ["level"] = 5, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(10-14)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalStrikeChance2"] = { + "(15-19)% increased Critical Hit Chance", + ["affix"] = "of Havoc", + ["group"] = "CriticalStrikeChance", + ["level"] = 20, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(15-19)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalStrikeChance3"] = { + "(20-24)% increased Critical Hit Chance", + ["affix"] = "of Disaster", + ["group"] = "CriticalStrikeChance", + ["level"] = 30, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-24)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalStrikeChance4"] = { + "(25-29)% increased Critical Hit Chance", + ["affix"] = "of Calamity", + ["group"] = "CriticalStrikeChance", + ["level"] = 44, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(25-29)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalStrikeChance5"] = { + "(30-34)% increased Critical Hit Chance", + ["affix"] = "of Ruin", + ["group"] = "CriticalStrikeChance", + ["level"] = 58, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-34)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CriticalStrikeChance6"] = { + "(35-38)% increased Critical Hit Chance", + ["affix"] = "of Unmaking", + ["group"] = "CriticalStrikeChance", + ["level"] = 72, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(35-38)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CrushOnHitChanceEssence1"] = { + "(15-25)% chance to Crush on Hit", + ["affix"] = "of the Essence", + ["group"] = "CrushOnHitChance", + ["level"] = 63, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 5496, + }, + ["tradeHashes"] = { + [2228892313] = { + "(15-25)% chance to Crush on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["CurseEffectiveness1"] = { + "(2-3)% increased Curse Magnitudes", + ["affix"] = "Hexing", + ["group"] = "CurseEffectiveness", + ["level"] = 31, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(2-3)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CurseEffectiveness2"] = { + "(4-6)% increased Curse Magnitudes", + ["affix"] = "Condemning", + ["group"] = "CurseEffectiveness", + ["level"] = 47, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(4-6)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CurseEffectiveness3"] = { + "(7-9)% increased Curse Magnitudes", + ["affix"] = "Maledicting", + ["group"] = "CurseEffectiveness", + ["level"] = 61, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(7-9)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CurseEffectiveness4"] = { + "(10-12)% increased Curse Magnitudes", + ["affix"] = "Dooming", + ["group"] = "CurseEffectiveness", + ["level"] = 77, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(10-12)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["DamageRemovedFromManaBeforeLife1"] = { + "(4-6)% of Damage is taken from Mana before Life", + ["affix"] = "Taxing", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 23, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(4-6)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["DamageRemovedFromManaBeforeLife2"] = { + "(7-9)% of Damage is taken from Mana before Life", + ["affix"] = "Draining", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 39, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(7-9)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["DamageRemovedFromManaBeforeLife3"] = { + "(10-12)% of Damage is taken from Mana before Life", + ["affix"] = "Exhausting", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 52, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(10-12)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["DamageRemovedFromManaBeforeLife4"] = { + "(13-15)% of Damage is taken from Mana before Life", + ["affix"] = "Enervating", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 77, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(13-15)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["DamageTakenGainedAsLife1___"] = { + "(10-12)% of Damage taken Recouped as Life", + ["affix"] = "of Mending", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 30, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-12)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsLife2"] = { + "(13-15)% of Damage taken Recouped as Life", + ["affix"] = "of Bandaging", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 44, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(13-15)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsLife3"] = { + "(16-18)% of Damage taken Recouped as Life", + ["affix"] = "of Stitching", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 56, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(16-18)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsLife4_"] = { + "(19-21)% of Damage taken Recouped as Life", + ["affix"] = "of Suturing", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 68, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(19-21)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsLife5"] = { + "(22-24)% of Damage taken Recouped as Life", + ["affix"] = "of Fleshbinding", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 79, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(22-24)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsMana1"] = { + "(10-12)% of Damage taken Recouped as Mana", + ["affix"] = "of Reprieve", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 31, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(10-12)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsMana2"] = { + "(13-15)% of Damage taken Recouped as Mana", + ["affix"] = "of Solace", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 45, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(13-15)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsMana3"] = { + "(16-18)% of Damage taken Recouped as Mana", + ["affix"] = "of Tranquility", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 57, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(16-18)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsMana4"] = { + "(19-21)% of Damage taken Recouped as Mana", + ["affix"] = "of Serenity", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 69, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(19-21)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageTakenGainedAsMana5"] = { + "(22-24)% of Damage taken Recouped as Mana", + ["affix"] = "of Zen", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 80, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(22-24)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows1"] = { + "(11-20)% increased Damage with Bow Skills", + ["affix"] = "Acute", + ["group"] = "DamageWithBowSkills", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(11-20)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows2"] = { + "(21-30)% increased Damage with Bow Skills", + ["affix"] = "Trenchant", + ["group"] = "DamageWithBowSkills", + ["level"] = 16, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(21-30)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows3"] = { + "(31-36)% increased Damage with Bow Skills", + ["affix"] = "Perforating", + ["group"] = "DamageWithBowSkills", + ["level"] = 33, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(31-36)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows4"] = { + "(37-42)% increased Damage with Bow Skills", + ["affix"] = "Incisive", + ["group"] = "DamageWithBowSkills", + ["level"] = 46, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(37-42)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows5"] = { + "(43-50)% increased Damage with Bow Skills", + ["affix"] = "Lacerating", + ["group"] = "DamageWithBowSkills", + ["level"] = 60, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(43-50)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DamageWithBows6"] = { + "(51-59)% increased Damage with Bow Skills", + ["affix"] = "Impaling", + ["group"] = "DamageWithBowSkills", + ["level"] = 81, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 879, + }, + ["tradeHashes"] = { + [1241625305] = { + "(51-59)% increased Damage with Bow Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceAilmentDuration1"] = { + "(10-19)% increased Duration of Damaging Ailments on Enemies", + ["affix"] = "of Decay", + ["group"] = "DamagingAilmentDuration", + ["level"] = 45, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 6065, + }, + ["tradeHashes"] = { + [1829102168] = { + "(10-19)% increased Duration of Damaging Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceAilmentDuration2"] = { + "(20-30)% increased Duration of Damaging Ailments on Enemies", + ["affix"] = "of Decay", + ["group"] = "DamagingAilmentDuration", + ["level"] = 75, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 6065, + }, + ["tradeHashes"] = { + [1829102168] = { + "(20-30)% increased Duration of Damaging Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceAilmentMagnitude1"] = { + "(20-25)% increased Magnitude of Ailments you inflict", + ["affix"] = "Katla's", + ["group"] = "AilmentEffect", + ["level"] = 45, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(20-25)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceAilmentMagnitude2"] = { + "(26-32)% increased Magnitude of Ailments you inflict", + ["affix"] = "Katla's", + ["group"] = "AilmentEffect", + ["level"] = 75, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(26-32)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceBleedMagnitude1"] = { + "(20-29)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Katla's", + ["group"] = "BleedDotMultiplier", + ["level"] = 45, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(20-29)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceBleedMagnitude2"] = { + "(30-42)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Katla's", + ["group"] = "BleedDotMultiplier", + ["level"] = 75, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(30-42)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceCurseMagnitude1"] = { + "(15-21)% increased Curse Magnitudes", + ["affix"] = "of Decay", + ["group"] = "CurseEffectiveness", + ["level"] = 45, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(15-21)% increased Curse Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceCurseMagnitude2"] = { + "(22-29)% increased Curse Magnitudes", + ["affix"] = "of Decay", + ["group"] = "CurseEffectiveness", + ["level"] = 75, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(22-29)% increased Curse Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceExposureEffect1"] = { + "(20-34)% increased Exposure Effect", + ["affix"] = "of Decay", + ["group"] = "ElementalExposureEffect", + ["level"] = 45, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(20-34)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceExposureEffect2"] = { + "(35-50)% increased Exposure Effect", + ["affix"] = "of Decay", + ["group"] = "ElementalExposureEffect", + ["level"] = 75, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(35-50)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceFasterCurseActivation1"] = { + "(20-30)% faster Curse Activation", + ["affix"] = "of Decay", + ["group"] = "CurseDelay", + ["level"] = 75, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5924, + }, + ["tradeHashes"] = { + [1104825894] = { + "(20-30)% faster Curse Activation", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceFasterDamagingAilments1"] = { + "Damaging Ailments deal damage (8-13)% faster", + ["affix"] = "Katla's", + ["group"] = "FasterAilmentDamage", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [538241406] = { + "Damaging Ailments deal damage (8-13)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceFasterDamagingAilments2"] = { + "Damaging Ailments deal damage (14-20)% faster", + ["affix"] = "Katla's", + ["group"] = "FasterAilmentDamage", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [538241406] = { + "Damaging Ailments deal damage (14-20)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceFasterLeech1"] = { + "Leech (8-12)% of Physical Attack Damage as Life", + "Leech Life (15-25)% faster", + ["affix"] = "of Decay", + ["group"] = "LeechAndLeechSpeed", + ["level"] = 45, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (15-25)% faster", + }, + [2557965901] = { + "Leech (8-12)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceIgniteMagnitude1"] = { + "(20-34)% increased Ignite Magnitude", + ["affix"] = "Katla's", + ["group"] = "IgniteEffect", + ["level"] = 45, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(20-34)% increased Ignite Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceIgniteMagnitude2"] = { + "(35-50)% increased Ignite Magnitude", + ["affix"] = "Katla's", + ["group"] = "IgniteEffect", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(35-50)% increased Ignite Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceIncreasedCurseDuration1"] = { + "(50-99)% increased Curse Duration", + ["affix"] = "of Decay", + ["group"] = "BaseCurseDuration", + ["level"] = 75, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1540, + }, + ["tradeHashes"] = { + [3824372849] = { + "(50-99)% increased Curse Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceLeechAmount1"] = { + "(30-40)% increased amount of Life Leeched", + ["affix"] = "of Decay", + ["group"] = "IncreasedLifeLeechAmountGloves", + ["level"] = 45, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(30-40)% increased amount of Life Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluencePoisonMagnitude1"] = { + "(20-29)% increased Magnitude of Poison you inflict", + ["affix"] = "Katla's", + ["group"] = "PoisonEffect", + ["level"] = 45, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(20-29)% increased Magnitude of Poison you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluencePoisonMagnitude2"] = { + "(30-42)% increased Magnitude of Poison you inflict", + ["affix"] = "Katla's", + ["group"] = "PoisonEffect", + ["level"] = 75, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(30-42)% increased Magnitude of Poison you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceSlowerLeech1"] = { + "Leech (8-12)% of Physical Attack Damage as Life", + "Leech Life (15-25)% slower", + ["affix"] = "of Decay", + ["group"] = "LeechAndLeechSpeed", + ["level"] = 45, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (15-25)% slower", + }, + [2557965901] = { + "Leech (8-12)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceWitherMagnitude1"] = { + "(15-24)% increased Withered Magnitude", + ["affix"] = "of Decay", + ["group"] = "WitheredEffect", + ["level"] = 45, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 10556, + }, + ["tradeHashes"] = { + [3973629633] = { + "(15-24)% increased Withered Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayInfluenceWitherMagnitude2"] = { + "(25-35)% increased Withered Magnitude", + ["affix"] = "of Decay", + ["group"] = "WitheredEffect", + ["level"] = 75, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 10556, + }, + ["tradeHashes"] = { + [3973629633] = { + "(25-35)% increased Withered Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "decay", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DecayOnHitEssence1"] = { + "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + ["affix"] = "of the Essence", + ["group"] = "DecayOnHit", + ["level"] = 63, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 6084, + }, + ["tradeHashes"] = { + [3322709337] = { + "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["DestructionInfluenceChaosModifierEffect"] = { + "(15-20)% increased Explicit Chaos Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceChaosModifierEffect", + ["level"] = 65, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 35, + }, + ["tradeHashes"] = { + [3196512240] = { + "(15-20)% increased Explicit Chaos Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceColdModifierEffect"] = { + "(15-20)% increased Explicit Cold Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceColdModifierEffect", + ["level"] = 65, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 36, + }, + ["tradeHashes"] = { + [3206904707] = { + "(15-20)% increased Explicit Cold Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceCriticalModifierEffect"] = { + "(20-30)% increased Explicit Critical Modifier magnitudes", + ["affix"] = "Thrud's", + ["group"] = "DestructionInfluenceCriticalModifierEffect", + ["level"] = 65, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 37, + }, + ["tradeHashes"] = { + [2393315299] = { + "(20-30)% increased Explicit Critical Modifier magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceElementalModifierEffect"] = { + "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceElementalModifierEffect", + ["level"] = 65, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 47, + }, + ["tradeHashes"] = { + [231689132] = { + "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceFireModifierEffect"] = { + "(15-20)% increased Explicit Fire Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceFireModifierEffect", + ["level"] = 65, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 40, + }, + ["tradeHashes"] = { + [3574578302] = { + "(15-20)% increased Explicit Fire Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceLightningModifierEffect"] = { + "(15-20)% increased Explicit Lightning Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceLightningModifierEffect", + ["level"] = 65, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 42, + }, + ["tradeHashes"] = { + [3624940721] = { + "(15-20)% increased Explicit Lightning Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceManaModifierEffect"] = { + "(25-30)% increased Explicit Mana Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluenceManaModifierEffect", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 43, + }, + ["tradeHashes"] = { + [3514984677] = { + "(25-30)% increased Explicit Mana Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "crossbow", + "warstaff", + "talisman", + "destruction", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["DestructionInfluencePhysicalModifierEffect"] = { + "(10-15)% increased Explicit Physical Modifier magnitudes", + ["affix"] = "of Destruction", + ["group"] = "DestructionInfluencePhysicalModifierEffect", + ["level"] = 65, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 44, + }, + ["tradeHashes"] = { + [1335369947] = { + "(10-15)% increased Explicit Physical Modifier magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["DestructionInfluenceSpeedModifierEffect"] = { + "(25-30)% increased Explicit Speed Modifier magnitudes", + ["affix"] = "Thrud's", + ["group"] = "DestructionInfluenceSpeedModifierEffect", + ["level"] = 65, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 46, + }, + ["tradeHashes"] = { + [363924732] = { + "(25-30)% increased Explicit Speed Modifier magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "destruction", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["Dexterity1"] = { + "+(5-8) to Dexterity", + ["affix"] = "of the Mongoose", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(5-8) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity2"] = { + "+(9-12) to Dexterity", + ["affix"] = "of the Lynx", + ["group"] = "Dexterity", + ["level"] = 11, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(9-12) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity3"] = { + "+(13-16) to Dexterity", + ["affix"] = "of the Fox", + ["group"] = "Dexterity", + ["level"] = 22, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(13-16) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity4"] = { + "+(17-20) to Dexterity", + ["affix"] = "of the Falcon", + ["group"] = "Dexterity", + ["level"] = 33, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(17-20) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity5"] = { + "+(21-24) to Dexterity", + ["affix"] = "of the Panther", + ["group"] = "Dexterity", + ["level"] = 44, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(21-24) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity6"] = { + "+(25-27) to Dexterity", + ["affix"] = "of the Leopard", + ["group"] = "Dexterity", + ["level"] = 55, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(25-27) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity7"] = { + "+(28-30) to Dexterity", + ["affix"] = "of the Jaguar", + ["group"] = "Dexterity", + ["level"] = 66, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(28-30) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity8"] = { + "+(31-33) to Dexterity", + ["affix"] = "of the Phantom", + ["group"] = "Dexterity", + ["level"] = 74, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(31-33) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "quiver", + "dex_armour", + "dex_int_armour", + "str_dex_armour", + "str_dex_int_armour", + "sword", + "spear", + "claw", + "warstaff", + "dagger", + "bow", + "crossbow", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Dexterity9"] = { + "+(34-36) to Dexterity", + ["affix"] = "of the Wind", + ["group"] = "Dexterity", + ["level"] = 81, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(34-36) to Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { + "5% reduced Elemental Damage Taken while stationary", + ["affix"] = "of the Essence", + ["group"] = "ElementalDamageTakenWhileStationary", + ["level"] = 63, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 3982, + }, + ["tradeHashes"] = { + [3859593448] = { + "5% reduced Elemental Damage Taken while stationary", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { + "Damage Penetrates 5% Elemental Resistances during any Flask Effect", + ["affix"] = "of the Essence", + ["group"] = "ElementalPenetrationDuringFlaskEffect", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "flask", + "damage", + "elemental", + }, + ["statOrder"] = { + 3912, + }, + ["tradeHashes"] = { + [3392890360] = { + "Damage Penetrates 5% Elemental Resistances during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EnergyShieldRechargeRate1"] = { + "(5-8)% increased Energy Shield Recharge Rate", + ["affix"] = "of Enlivening", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(5-8)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["EnergyShieldRechargeRate2"] = { + "(9-11)% increased Energy Shield Recharge Rate", + ["affix"] = "of Diffusion", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(9-11)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["EnergyShieldRechargeRate3"] = { + "(12-15)% increased Energy Shield Recharge Rate", + ["affix"] = "of Dispersal", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 36, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(12-15)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["EnergyShieldRechargeRate4"] = { + "(16-19)% increased Energy Shield Recharge Rate", + ["affix"] = "of Buffering", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 48, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(16-19)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EnergyShieldRechargeRate5______"] = { + "(20-23)% increased Energy Shield Recharge Rate", + ["affix"] = "of Ardour", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 66, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(20-23)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EnergyShieldRechargeRate6"] = { + "(24-27)% increased Energy Shield Recharge Rate", + ["affix"] = "of Suffusion", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 81, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(24-27)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EssenceAbyssPrefix"] = { + "Bears the Mark of the Abyssal Lord", + ["affix"] = "Abyssal", + ["group"] = "AbyssTargetMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6473, + }, + ["tradeHashes"] = { + [335885735] = { + "Bears the Mark of the Abyssal Lord", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceAbyssSuffix"] = { + "Bears the Mark of the Abyssal Lord", + ["affix"] = "of the Abyss", + ["group"] = "AbyssTargetMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6473, + }, + ["tradeHashes"] = { + [335885735] = { + "Bears the Mark of the Abyssal Lord", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceAttackSkillLevel1H1"] = { + "+2 to Level of all Attack Skills", + ["affix"] = "of the Essence", + ["group"] = "EssenceAttackSkillLevel", + ["level"] = 72, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 967, + }, + ["tradeHashes"] = { + [3035140377] = { + "+2 to Level of all Attack Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceAttackSkillLevel2H1"] = { + "+3 to Level of all Attack Skills", + ["affix"] = "of the Essence", + ["group"] = "EssenceAttackSkillLevel", + ["level"] = 72, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 967, + }, + ["tradeHashes"] = { + [3035140377] = { + "+3 to Level of all Attack Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceAuraEffect1"] = { + "Aura Skills have (15-20)% increased Magnitudes", + ["affix"] = "of the Essence", + ["group"] = "EssenceAuraEffect", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 2574, + }, + ["tradeHashes"] = { + [315791320] = { + "Aura Skills have (15-20)% increased Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceBreach"] = { + "+20% to Maximum Quality", + ["affix"] = "Breachlord's", + ["group"] = "LocalMaximumQuality", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 615, + }, + ["tradeHashes"] = { + [2039822488] = { + "+20% to Maximum Quality", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceColdRecoupLife1"] = { + "(26-30)% of Cold Damage taken Recouped as Life", + ["affix"] = "of the Essence", + ["group"] = "EssenceColdRecoupLife", + ["level"] = 72, + ["modTags"] = { + "resource", + "life", + "elemental", + "cold", + }, + ["statOrder"] = { + 5689, + }, + ["tradeHashes"] = { + [3679418014] = { + "(26-30)% of Cold Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceCorruptForTwoEnchantments1"] = { + "On Corruption, Item gains two Enchantments", + ["affix"] = "of the Essence", + ["group"] = "CorruptForTwoEnchantments", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7703, + }, + ["tradeHashes"] = { + [4215035940] = { + "On Corruption, Item gains two Enchantments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraCold1"] = { + "Gain (15-20)% of Damage as Extra Cold Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraCold", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (15-20)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraCold2H"] = { + "Gain (25-33)% of Damage as Extra Cold Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraCold", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (25-33)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraFire1"] = { + "Gain (15-20)% of Damage as Extra Fire Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraFire", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (15-20)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraFire2H"] = { + "Gain (25-33)% of Damage as Extra Fire Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraFire", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (25-33)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraLightning1"] = { + "Gain (15-20)% of Damage as Extra Lightning Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraLightning", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (15-20)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraLightning2H"] = { + "Gain (25-33)% of Damage as Extra Lightning Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraLightning", + ["level"] = 72, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (25-33)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraPhysical1"] = { + "Gain (15-20)% of Damage as Extra Physical Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraPhysical", + ["level"] = 72, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1671, + }, + ["tradeHashes"] = { + [4019237939] = { + "Gain (15-20)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceDamageasExtraPhysical2H"] = { + "Gain (25-33)% of Damage as Extra Physical Damage", + ["affix"] = "Essences", + ["group"] = "DamageasExtraPhysical", + ["level"] = 72, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1671, + }, + ["tradeHashes"] = { + [4019237939] = { + "Gain (25-33)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceFireRecoupLife1"] = { + "(26-30)% of Fire Damage taken Recouped as Life", + ["affix"] = "of the Essence", + ["group"] = "EssenceFireRecoupLife", + ["level"] = 72, + ["modTags"] = { + "resource", + "life", + "elemental", + "fire", + }, + ["statOrder"] = { + 6575, + }, + ["tradeHashes"] = { + [1742651309] = { + "(26-30)% of Fire Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceGlobalDefences1"] = { + "(20-30)% increased Global Armour, Evasion and Energy Shield", + ["affix"] = "Essences", + ["group"] = "AllDefences", + ["level"] = 72, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 2588, + }, + ["tradeHashes"] = { + [1177404658] = { + "(20-30)% increased Global Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceGoldDropped1"] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "of the Essence", + ["group"] = "EssenceGoldDropped", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceIncreasedLifePercent1"] = { + "(8-10)% increased maximum Life", + ["affix"] = "Essences", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 72, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(8-10)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceIncreasedManaPercent1"] = { + "(4-6)% increased maximum Mana", + ["affix"] = "Essences", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 72, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(4-6)% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceLightningRecoupLife1"] = { + "(26-30)% of Lightning Damage taken Recouped as Life", + ["affix"] = "of the Essence", + ["group"] = "EssenceLightningRecoupLife", + ["level"] = 72, + ["modTags"] = { + "resource", + "life", + "elemental", + "lightning", + }, + ["statOrder"] = { + 7551, + }, + ["tradeHashes"] = { + [2970621759] = { + "(26-30)% of Lightning Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceLocalRuneAndSoulCoreEffect1"] = { + "60% increased effect of Socketed Augment Items", + ["affix"] = "of the Essence", + ["group"] = "LocalSocketItemsEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 178, + }, + ["tradeHashes"] = { + [2081918629] = { + "60% increased effect of Socketed Augment Items", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceManaCostReduction"] = { + "(18-20)% increased Mana Cost Efficiency", + ["affix"] = "of the Essence", + ["group"] = "ManaCostEfficiency", + ["level"] = 72, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(18-20)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceManaCostReduction2H"] = { + "(28-32)% increased Mana Cost Efficiency", + ["affix"] = "of the Essence", + ["group"] = "ManaCostEfficiency", + ["level"] = 72, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(28-32)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceOnslaughtonKill1"] = { + "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", + ["affix"] = "of the Essence", + ["group"] = "EssenceOnslaughtonKill", + ["level"] = 72, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 7639, + }, + ["tradeHashes"] = { + [1881230714] = { + "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssencePercentDexterity1"] = { + "(7-10)% increased Dexterity", + ["affix"] = "of the Essence", + ["group"] = "PercentageDexterity", + ["level"] = 72, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(7-10)% increased Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssencePercentIntelligence1"] = { + "(7-10)% increased Intelligence", + ["affix"] = "of the Essence", + ["group"] = "PercentageIntelligence", + ["level"] = 72, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(7-10)% increased Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssencePercentStrength1"] = { + "(7-10)% increased Strength", + ["affix"] = "of the Essence", + ["group"] = "PercentageStrength", + ["level"] = 72, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(7-10)% increased Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssencePhysicalDamageTakenAsChaos1"] = { + "(10-15)% of Physical Damage from Hits taken as Chaos Damage", + ["affix"] = "Essences", + ["group"] = "PhysicalDamageTakenAsChaos", + ["level"] = 72, + ["modTags"] = { + "physical", + "chaos", + }, + ["statOrder"] = { + 2212, + }, + ["tradeHashes"] = { + [4129825612] = { + "(10-15)% of Physical Damage from Hits taken as Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceReducedCriticalDamageAgainstYou1"] = { + "Hits against you have (40-50)% reduced Critical Damage Bonus", + ["affix"] = "of the Essence", + ["group"] = "EssenceReducedCriticalDamageAgainstYou", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (40-50)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceSpellSkillLevel1H1"] = { + "+3 to Level of all Spell Skills", + ["affix"] = "of the Essence", + ["group"] = "EssenceSpellSkillLevel", + ["level"] = 72, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+3 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EssenceSpellSkillLevel2H1"] = { + "+5 to Level of all Spell Skills", + ["affix"] = "of the Essence", + ["group"] = "EssenceSpellSkillLevel", + ["level"] = 72, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+5 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["EvasionGrantsDeflection1"] = { + "Gain Deflection Rating equal to (8-11)% of Evasion Rating", + ["affix"] = "of Deflecting", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (8-11)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EvasionGrantsDeflection2"] = { + "Gain Deflection Rating equal to (12-14)% of Evasion Rating", + ["affix"] = "of Bending", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (12-14)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EvasionGrantsDeflection3"] = { + "Gain Deflection Rating equal to (15-17)% of Evasion Rating", + ["affix"] = "of Curvation", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 36, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (15-17)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EvasionGrantsDeflection4"] = { + "Gain Deflection Rating equal to (18-20)% of Evasion Rating", + ["affix"] = "of Diversion", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 48, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (18-20)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EvasionGrantsDeflection5"] = { + "Gain Deflection Rating equal to (21-23)% of Evasion Rating", + ["affix"] = "of Flexure", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 66, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (21-23)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["EvasionGrantsDeflection6"] = { + "Gain Deflection Rating equal to (24-26)% of Evasion Rating", + ["affix"] = "of Warping", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 81, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (24-26)% of Evasion Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_dex_int_armour", + "dex_int_armour", + "str_dex_armour", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge1"] = { + "(26-30)% faster start of Energy Shield Recharge", + ["affix"] = "of Impatience", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(26-30)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge2"] = { + "(31-35)% faster start of Energy Shield Recharge", + ["affix"] = "of Restlessness", + ["group"] = "EnergyShieldDelay", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(31-35)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge3"] = { + "(36-40)% faster start of Energy Shield Recharge", + ["affix"] = "of Fretfulness", + ["group"] = "EnergyShieldDelay", + ["level"] = 36, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(36-40)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge4"] = { + "(41-45)% faster start of Energy Shield Recharge", + ["affix"] = "of Motivation", + ["group"] = "EnergyShieldDelay", + ["level"] = 48, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(41-45)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge5"] = { + "(46-50)% faster start of Energy Shield Recharge", + ["affix"] = "of Excitement", + ["group"] = "EnergyShieldDelay", + ["level"] = 66, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(46-50)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FasterStartOfEnergyShieldRecharge6"] = { + "(51-55)% faster start of Energy Shield Recharge", + ["affix"] = "of Anticipation", + ["group"] = "EnergyShieldDelay", + ["level"] = 81, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(51-55)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_int_armour", + "str_int_armour", + "dex_int_armour", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["FireBurstOnHitEssence1"] = { + "Cast Level 20 Fire Burst on Hit", + ["affix"] = "of the Essence", + ["group"] = "FireBurstOnHit", + ["level"] = 63, + ["modTags"] = { + "skill", + "attack", + }, + ["statOrder"] = { + 564, + }, + ["tradeHashes"] = { + [1621470436] = { + "Cast Level 20 Fire Burst on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { + "Gain 10% of Physical Damage as Extra Fire Damage", + ["affix"] = "Essences", + ["group"] = "FireDamageAsPortionOfDamage", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1674, + }, + ["tradeHashes"] = { + [1936645603] = { + "Gain 10% of Physical Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { + "Gain 15% of Physical Damage as Extra Fire Damage", + ["affix"] = "Essences", + ["group"] = "FireDamageAsPortionOfDamage", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1674, + }, + ["tradeHashes"] = { + [1936645603] = { + "Gain 15% of Physical Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireDamageOverTimeMultiplierUber1___"] = { + "+(11-15)% to Fire Damage over Time Multiplier", + ["affix"] = "of Shaping", + ["group"] = "FireDamageOverTimeMultiplier", + ["level"] = 68, + ["modTags"] = { + "dot_multi", + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1199, + }, + ["tradeHashes"] = { + [3382807662] = { + "+(11-15)% to Fire Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_shaper", + "amulet_shaper", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FireDamageOverTimeMultiplierUber2"] = { + "+(16-20)% to Fire Damage over Time Multiplier", + ["affix"] = "of Shaping", + ["group"] = "FireDamageOverTimeMultiplier", + ["level"] = 80, + ["modTags"] = { + "dot_multi", + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1199, + }, + ["tradeHashes"] = { + [3382807662] = { + "+(16-20)% to Fire Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_shaper", + "amulet_shaper", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["FireDamagePercent1"] = { + "(3-7)% increased Fire Damage", + ["affix"] = "Searing", + ["group"] = "FireDamagePercentage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(3-7)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePercent2"] = { + "(8-12)% increased Fire Damage", + ["affix"] = "Sizzling", + ["group"] = "FireDamagePercentage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(8-12)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePercent3"] = { + "(13-17)% increased Fire Damage", + ["affix"] = "Blistering", + ["group"] = "FireDamagePercentage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(13-17)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePercent4"] = { + "(18-22)% increased Fire Damage", + ["affix"] = "Cauterising", + ["group"] = "FireDamagePercentage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(18-22)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePercent5"] = { + "(23-26)% increased Fire Damage", + ["affix"] = "Volcanic", + ["group"] = "FireDamagePercentage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(23-26)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePercent6"] = { + "(27-30)% increased Fire Damage", + ["affix"] = "Magmatic", + ["group"] = "FireDamagePercentage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(27-30)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { + "(50-68)% increased Fire Damage", + ["affix"] = "Searing", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(50-68)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { + "(69-88)% increased Fire Damage", + ["affix"] = "Sizzling", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(69-88)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { + "(89-108)% increased Fire Damage", + ["affix"] = "Blistering", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(89-108)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { + "(109-128)% increased Fire Damage", + ["affix"] = "Cauterising", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(109-128)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { + "(129-148)% increased Fire Damage", + ["affix"] = "Smoldering", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(129-148)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { + "(149-188)% increased Fire Damage", + ["affix"] = "Magmatic", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(149-188)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { + "(189-208)% increased Fire Damage", + ["affix"] = "Volcanic", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(189-208)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { + "(209-238)% increased Fire Damage", + ["affix"] = "Pyromancer's", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(209-238)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon1"] = { + "(25-34)% increased Fire Damage", + ["affix"] = "Searing", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(25-34)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon2"] = { + "(35-44)% increased Fire Damage", + ["affix"] = "Sizzling", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(35-44)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon3"] = { + "(45-54)% increased Fire Damage", + ["affix"] = "Blistering", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(45-54)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon4"] = { + "(55-64)% increased Fire Damage", + ["affix"] = "Cauterising", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(55-64)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon5_"] = { + "(65-74)% increased Fire Damage", + ["affix"] = "Smoldering", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(65-74)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon6"] = { + "(75-89)% increased Fire Damage", + ["affix"] = "Magmatic", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(75-89)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon7_"] = { + "(90-104)% increased Fire Damage", + ["affix"] = "Volcanic", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(90-104)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["FireDamagePrefixOnWeapon8_"] = { + "(105-119)% increased Fire Damage", + ["affix"] = "Pyromancer's", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(105-119)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["FireResist1"] = { + "+(6-10)% to Fire Resistance", + ["affix"] = "of the Whelpling", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(6-10)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist2"] = { + "+(11-15)% to Fire Resistance", + ["affix"] = "of the Salamander", + ["group"] = "FireResistance", + ["level"] = 12, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(11-15)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist3"] = { + "+(16-20)% to Fire Resistance", + ["affix"] = "of the Drake", + ["group"] = "FireResistance", + ["level"] = 24, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(16-20)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist4"] = { + "+(21-25)% to Fire Resistance", + ["affix"] = "of the Kiln", + ["group"] = "FireResistance", + ["level"] = 36, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(21-25)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist5"] = { + "+(26-30)% to Fire Resistance", + ["affix"] = "of the Furnace", + ["group"] = "FireResistance", + ["level"] = 48, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(26-30)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist6"] = { + "+(31-35)% to Fire Resistance", + ["affix"] = "of the Volcano", + ["group"] = "FireResistance", + ["level"] = 60, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(31-35)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist7"] = { + "+(36-40)% to Fire Resistance", + ["affix"] = "of Magma", + ["group"] = "FireResistance", + ["level"] = 71, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(36-40)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResist8"] = { + "+(41-45)% to Fire Resistance", + ["affix"] = "of Tzteosh", + ["group"] = "FireResistance", + ["level"] = 82, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(41-45)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["FireResistancePenetrationEssence1"] = { + "Damage Penetrates 4% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 26, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 4% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationEssence2"] = { + "Damage Penetrates 5% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 5% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationEssence3"] = { + "Damage Penetrates 6% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 6% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationEssence4___"] = { + "Damage Penetrates 7% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 7% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationEssence5"] = { + "Damage Penetrates 8% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 8% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationTwoHandEssence1"] = { + "Damage Penetrates (7-8)% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 26, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (7-8)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationTwoHandEssence2_"] = { + "Damage Penetrates (9-10)% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (9-10)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationTwoHandEssence3"] = { + "Damage Penetrates (11-12)% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (11-12)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationTwoHandEssence4"] = { + "Damage Penetrates (13-14)% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (13-14)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationTwoHandEssence5"] = { + "Damage Penetrates (15-16)% Fire Resistance", + ["affix"] = "Essences", + ["group"] = "FireResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (15-16)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FireResistancePenetrationWarbands"] = { + "Damage Penetrates (6-10)% Fire Resistance", + ["affix"] = "Betrayer's", + ["group"] = "FireResistancePenetration", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (6-10)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FishingCastDistance"] = { + "(30-50)% increased Fishing Range", + ["affix"] = "of Flight", + ["group"] = "FishingCastDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2604, + }, + ["tradeHashes"] = { + [170497091] = { + "(30-50)% increased Fishing Range", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingHookType"] = { + "Karui Stone Hook", + ["affix"] = "of Snaring", + ["group"] = "FishingHookType", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2603, + }, + ["tradeHashes"] = { + [2054162825] = { + "Karui Stone Hook", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingLineStrength"] = { + "(20-40)% increased Fishing Line Strength", + ["affix"] = "Filigree", + ["group"] = "FishingLineStrength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2600, + }, + ["tradeHashes"] = { + [1842038569] = { + "(20-40)% increased Fishing Line Strength", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingLureType"] = { + "Rhoa Feather Lure", + ["affix"] = "Alluring", + ["group"] = "FishingLureType", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2602, + }, + ["tradeHashes"] = { + [3360430812] = { + "Rhoa Feather Lure", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingPoolConsumption"] = { + "(15-30)% reduced Fishing Pool Consumption", + ["affix"] = "Calming", + ["group"] = "FishingPoolConsumption", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2601, + }, + ["tradeHashes"] = { + [1550221644] = { + "(15-30)% reduced Fishing Pool Consumption", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingQuantity"] = { + "(15-20)% increased Quantity of Fish Caught", + ["affix"] = "of Fascination", + ["group"] = "FishingQuantity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2605, + }, + ["tradeHashes"] = { + [3802667447] = { + "(15-20)% increased Quantity of Fish Caught", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FishingRarity"] = { + "(25-40)% increased Rarity of Fish Caught", + ["affix"] = "of Bounty", + ["group"] = "FishingRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2606, + }, + ["tradeHashes"] = { + [3310914132] = { + "(25-40)% increased Rarity of Fish Caught", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "fishing_rod", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["FortifyEffectEssence1"] = { + "+3 to maximum Fortification", + ["affix"] = "of the Essence", + ["group"] = "FortifyEffect", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 8835, + }, + ["tradeHashes"] = { + [335507772] = { + "+3 to maximum Fortification", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["FreezeDamageIncrease1"] = { + "(31-40)% increased Freeze Buildup", + ["affix"] = "of Freezing", + ["group"] = "FreezeDamageIncrease", + ["level"] = 15, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(31-40)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["FreezeDamageIncrease2"] = { + "(41-50)% increased Freeze Buildup", + ["affix"] = "of Bleakness", + ["group"] = "FreezeDamageIncrease", + ["level"] = 30, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(41-50)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["FreezeDamageIncrease3"] = { + "(51-60)% increased Freeze Buildup", + ["affix"] = "of the Glacier", + ["group"] = "FreezeDamageIncrease", + ["level"] = 45, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(51-60)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["FreezeDamageIncrease4"] = { + "(61-70)% increased Freeze Buildup", + ["affix"] = "of the Hyperboreal", + ["group"] = "FreezeDamageIncrease", + ["level"] = 60, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(61-70)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["FreezeDamageIncrease5"] = { + "(71-80)% increased Freeze Buildup", + ["affix"] = "of the Arctic", + ["group"] = "FreezeDamageIncrease", + ["level"] = 75, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(71-80)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["GainLifeOnBlock1"] = { + "(5-15) Life gained when you Block", + ["affix"] = "of Repairing", + ["group"] = "GainLifeOnBlock", + ["level"] = 11, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(5-15) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainLifeOnBlock2_"] = { + "(16-25) Life gained when you Block", + ["affix"] = "of Resurgence", + ["group"] = "GainLifeOnBlock", + ["level"] = 22, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(16-25) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainLifeOnBlock3"] = { + "(26-40) Life gained when you Block", + ["affix"] = "of Renewal", + ["group"] = "GainLifeOnBlock", + ["level"] = 36, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(26-40) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainLifeOnBlock4"] = { + "(41-60) Life gained when you Block", + ["affix"] = "of Revival", + ["group"] = "GainLifeOnBlock", + ["level"] = 48, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(41-60) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainLifeOnBlock5"] = { + "(61-85) Life gained when you Block", + ["affix"] = "of Rebounding", + ["group"] = "GainLifeOnBlock", + ["level"] = 60, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(61-85) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainLifeOnBlock6_"] = { + "(86-100) Life gained when you Block", + ["affix"] = "of Revitalization", + ["group"] = "GainLifeOnBlock", + ["level"] = 75, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(86-100) Life gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainManaOnBlock1"] = { + "(4-12) Mana gained when you Block", + ["affix"] = "of Redirection", + ["group"] = "GainManaOnBlock", + ["level"] = 15, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(4-12) Mana gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainManaOnBlock2"] = { + "(13-21) Mana gained when you Block", + ["affix"] = "of Transformation", + ["group"] = "GainManaOnBlock", + ["level"] = 32, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(13-21) Mana gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainManaOnBlock3"] = { + "(22-30) Mana gained when you Block", + ["affix"] = "of Conservation", + ["group"] = "GainManaOnBlock", + ["level"] = 58, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(22-30) Mana gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GainManaOnBlock4"] = { + "(31-39) Mana gained when you Block", + ["affix"] = "of Utilisation", + ["group"] = "GainManaOnBlock", + ["level"] = 75, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(31-39) Mana gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GenesisTreeAdditionalMaximumSealsCrafted"] = { + "Sealed Skills have +1 to maximum Seals", + ["affix"] = "of Esh", + ["group"] = "AdditionalMaximumSeals", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4727, + }, + ["tradeHashes"] = { + [4147510958] = { + "Sealed Skills have +1 to maximum Seals", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "amulet", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { + "Inflict Anaemia on Hit", + "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", + ["affix"] = "Uul-Netol's", + ["group"] = "AnaemiaOnHit", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4324, + 4324.1, + }, + ["tradeHashes"] = { + [971590056] = { + "Inflict Anaemia on Hit", + "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "amulet", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { + "Gain (10-20)% of Physical Damage as Extra Cold Damage", + ["affix"] = "Tul's", + ["group"] = "ColdDamageAsPortionOfDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1675, + }, + ["tradeHashes"] = { + [758893621] = { + "Gain (10-20)% of Physical Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "amulet", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltArchonDurationCrafted"] = { + "(40-50)% increased Archon Buff duration", + ["affix"] = "of Exertion", + ["group"] = "ArchonDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4344, + }, + ["tradeHashes"] = { + [2158617060] = { + "(40-50)% increased Archon Buff duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltArchonEffectCrafted"] = { + "(20-39)% increased effect of Archon Buffs on you", + ["affix"] = "Unshackling", + ["group"] = "ArchonEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4345, + }, + ["tradeHashes"] = { + [1180552088] = { + "(20-39)% increased effect of Archon Buffs on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { + "(35-50)% to gain Archon of Undeath when you create an Offering", + ["affix"] = "of Unending", + ["group"] = "ArchonUndeathOnOfferingUse", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 5401, + }, + ["tradeHashes"] = { + [933355817] = { + "(35-50)% to gain Archon of Undeath when you create an Offering", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { + "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["affix"] = "of Reverberation", + ["group"] = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 5565, + }, + ["tradeHashes"] = { + [2150661403] = { + "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { + "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["affix"] = "Glacial", + ["group"] = "ColdDamageIfColdInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 5675, + }, + ["tradeHashes"] = { + [1002535626] = { + "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { + "5% of Damage from Hits is taken from your Spectres' Life before you", + ["affix"] = "Underling's", + ["group"] = "DamageRemovedFromSpectres", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 6036, + }, + ["tradeHashes"] = { + [54812069] = { + "5% of Damage from Hits is taken from your Spectres' Life before you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { + "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["affix"] = "Erupting", + ["group"] = "FireDamageIfFireInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 6561, + }, + ["tradeHashes"] = { + [3858572996] = { + "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { + "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["affix"] = "Energising", + ["group"] = "LightningDamageIfLightningInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7543, + }, + ["tradeHashes"] = { + [797289402] = { + "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { + "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of Scattering", + ["group"] = "MinionAdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9019, + }, + ["tradeHashes"] = { + [1797815732] = { + "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { + "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["affix"] = "Instructor's", + ["group"] = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9034, + }, + ["tradeHashes"] = { + [3526763442] = { + "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionDurationCrafted"] = { + "(35-49)% increased Minion Duration", + ["affix"] = "of Binding", + ["group"] = "MinionDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 4728, + }, + ["tradeHashes"] = { + [999511066] = { + "(35-49)% increased Minion Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { + "Minions' Strikes have Melee Splash", + ["affix"] = "of Ravaging", + ["group"] = "MinionMeleeSplash", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9067, + }, + ["tradeHashes"] = { + [3249412463] = { + "Minions' Strikes have Melee Splash", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { + "(7-10)% increased Reservation Efficiency of Minion Skills", + ["affix"] = "of Coherence", + ["group"] = "MinionReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9767, + }, + ["tradeHashes"] = { + [1805633363] = { + "(7-10)% increased Reservation Efficiency of Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { + "Your Minions are Gigantic if they have Revived Recently", + ["affix"] = "Monstrous", + ["group"] = "MinionsGiganticRevivedRecently", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9096, + }, + ["tradeHashes"] = { + [1265767008] = { + "Your Minions are Gigantic if they have Revived Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltSealGainFrequencyCrafted"] = { + "Sealed Skills have (21-35)% increased Seal gain frequency", + ["affix"] = "of Expectation", + ["group"] = "SealGainFrequency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9800, + }, + ["tradeHashes"] = { + [3384867265] = { + "Sealed Skills have (21-35)% increased Seal gain frequency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { + "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", + ["affix"] = "of Imbuing", + ["group"] = "SpellElementalAilmentMagnitude", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "caster", + }, + ["statOrder"] = { + 10025, + }, + ["tradeHashes"] = { + [3621874554] = { + "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "belt", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { + "+(4-5)% to Fire Spell Critical Hit Chance", + ["affix"] = "of Xoph", + ["group"] = "FireSpellBaseCriticalChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "elemental", + "fire", + "caster", + "critical", + }, + ["statOrder"] = { + 6590, + }, + ["tradeHashes"] = { + [3399401168] = { + "+(4-5)% to Fire Spell Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "amulet", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingCommandSkillSpeedCrafted"] = { + "Minions have (20-30)% increased Skill Speed with Command Skills", + ["affix"] = "of Punctuality", + ["group"] = "MinionCommandSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 9025, + }, + ["tradeHashes"] = { + [73032170] = { + "Minions have (20-30)% increased Skill Speed with Command Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { + "(8-12)% of Damage is taken from Mana before Life", + ["affix"] = "Burdensome", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(8-12)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingExposureEffectCrafted"] = { + "(25-35)% increased Exposure Effect", + ["affix"] = "of Drenching", + ["group"] = "ElementalExposureEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(25-35)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { + "+1 to maximum number of Elemental Infusions", + ["affix"] = "of Amplification", + ["group"] = "MaximumElementalInfusion", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 8875, + }, + ["tradeHashes"] = { + [4097212302] = { + "+1 to maximum number of Elemental Infusions", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { + "Invocated skills have (25-35)% increased Maximum Energy", + ["affix"] = "of Vastness", + ["group"] = "InvocationMaximumEnergy", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7385, + }, + ["tradeHashes"] = { + [1615901249] = { + "Invocated skills have (25-35)% increased Maximum Energy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { + "Minions have (35-45)% increased Magnitude of Damaging Ailments", + ["affix"] = "Contaminating", + ["group"] = "MinionDamagingAilments", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9012, + }, + ["tradeHashes"] = { + [953593695] = { + "Minions have (35-45)% increased Magnitude of Damaging Ailments", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingMinionArmourBreakCrafted"] = { + "Minions Break Armour equal to (2-4)% of Physical damage dealt", + ["affix"] = "Scratching", + ["group"] = "MinionArmourBreak", + ["level"] = 1, + ["modTags"] = { + "physical", + "minion", + }, + ["statOrder"] = { + 9000, + }, + ["tradeHashes"] = { + [195270549] = { + "Minions Break Armour equal to (2-4)% of Physical damage dealt", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { + "Minions have (21-29)% increased Cooldown Recovery Rate", + ["affix"] = "of Invigoration", + ["group"] = "MinionCooldownRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9029, + }, + ["tradeHashes"] = { + [1691403182] = { + "Minions have (21-29)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingOfferingEffectCrafted"] = { + "Offering Skills have (16-23)% increased Buff effect", + ["affix"] = "Sacrificial", + ["group"] = "OfferingEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3719, + }, + ["tradeHashes"] = { + [3191479793] = { + "Offering Skills have (16-23)% increased Buff effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { + "Spells Gain (8-12)% of Damage as extra Chaos Damage", + ["affix"] = "Soul Stealer's", + ["group"] = "SpellDamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_warband", + "damage", + }, + ["statOrder"] = { + 9242, + }, + ["tradeHashes"] = { + [555706343] = { + "Spells Gain (8-12)% of Damage as extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { + "Gain (8-12)% of Damage as Extra Cold Damage with Spells", + ["affix"] = "Tempest Rider's", + ["group"] = "SpellDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 868, + }, + ["tradeHashes"] = { + [825116955] = { + "Gain (8-12)% of Damage as Extra Cold Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { + "Gain (8-12)% of Damage as Extra Fire Damage with Spells", + ["affix"] = "Fire Breather's", + ["group"] = "SpellDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 864, + }, + ["tradeHashes"] = { + [1321054058] = { + "Gain (8-12)% of Damage as Extra Fire Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { + "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", + ["affix"] = "Storm Chaser's", + ["group"] = "SpellDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 870, + }, + ["tradeHashes"] = { + [323800555] = { + "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingSpellImpaleEffectCrafted"] = { + "(20-30)% increased Magnitude of Impales inflicted with Spells", + ["affix"] = "of Lancing", + ["group"] = "SpellImpaleEffect", + ["level"] = 1, + ["modTags"] = { + "physical", + "caster", + }, + ["statOrder"] = { + 10027, + }, + ["tradeHashes"] = { + [4259875040] = { + "(20-30)% increased Magnitude of Impales inflicted with Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { + "Temporary Minion Skills have +1 to Limit of Minions summoned", + ["affix"] = "of Multitudes", + ["group"] = "TemporaryMinionLimit", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10247, + }, + ["tradeHashes"] = { + [1058934731] = { + "Temporary Minion Skills have +1 to Limit of Minions summoned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + "ring", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GlobalChaosSpellGemsLevel1"] = { + "+1 to Level of all Chaos Spell Skills", + ["affix"] = "of Anarchy", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+1 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalChaosSpellGemsLevel2"] = { + "+2 to Level of all Chaos Spell Skills", + ["affix"] = "of Turmoil", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+2 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalChaosSpellGemsLevel3"] = { + "+3 to Level of all Chaos Spell Skills", + ["affix"] = "of Ruin", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+3 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { + "+1 to Level of all Chaos Spell Skills", + ["affix"] = "of Anarchy", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+1 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { + "+2 to Level of all Chaos Spell Skills", + ["affix"] = "of Turmoil", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+2 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { + "+(3-4) to Level of all Chaos Spell Skills", + ["affix"] = "of Ruin", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+(3-4) to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Chaos Spell Skills", + ["affix"] = "of Havoc", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+(5-6) to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { + "+7 to Level of all Chaos Spell Skills", + ["affix"] = "of Armageddon", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+7 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelWeapon1"] = { + "+1 to Level of all Chaos Spell Skills", + ["affix"] = "of Anarchy", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+1 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelWeapon2"] = { + "+2 to Level of all Chaos Spell Skills", + ["affix"] = "of Turmoil", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+2 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelWeapon3"] = { + "+3 to Level of all Chaos Spell Skills", + ["affix"] = "of Ruin", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+3 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelWeapon4"] = { + "+4 to Level of all Chaos Spell Skills", + ["affix"] = "of Havoc", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+4 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalChaosSpellGemsLevelWeapon5"] = { + "+5 to Level of all Chaos Spell Skills", + ["affix"] = "of Armageddon", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+5 to Level of all Chaos Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_chaos_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevel1_"] = { + "+1 to Level of all Cold Spell Skills", + ["affix"] = "of Snow", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+1 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalColdSpellGemsLevel2"] = { + "+2 to Level of all Cold Spell Skills", + ["affix"] = "of Sleet", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+2 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalColdSpellGemsLevel3"] = { + "+3 to Level of all Cold Spell Skills", + ["affix"] = "of Ice", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+3 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { + "+1 to Level of all Cold Spell Skills", + ["affix"] = "of Snow", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+1 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { + "+2 to Level of all Cold Spell Skills", + ["affix"] = "of Sleet", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+2 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { + "+(3-4) to Level of all Cold Spell Skills", + ["affix"] = "of Ice", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+(3-4) to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Cold Spell Skills", + ["affix"] = "of Rime", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+(5-6) to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { + "+7 to Level of all Cold Spell Skills", + ["affix"] = "of Frostbite", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+7 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelWeapon1"] = { + "+1 to Level of all Cold Spell Skills", + ["affix"] = "of Snow", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+1 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelWeapon2"] = { + "+2 to Level of all Cold Spell Skills", + ["affix"] = "of Sleet", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+2 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelWeapon3"] = { + "+3 to Level of all Cold Spell Skills", + ["affix"] = "of Ice", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+3 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelWeapon4"] = { + "+4 to Level of all Cold Spell Skills", + ["affix"] = "of Rime", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+4 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalColdSpellGemsLevelWeapon5"] = { + "+5 to Level of all Cold Spell Skills", + ["affix"] = "of Frostbite", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+5 to Level of all Cold Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_cold_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevel1_"] = { + "+1 to Level of all Fire Spell Skills", + ["affix"] = "of Coals", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+1 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalFireSpellGemsLevel2"] = { + "+2 to Level of all Fire Spell Skills", + ["affix"] = "of Cinders", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+2 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalFireSpellGemsLevel3"] = { + "+3 to Level of all Fire Spell Skills", + ["affix"] = "of Flames", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+3 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { + "+1 to Level of all Fire Spell Skills", + ["affix"] = "of Coals", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+1 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { + "+2 to Level of all Fire Spell Skills", + ["affix"] = "of Cinders", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+2 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { + "+(3-4) to Level of all Fire Spell Skills", + ["affix"] = "of Flames", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+(3-4) to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Fire Spell Skills", + ["affix"] = "of Immolation", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+(5-6) to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { + "+7 to Level of all Fire Spell Skills", + ["affix"] = "of Inferno", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+7 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelWeapon1"] = { + "+1 to Level of all Fire Spell Skills", + ["affix"] = "of Coals", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+1 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelWeapon2"] = { + "+2 to Level of all Fire Spell Skills", + ["affix"] = "of Cinders", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+2 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelWeapon3"] = { + "+3 to Level of all Fire Spell Skills", + ["affix"] = "of Flames", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+3 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelWeapon4"] = { + "+4 to Level of all Fire Spell Skills", + ["affix"] = "of Immolation", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+4 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalFireSpellGemsLevelWeapon5"] = { + "+5 to Level of all Fire Spell Skills", + ["affix"] = "of Inferno", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+5 to Level of all Fire Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalIncreaseSpellSkillGemLevel1"] = { + "+1 to Level of all Spell Skills", + ["affix"] = "of Jordan", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 45, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+1 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevel1"] = { + "+1 to Level of all Lightning Spell Skills", + ["affix"] = "of Sparks", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+1 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalLightningSpellGemsLevel2"] = { + "+2 to Level of all Lightning Spell Skills", + ["affix"] = "of Static", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+2 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalLightningSpellGemsLevel3"] = { + "+3 to Level of all Lightning Spell Skills", + ["affix"] = "of Electricity", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+3 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { + "+1 to Level of all Lightning Spell Skills", + ["affix"] = "of Sparks", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+1 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { + "+2 to Level of all Lightning Spell Skills", + ["affix"] = "of Static", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+2 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { + "+(3-4) to Level of all Lightning Spell Skills", + ["affix"] = "of Electricity", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+(3-4) to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Lightning Spell Skills", + ["affix"] = "of Voltage", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+(5-6) to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { + "+7 to Level of all Lightning Spell Skills", + ["affix"] = "of Thunder", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+7 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelWeapon1"] = { + "+1 to Level of all Lightning Spell Skills", + ["affix"] = "of Sparks", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+1 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelWeapon2"] = { + "+2 to Level of all Lightning Spell Skills", + ["affix"] = "of Static", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+2 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelWeapon3"] = { + "+3 to Level of all Lightning Spell Skills", + ["affix"] = "of Electricity", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+3 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelWeapon4"] = { + "+4 to Level of all Lightning Spell Skills", + ["affix"] = "of Voltage", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+4 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalLightningSpellGemsLevelWeapon5"] = { + "+5 to Level of all Lightning Spell Skills", + ["affix"] = "of Thunder", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+5 to Level of all Lightning Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevel1"] = { + "+1 to Level of all Melee Skills", + ["affix"] = "of Combat", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+1 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevel2"] = { + "+2 to Level of all Melee Skills", + ["affix"] = "of Dueling", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+2 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevel3"] = { + "+3 to Level of all Melee Skills", + ["affix"] = "of Battle", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+3 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { + "+2 to Level of all Melee Skills", + ["affix"] = "of Combat", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+2 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { + "+2 to Level of all Melee Skills", + ["affix"] = "of Dueling", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+2 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { + "+3 to Level of all Melee Skills", + ["affix"] = "of Conflict", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+3 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { + "+4 to Level of all Melee Skills", + ["affix"] = "of Battle", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+4 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { + "+5 to Level of all Melee Skills", + ["affix"] = "of War", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+5 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelWeapon1"] = { + "+1 to Level of all Melee Skills", + ["affix"] = "of Combat", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 2, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+1 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "spear", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelWeapon2"] = { + "+1 to Level of all Melee Skills", + ["affix"] = "of Dueling", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 18, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+1 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "spear", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelWeapon3"] = { + "+2 to Level of all Melee Skills", + ["affix"] = "of Conflict", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 36, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+2 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "spear", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelWeapon4"] = { + "+3 to Level of all Melee Skills", + ["affix"] = "of Battle", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 55, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+3 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "spear", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["GlobalMeleeSkillGemLevelWeapon5"] = { + "+4 to Level of all Melee Skills", + ["affix"] = "of War", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 81, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+4 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "spear", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevel1"] = { + "+1 to Level of all Minion Skills", + ["affix"] = "of the Taskmaster", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+1 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevel2"] = { + "+2 to Level of all Minion Skills", + ["affix"] = "of the Despot", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+2 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevel3"] = { + "+3 to Level of all Minion Skills", + ["affix"] = "of the Overseer", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+3 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevelWeapon1"] = { + "+1 to Level of all Minion Skills", + ["affix"] = "of the Taskmaster", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+1 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevelWeapon2"] = { + "+2 to Level of all Minion Skills", + ["affix"] = "of the Despot", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", + ["level"] = 25, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+2 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevelWeapon3"] = { + "+3 to Level of all Minion Skills", + ["affix"] = "of the Overseer", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+3 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevelWeapon4"] = { + "+4 to Level of all Minion Skills", + ["affix"] = "of the Slavedriver", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", + ["level"] = 78, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+4 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalMinionSpellSkillGemLevelWeapon5"] = { + "+5 to Level of all Minion Skills", + ["affix"] = "of the Tyrant", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+5 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevel1"] = { + "+1 to Level of all Physical Spell Skills", + ["affix"] = "of Agony", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+1 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevel2"] = { + "+2 to Level of all Physical Spell Skills", + ["affix"] = "of Suffering", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+2 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevel3"] = { + "+3 to Level of all Physical Spell Skills", + ["affix"] = "of Torment", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+3 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { + "+1 to Level of all Physical Spell Skills", + ["affix"] = "of Agony", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+1 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { + "+2 to Level of all Physical Spell Skills", + ["affix"] = "of Suffering", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+2 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { + "+(3-4) to Level of all Physical Spell Skills", + ["affix"] = "of Torment", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+(3-4) to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Physical Spell Skills", + ["affix"] = "of Desolation", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+(5-6) to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { + "+7 to Level of all Physical Spell Skills", + ["affix"] = "of Grief", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+7 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelWeapon1"] = { + "+1 to Level of all Physical Spell Skills", + ["affix"] = "of Agony", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+1 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelWeapon2"] = { + "+2 to Level of all Physical Spell Skills", + ["affix"] = "of Suffering", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+2 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelWeapon3"] = { + "+3 to Level of all Physical Spell Skills", + ["affix"] = "of Torment", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+3 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelWeapon4"] = { + "+4 to Level of all Physical Spell Skills", + ["affix"] = "of Desolation", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+4 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalPhysicalSpellGemsLevelWeapon5"] = { + "+5 to Level of all Physical Spell Skills", + ["affix"] = "of Grief", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+5 to Level of all Physical Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevel1"] = { + "+1 to Level of all Projectile Skills", + ["affix"] = "of the Archer", + ["group"] = "GlobalIncreaseProjectileSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+1 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevel2"] = { + "+2 to Level of all Projectile Skills", + ["affix"] = "of the Fletcher", + ["group"] = "GlobalIncreaseProjectileSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+2 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "amulet", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevel3"] = { + "+3 to Level of all Projectile Skills", + ["affix"] = "of the Sharpshooter", + ["group"] = "GlobalIncreaseProjectileSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+3 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { + "+2 to Level of all Projectile Skills", + ["affix"] = "of the Archer", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+2 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { + "+2 to Level of all Projectile Skills", + ["affix"] = "of the Fletcher", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+2 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { + "+3 to Level of all Projectile Skills", + ["affix"] = "of the Sharpshooter", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+3 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { + "+4 to Level of all Projectile Skills", + ["affix"] = "of the Marksman", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+4 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { + "+5 to Level of all Projectile Skills", + ["affix"] = "of the Sniper", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+5 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelWeapon1"] = { + "+1 to Level of all Projectile Skills", + ["affix"] = "of the Archer", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+1 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelWeapon2"] = { + "+1 to Level of all Projectile Skills", + ["affix"] = "of the Fletcher", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+1 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelWeapon3"] = { + "+2 to Level of all Projectile Skills", + ["affix"] = "of the Sharpshooter", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+2 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelWeapon4"] = { + "+3 to Level of all Projectile Skills", + ["affix"] = "of the Marksman", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+3 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalProjectileSkillGemLevelWeapon5"] = { + "+4 to Level of all Projectile Skills", + ["affix"] = "of the Sniper", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+4 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalSpellGemsLevel1"] = { + "+1 to Level of all Spell Skills", + ["affix"] = "of the Mage", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 10, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+1 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalSpellGemsLevel2"] = { + "+2 to Level of all Spell Skills", + ["affix"] = "of the Enchanter", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+2 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["GlobalSpellGemsLevel3"] = { + "+3 to Level of all Spell Skills", + ["affix"] = "of the Sorcerer", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+3 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelTwoHandWeapon1"] = { + "+2 to Level of all Spell Skills", + ["affix"] = "of the Mage", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 5, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+2 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelTwoHandWeapon2"] = { + "+3 to Level of all Spell Skills", + ["affix"] = "of the Enchanter", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 25, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+3 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelTwoHandWeapon3"] = { + "+4 to Level of all Spell Skills", + ["affix"] = "of the Evoker", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+4 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelTwoHandWeapon4"] = { + "+(5-6) to Level of all Spell Skills", + ["affix"] = "of the Sorcerer", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 78, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+(5-6) to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelWeapon1"] = { + "+1 to Level of all Spell Skills", + ["affix"] = "of the Mage", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 5, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+1 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelWeapon2"] = { + "+2 to Level of all Spell Skills", + ["affix"] = "of the Enchanter", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 25, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+2 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelWeapon3"] = { + "+3 to Level of all Spell Skills", + ["affix"] = "of the Sorcerer", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+3 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalSpellGemsLevelWeapon4"] = { + "+4 to Level of all Spell Skills", + ["affix"] = "of the Wizard", + ["group"] = "GlobalIncreaseSpellSkillGemLevelWeapon", + ["level"] = 78, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+4 to Level of all Spell Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalTrapSkillGemLevel1"] = { + "+1 to Level of all Trap Skill Gems", + ["affix"] = "of Explosives", + ["group"] = "GlobalIncreaseTrapSkillGemLevel", + ["level"] = 5, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+1 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "amulet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["GlobalTrapSkillGemLevel2"] = { + "+2 to Level of all Trap Skill Gems", + ["affix"] = "of Shrapnel", + ["group"] = "GlobalIncreaseTrapSkillGemLevel", + ["level"] = 41, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+2 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "amulet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["GlobalTrapSkillGemLevel3"] = { + "+3 to Level of all Trap Skill Gems", + ["affix"] = "of Sabotage", + ["group"] = "GlobalIncreaseTrapSkillGemLevel", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+3 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["GlobalTrapSkillGemLevelWeapon1"] = { + "+1 to Level of all Trap Skill Gems", + ["affix"] = "of Explosives", + ["group"] = "GlobalIncreaseTrapSkillGemLevelWeapon", + ["level"] = 2, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+1 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalTrapSkillGemLevelWeapon2"] = { + "+2 to Level of all Trap Skill Gems", + ["affix"] = "of Shrapnel", + ["group"] = "GlobalIncreaseTrapSkillGemLevelWeapon", + ["level"] = 18, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+2 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalTrapSkillGemLevelWeapon3"] = { + "+3 to Level of all Trap Skill Gems", + ["affix"] = "of Sabotage", + ["group"] = "GlobalIncreaseTrapSkillGemLevelWeapon", + ["level"] = 36, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+3 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalTrapSkillGemLevelWeapon4"] = { + "+4 to Level of all Trap Skill Gems", + ["affix"] = "of Detonation", + ["group"] = "GlobalIncreaseTrapSkillGemLevelWeapon", + ["level"] = 55, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+4 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GlobalTrapSkillGemLevelWeapon5"] = { + "+5 to Level of all Trap Skill Gems", + ["affix"] = "of Pyrotechnics", + ["group"] = "GlobalIncreaseTrapSkillGemLevelWeapon", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 974, + }, + ["tradeHashes"] = { + [239953100] = { + "+5 to Level of all Trap Skill Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrantsBirdAspectCrafted"] = { + "Grants Level 20 Aspect of the Avian Skill", + ["affix"] = "of Saqawal", + ["group"] = "GrantsBirdAspect", + ["level"] = 20, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 508, + }, + ["tradeHashes"] = { + [3914740665] = { + "Grants Level 20 Aspect of the Avian Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GrantsCatAspectCrafted"] = { + "Grants Level 20 Aspect of the Cat Skill", + ["affix"] = "of Farrul", + ["group"] = "GrantsCatAspect", + ["level"] = 20, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 512, + }, + ["tradeHashes"] = { + [1265282021] = { + "Grants Level 20 Aspect of the Cat Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GrantsCrabAspectCrafted"] = { + "Grants Level 20 Aspect of the Crab Skill", + ["affix"] = "of Craiceann", + ["group"] = "GrantsCrabAspect", + ["level"] = 20, + ["modTags"] = { + "blue_herring", + "skill", + }, + ["statOrder"] = { + 513, + }, + ["tradeHashes"] = { + [4102318278] = { + "Grants Level 20 Aspect of the Crab Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GrantsSpiderAspectCrafted"] = { + "Grants Level 20 Aspect of the Spider Skill", + ["affix"] = "of Fenumus", + ["group"] = "GrantsSpiderAspect", + ["level"] = 20, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 531, + }, + ["tradeHashes"] = { + [956546305] = { + "Grants Level 20 Aspect of the Spider Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GrenadeSkillAdditionalCooldownUse1"] = { + "Grenade Skills have +1 Cooldown Use", + ["affix"] = "of Stockpiling", + ["group"] = "GrenadeCooldownUse", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 6941, + }, + ["tradeHashes"] = { + [2250681686] = { + "Grenade Skills have +1 Cooldown Use", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillAdditionalCooldownUse2"] = { + "Grenade Skills have +2 Cooldown Uses", + ["affix"] = "of Ordnance", + ["group"] = "GrenadeCooldownUse", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 6941, + }, + ["tradeHashes"] = { + [2250681686] = { + "Grenade Skills have +2 Cooldown Uses", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillAdditionalProjectile1"] = { + "Grenade Skills Fire an additional Projectile", + ["affix"] = "of Blasting", + ["group"] = "GrenadeProjectiles", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 6945, + }, + ["tradeHashes"] = { + [1980802737] = { + "Grenade Skills Fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillAdditionalProjectile2"] = { + "Grenade Skills Fire 2 additional Projectiles", + ["affix"] = "of Bombarding", + ["group"] = "GrenadeProjectiles", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 6945, + }, + ["tradeHashes"] = { + [1980802737] = { + "Grenade Skills Fire 2 additional Projectiles", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery1"] = { + "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Speed", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 4, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery2"] = { + "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Brevity", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 16, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery3"] = { + "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Rapidity", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 33, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery4"] = { + "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Swiftness", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 46, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery5"] = { + "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Fleetness", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["GrenadeSkillCooldownRecovery6"] = { + "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", + ["affix"] = "of Alacrity", + ["group"] = "GrenadeSkillCooldownSpeed", + ["level"] = 81, + ["modTags"] = { + }, + ["statOrder"] = { + 6942, + }, + ["tradeHashes"] = { + [1544773869] = { + "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "cannon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { + "+(2-3)% to Maximum Fire Resistance", + "+(13-17)% to Chaos Resistance", + ["affix"] = "of Amanamu", + ["group"] = "ChaosAndMaxFireResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1009, + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + [4095671657] = { + "+(2-3)% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { + "(7-9)% increased Strength and Intelligence", + ["affix"] = "of Amanamu", + ["group"] = "IncreasedStrengthAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "intelligence", + "strength", + "attribute", + }, + ["statOrder"] = { + 1003, + }, + ["tradeHashes"] = { + [517666337] = { + "(7-9)% increased Strength and Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { + "+(2-3)% to Maximum Cold Resistance", + "+(13-17)% to Chaos Resistance", + ["affix"] = "of Kurgal", + ["group"] = "ChaosAndMaxColdResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1010, + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + [3676141501] = { + "+(2-3)% to Maximum Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { + "(7-9)% increased Dexterity and Intelligence", + ["affix"] = "of Kurgal", + ["group"] = "IncreasedDexterityAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "dexterity", + "intelligence", + "attribute", + }, + ["statOrder"] = { + 1004, + }, + ["tradeHashes"] = { + [3300318172] = { + "(7-9)% increased Dexterity and Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { + "+(2-3)% to Maximum Lightning Resistance", + "+(13-17)% to Chaos Resistance", + ["affix"] = "of Ulaman", + ["group"] = "ChaosAndMaxLightningResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1011, + 1024, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(2-3)% to Maximum Lightning Resistance", + }, + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { + "(7-9)% increased Strength and Dexterity", + ["affix"] = "of Ulaman", + ["group"] = "IncreasedStrengthAndDexterity", + ["level"] = 1, + ["modTags"] = { + "dexterity", + "strength", + "attribute", + }, + ["statOrder"] = { + 1002, + }, + ["tradeHashes"] = { + [4248928173] = { + "(7-9)% increased Strength and Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { + "(6-10)% increased Reservation Efficiency of Skills", + ["affix"] = "of Kurgal", + ["group"] = "ReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1955, + }, + ["tradeHashes"] = { + [2587176568] = { + "(6-10)% increased Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { + "Mark Skills have (15-25)% increased Use Speed", + ["affix"] = "of Amanamu", + ["group"] = "MarkCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1946, + }, + ["tradeHashes"] = { + [1714971114] = { + "Mark Skills have (15-25)% increased Use Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { + "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", + ["affix"] = "of Amanamu", + ["group"] = "DamageGainedAsColdVsDazed", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 9278, + }, + ["tradeHashes"] = { + [4212675042] = { + "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { + "(26-35)% increased Damage against Immobilised Enemies", + ["affix"] = "of Amanamu", + ["group"] = "ImmobiliseIncreasedDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5959, + }, + ["tradeHashes"] = { + [3120508478] = { + "(26-35)% increased Damage against Immobilised Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { + "Life Leech can Overflow Maximum Life", + ["affix"] = "of Amanamu", + ["group"] = "LifeLeechOvercapLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7454, + }, + ["tradeHashes"] = { + [2714890129] = { + "Life Leech can Overflow Maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { + "(5-10)% chance to gain a Power Charge on Critical Hit", + ["affix"] = "of Kurgal", + ["group"] = "PowerChargeOnCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "critical", + }, + ["statOrder"] = { + 1585, + }, + ["tradeHashes"] = { + [3814876985] = { + "(5-10)% chance to gain a Power Charge on Critical Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { + "(17-23)% increased Attack Speed when on Full Life", + ["affix"] = "of Kurgal", + ["group"] = "AttackSpeedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1178, + }, + ["tradeHashes"] = { + [4268321763] = { + "(17-23)% increased Attack Speed when on Full Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { + "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["affix"] = "of Ulaman", + ["group"] = "CriticalAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + "ailment", + }, + ["statOrder"] = { + 5818, + }, + ["tradeHashes"] = { + [440490623] = { + "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { + "Chance to inflict Bleeding is calculated from your base chance to Poison instead", + ["affix"] = "of Ulaman", + ["group"] = "BasePoisonChanceAppliesToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "poison", + "physical", + "chaos", + "ailment", + }, + ["statOrder"] = { + 4659, + }, + ["tradeHashes"] = { + [1710906986] = { + "Chance to inflict Bleeding is calculated from your base chance to Poison instead", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { + "(13-17)% increased Attack Speed if you haven't been Hit Recently", + ["affix"] = "of Ulaman", + ["group"] = "AttackSpeedIfNotHitRecently", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4551, + }, + ["tradeHashes"] = { + [3842707164] = { + "(13-17)% increased Attack Speed if you haven't been Hit Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { + "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", + ["affix"] = "of Ulaman", + ["group"] = "AggravateOldBleedOnHit", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 4238, + }, + ["tradeHashes"] = { + [521615509] = { + "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { + "Chance to Poison is calculated from your base chance to inflict Bleeding instead", + ["affix"] = "of Ulaman", + ["group"] = "BaseBleedChanceAppliesToPoison", + ["level"] = 1, + ["modTags"] = { + "bleed", + "poison", + "physical", + "chaos", + "ailment", + }, + ["statOrder"] = { + 4737, + }, + ["tradeHashes"] = { + [1670828838] = { + "Chance to Poison is calculated from your base chance to inflict Bleeding instead", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage1"] = { + "Attacks Gain 10% of Damage as Extra Cold Damage", + ["affix"] = "Frosted", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain 10% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage2"] = { + "Attacks Gain 11% of Damage as Extra Cold Damage", + ["affix"] = "Chilled", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain 11% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage3"] = { + "Attacks Gain 12% of Damage as Extra Cold Damage", + ["affix"] = "Icy", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain 12% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage4"] = { + "Attacks Gain 13% of Damage as Extra Cold Damage", + ["affix"] = "Frigid", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain 13% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage5"] = { + "Attacks Gain 14% of Damage as Extra Cold Damage", + ["affix"] = "Freezing", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain 14% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage6"] = { + "Attacks Gain (15-16)% of Damage as Extra Cold Damage", + ["affix"] = "Frozen", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (15-16)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage7"] = { + "Attacks Gain (17-18)% of Damage as Extra Cold Damage", + ["affix"] = "Glaciated", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (17-18)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage8"] = { + "Attacks Gain (19-20)% of Damage as Extra Cold Damage", + ["affix"] = "Polar", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (19-20)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedColdDamage9"] = { + "Attacks Gain (21-23)% of Damage as Extra Cold Damage", + ["affix"] = "Entombing", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (21-23)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage1"] = { + "Attacks Gain 10% of Damage as Extra Fire Damage", + ["affix"] = "Heated", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain 10% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage2"] = { + "Attacks Gain 11% of Damage as Extra Fire Damage", + ["affix"] = "Smouldering", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain 11% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage3"] = { + "Attacks Gain 12% of Damage as Extra Fire Damage", + ["affix"] = "Smoking", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain 12% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage4"] = { + "Attacks Gain 13% of Damage as Extra Fire Damage", + ["affix"] = "Burning", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain 13% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage5"] = { + "Attacks Gain 14% of Damage as Extra Fire Damage", + ["affix"] = "Flaming", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain 14% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage6"] = { + "Attacks Gain (15-16)% of Damage as Extra Fire Damage", + ["affix"] = "Scorching", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (15-16)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage7"] = { + "Attacks Gain (17-18)% of Damage as Extra Fire Damage", + ["affix"] = "Incinerating", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (17-18)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage8"] = { + "Attacks Gain (19-20)% of Damage as Extra Fire Damage", + ["affix"] = "Blasting", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (19-20)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedFireDamage9"] = { + "Attacks Gain (21-23)% of Damage as Extra Fire Damage", + ["affix"] = "Cremating", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (21-23)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage1"] = { + "Attacks Gain 10% of Damage as Extra Lightning Damage", + ["affix"] = "Humming", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain 10% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage2"] = { + "Attacks Gain 11% of Damage as Extra Lightning Damage", + ["affix"] = "Buzzing", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain 11% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage3"] = { + "Attacks Gain 12% of Damage as Extra Lightning Damage", + ["affix"] = "Snapping", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain 12% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage4"] = { + "Attacks Gain 13% of Damage as Extra Lightning Damage", + ["affix"] = "Crackling", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain 13% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage5"] = { + "Attacks Gain 14% of Damage as Extra Lightning Damage", + ["affix"] = "Sparking", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain 14% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage6"] = { + "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", + ["affix"] = "Arcing", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage7"] = { + "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", + ["affix"] = "Shocking", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage8"] = { + "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", + ["affix"] = "Discharging", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedLightningDamage9"] = { + "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", + ["affix"] = "Electrocuting", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage1"] = { + "Attacks Gain 10% of Damage as Extra Physical Damage", + ["affix"] = "Glinting", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain 10% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage2"] = { + "Attacks Gain 11% of Damage as Extra Physical Damage", + ["affix"] = "Burnished", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain 11% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage3"] = { + "Attacks Gain 12% of Damage as Extra Physical Damage", + ["affix"] = "Polished", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain 12% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage4"] = { + "Attacks Gain 13% of Damage as Extra Physical Damage", + ["affix"] = "Honed", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain 13% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage5"] = { + "Attacks Gain 14% of Damage as Extra Physical Damage", + ["affix"] = "Gleaming", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain 14% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage6"] = { + "Attacks Gain (15-16)% of Damage as Extra Physical Damage", + ["affix"] = "Annealed", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (15-16)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage7"] = { + "Attacks Gain (17-18)% of Damage as Extra Physical Damage", + ["affix"] = "Razor-sharp", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (17-18)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage8"] = { + "Attacks Gain (19-20)% of Damage as Extra Physical Damage", + ["affix"] = "Tempered", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (19-20)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAddedPhysicalDamage9"] = { + "Attacks Gain (21-23)% of Damage as Extra Physical Damage", + ["affix"] = "Flaring", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (21-23)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAlloyAttackAreaOfEffect1"] = { + "1% increased Area of Effect for Attacks per 10 Intelligence", + ["affix"] = "of the Stars", + ["group"] = "AttackAreaOfEffectPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 4494, + }, + ["tradeHashes"] = { + [434750362] = { + "1% increased Area of Effect for Attacks per 10 Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAlloyCastSpeedGloves1"] = { + "(10-30)% chance to gain a Power Charge when you Stun", + ["affix"] = "of the Stars", + ["group"] = "PowerChargeOnStun", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2531, + }, + ["tradeHashes"] = { + [3470535775] = { + "(10-30)% chance to gain a Power Charge when you Stun", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAlloyDamagingAilmentDuration1"] = { + "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["affix"] = "of the Stars", + ["group"] = "CriticalAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + "ailment", + }, + ["statOrder"] = { + 5818, + }, + ["tradeHashes"] = { + [440490623] = { + "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAlloyElementalPenetration1"] = { + "+(20-30)% to all Elemental Resistances", + ["affix"] = "of the Stars", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(20-30)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsAlloyRemnantPickupRange1"] = { + "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of the Stars", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsArmourAppliesToElementalDamage1"] = { + "+(10-12)% to all Elemental Resistances", + ["affix"] = "of Covering", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-12)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsArmourAppliesToElementalDamage2"] = { + "+(13-15)% to all Elemental Resistances", + ["affix"] = "of Sheathing", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(13-15)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsArmourAppliesToElementalDamage3"] = { + "+(16-18)% to all Elemental Resistances", + ["affix"] = "of Lining", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(16-18)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsArmourAppliesToElementalDamage4"] = { + "+(19-21)% to all Elemental Resistances", + ["affix"] = "of Padding", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(19-21)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsArmourAppliesToElementalDamage5"] = { + "+(22-24)% to all Elemental Resistances", + ["affix"] = "of Furring", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(22-24)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist1"] = { + "+1% to Maximum Chaos Resistance", + "+(6-9)% to Chaos Resistance", + ["affix"] = "of the Lost", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(6-9)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist2"] = { + "+1% to Maximum Chaos Resistance", + "+(10-13)% to Chaos Resistance", + ["affix"] = "of Banishment", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(10-13)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist3"] = { + "+1% to Maximum Chaos Resistance", + "+(14-17)% to Chaos Resistance", + ["affix"] = "of Eviction", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(14-17)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist4"] = { + "+1% to Maximum Chaos Resistance", + "+(18-21)% to Chaos Resistance", + ["affix"] = "of Expulsion", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(18-21)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist5"] = { + "+1% to Maximum Chaos Resistance", + "+(22-25)% to Chaos Resistance", + ["affix"] = "of Exile", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(22-25)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsChaosResist6"] = { + "+2% to Maximum Chaos Resistance", + "+(22-25)% to Chaos Resistance", + ["affix"] = "of Bameth", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+2% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(22-25)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist1"] = { + "+1% to Maximum Cold Resistance", + "+(11-15)% to Cold Resistance", + ["affix"] = "of the Seal", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(11-15)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist2"] = { + "+1% to Maximum Cold Resistance", + "+(16-20)% to Cold Resistance", + ["affix"] = "of the Penguin", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(16-20)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist3"] = { + "+1% to Maximum Cold Resistance", + "+(21-25)% to Cold Resistance", + ["affix"] = "of the Narwhal", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(21-25)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist4"] = { + "+2% to Maximum Cold Resistance", + "+(21-25)% to Cold Resistance", + ["affix"] = "of the Yeti", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(21-25)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist5"] = { + "+2% to Maximum Cold Resistance", + "+(26-30)% to Cold Resistance", + ["affix"] = "of the Walrus", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(26-30)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist6"] = { + "+2% to Maximum Cold Resistance", + "+(31-35)% to Cold Resistance", + ["affix"] = "of the Polar Bear", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(31-35)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist7"] = { + "+2% to Maximum Cold Resistance", + "+(36-40)% to Cold Resistance", + ["affix"] = "of the Ice", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(36-40)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsColdResist8"] = { + "+3% to Maximum Cold Resistance", + "+(36-40)% to Cold Resistance", + ["affix"] = "of Haast", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+3% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(36-40)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsCriticalMultiplier1"] = { + "+(0.5-1)% to Critical Hit Chance", + ["affix"] = "of Ire", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(0.5-1)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsCriticalMultiplier2"] = { + "+(1.1-1.5)% to Critical Hit Chance", + ["affix"] = "of Anger", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(1.1-1.5)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsCriticalMultiplier3"] = { + "+(1.6-2)% to Critical Hit Chance", + ["affix"] = "of Rage", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(1.6-2)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsCriticalMultiplier4"] = { + "+(2.1-2.5)% to Critical Hit Chance", + ["affix"] = "of Fury", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(2.1-2.5)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsCriticalMultiplier5"] = { + "+(2.5-3)% to Critical Hit Chance", + ["affix"] = "of Ferocity", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(2.5-3)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceAilmentDuration1"] = { + "(10-22)% increased Duration of Ailments on Enemies", + ["affix"] = "of Decay", + ["group"] = "IncreasedAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 1616, + }, + ["tradeHashes"] = { + [2419712247] = { + "(10-22)% increased Duration of Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceAilmentDuration2"] = { + "(23-37)% increased Duration of Ailments on Enemies", + ["affix"] = "of Decay", + ["group"] = "IncreasedAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 1616, + }, + ["tradeHashes"] = { + [2419712247] = { + "(23-37)% increased Duration of Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { + "+(10-25) to Ailment Threshold", + "(10-20)% increased Elemental Ailment Threshold", + ["affix"] = "Katla's", + ["group"] = "AilmentThresholdAndIncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4264, + 4266, + }, + ["tradeHashes"] = { + [1488650448] = { + "+(10-25) to Ailment Threshold", + }, + [3544800472] = { + "(10-20)% increased Elemental Ailment Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { + "+(26-40) to Ailment Threshold", + "(21-35)% increased Elemental Ailment Threshold", + ["affix"] = "Katla's", + ["group"] = "AilmentThresholdAndIncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4264, + 4266, + }, + ["tradeHashes"] = { + [1488650448] = { + "+(26-40) to Ailment Threshold", + }, + [3544800472] = { + "(21-35)% increased Elemental Ailment Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceBleedMagnitude1"] = { + "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", + ["affix"] = "Katla's", + ["group"] = "EnemiesExplodeOnDeathPhysicalChance", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3011, + }, + ["tradeHashes"] = { + [3295179224] = { + "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceBleedMagnitude2"] = { + "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", + ["affix"] = "Katla's", + ["group"] = "EnemiesExplodeOnDeathPhysicalChance", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3011, + }, + ["tradeHashes"] = { + [3295179224] = { + "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceCurseMagnitude1"] = { + "You can apply an additional Curse", + ["affix"] = "of Decay", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceCurseMagnitude2"] = { + "You can apply an additional Curse", + "(5-15)% increased Curse Magnitudes", + ["affix"] = "of Decay", + ["group"] = "AdditionalCurseOnEnemiesAndCurseMagnitude", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1909, + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(5-15)% increased Curse Magnitudes", + }, + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceExposureEffect1"] = { + "Damage Penetrates (4-8)% Elemental Resistances", + ["affix"] = "of Decay", + ["group"] = "ElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates (4-8)% Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceExposureEffect2"] = { + "Damage Penetrates (9-15)% Elemental Resistances", + ["affix"] = "of Decay", + ["group"] = "ElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates (9-15)% Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { + "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", + ["affix"] = "of Decay", + ["group"] = "ManaGainOnHitCursedEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 7983, + }, + ["tradeHashes"] = { + [2087996552] = { + "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { + "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + ["affix"] = "Katla's", + ["group"] = "EnemiesTakeIncreasedDamagePerAilmentType", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6260, + 6260.1, + }, + ["tradeHashes"] = { + [1509533589] = { + "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { + "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + ["affix"] = "Katla's", + ["group"] = "EnemiesTakeIncreasedDamagePerAilmentType", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6260, + 6260.1, + }, + ["tradeHashes"] = { + [1509533589] = { + "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceFasterLeech1"] = { + "(15-35)% increased Damage while Leeching", + ["affix"] = "of Decay", + ["group"] = "DamageWhileLeeching", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2795, + }, + ["tradeHashes"] = { + [310246444] = { + "(15-35)% increased Damage while Leeching", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { + "Enemies killed by your Hits are destroyed", + "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + ["affix"] = "Katla's", + ["group"] = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 6343, + 6521, + 6521.1, + }, + ["tradeHashes"] = { + [1617268696] = { + "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + }, + [2970902024] = { + "Enemies killed by your Hits are destroyed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { + "Enemies killed by your Hits are destroyed", + "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + ["affix"] = "Katla's", + ["group"] = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 6343, + 6521, + 6521.1, + }, + ["tradeHashes"] = { + [1617268696] = { + "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + }, + [2970902024] = { + "Enemies killed by your Hits are destroyed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { + "Gain (1-10) Life per Cursed Enemy Hit with Attacks", + ["affix"] = "of Decay", + ["group"] = "LifeGainOnHitCursedEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 7446, + }, + ["tradeHashes"] = { + [3072303874] = { + "Gain (1-10) Life per Cursed Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceLeechAmount1"] = { + "Leech (7-12)% of Physical Attack Damage as Life", + ["affix"] = "of Decay", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (7-12)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluencePoisonMagnitude1"] = { + "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["affix"] = "Katla's", + ["group"] = "ExplodeOnKillChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 3012, + }, + ["tradeHashes"] = { + [1776945532] = { + "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluencePoisonMagnitude2"] = { + "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["affix"] = "Katla's", + ["group"] = "ExplodeOnKillChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 3012, + }, + ["tradeHashes"] = { + [1776945532] = { + "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceSlowerLeech1"] = { + "(15-35)% increased Evasion while Leeching", + ["affix"] = "of Decay", + ["group"] = "IncreasedEvasionRatingWhileLeeching", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6510, + }, + ["tradeHashes"] = { + [3854334101] = { + "(15-35)% increased Evasion while Leeching", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceWitherMagnitude1"] = { + "Damage with Weapons Penetrates (5-9)% Chaos Resistance", + ["affix"] = "of Decay", + ["group"] = "ChaosPenetrationWithAttacks", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 3273, + }, + ["tradeHashes"] = { + [2237902788] = { + "Damage with Weapons Penetrates (5-9)% Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDecayInfluenceWitherMagnitude2"] = { + "Damage with Weapons Penetrates (10-17)% Chaos Resistance", + ["affix"] = "of Decay", + ["group"] = "ChaosPenetrationWithAttacks", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 3273, + }, + ["tradeHashes"] = { + [2237902788] = { + "Damage with Weapons Penetrates (10-17)% Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity1"] = { + "+(15-18)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Mongoose", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(15-18)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity2"] = { + "+(19-22)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Lynx", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(19-22)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity3"] = { + "+(23-26)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Fox", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(23-26)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity4"] = { + "+(27-30)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Falcon", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(27-30)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity5"] = { + "+(31-35)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Panther", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(31-35)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity6"] = { + "+(36-40)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Leopard", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(36-40)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity7"] = { + "+(41-45)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Jaguar", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(41-45)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity8"] = { + "+(46-50)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Phantom", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(46-50)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsDexterity9"] = { + "+(51-60)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Wind", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(51-60)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate1"] = { + "(26-30)% faster start of Energy Shield Recharge", + ["affix"] = "of Enlivening", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(26-30)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate2"] = { + "(31-35)% faster start of Energy Shield Recharge", + ["affix"] = "of Diffusion", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(31-35)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate3"] = { + "(36-40)% faster start of Energy Shield Recharge", + ["affix"] = "of Dispersal", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(36-40)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate4"] = { + "(41-45)% faster start of Energy Shield Recharge", + ["affix"] = "of Buffering", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(41-45)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate5"] = { + "(46-50)% faster start of Energy Shield Recharge", + ["affix"] = "of Ardour", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(46-50)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEnergyShieldRechargeRate6"] = { + "(51-55)% faster start of Energy Shield Recharge", + ["affix"] = "of Suffusion", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(51-55)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEssenceGoldDropped1"] = { + "Charms gain (0.13-0.27) charges per Second", + ["affix"] = "of the Essence", + ["group"] = "CharmChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain (0.13-0.27) charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEssenceLightningRecoupLife1"] = { + "(12-23)% of Damage taken from Deflected Hits Recouped as Life", + ["affix"] = "of the Essence", + ["group"] = "DeflectDamageTakenRecoupedAsLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6116, + }, + ["tradeHashes"] = { + [3471443885] = { + "(12-23)% of Damage taken from Deflected Hits Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { + "Life Flasks gain (0.13-0.27) charges per Second", + "Mana Flasks gain (0.13-0.27) charges per Second", + ["affix"] = "of the Essence", + ["group"] = "GenerateLifeAndManaFlasksChargesPerMinute", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 6892, + 6893, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain (0.13-0.27) charges per Second", + }, + [2200293569] = { + "Mana Flasks gain (0.13-0.27) charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEvasionGrantsDeflection1"] = { + "Prevent +3% of Damage from Deflected Hits", + ["affix"] = "of Deflecting", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +3% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEvasionGrantsDeflection2"] = { + "Prevent +4% of Damage from Deflected Hits", + ["affix"] = "of Bending", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +4% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEvasionGrantsDeflection3"] = { + "Prevent +5% of Damage from Deflected Hits", + ["affix"] = "of Curvation", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +5% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEvasionGrantsDeflection4"] = { + "Prevent +6% of Damage from Deflected Hits", + ["affix"] = "of Diversion", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +6% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsEvasionGrantsDeflection5"] = { + "Prevent +7% of Damage from Deflected Hits", + ["affix"] = "of Flexure", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +7% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist1"] = { + "+1% to Maximum Fire Resistance", + "+(11-15)% to Fire Resistance", + ["affix"] = "of the Whelpling", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(11-15)% to Fire Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist2"] = { + "+1% to Maximum Fire Resistance", + "+(16-20)% to Fire Resistance", + ["affix"] = "of the Salamander", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(16-20)% to Fire Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist3"] = { + "+1% to Maximum Fire Resistance", + "+(21-25)% to Fire Resistance", + ["affix"] = "of the Drake", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(21-25)% to Fire Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist4"] = { + "+2% to Maximum Fire Resistance", + "+(21-25)% to Fire Resistance", + ["affix"] = "of the Kiln", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(21-25)% to Fire Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist5"] = { + "+2% to Maximum Fire Resistance", + "+(26-30)% to Fire Resistance", + ["affix"] = "of the Furnace", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(26-30)% to Fire Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist6"] = { + "+2% to Maximum Fire Resistance", + "+(31-35)% to Fire Resistance", + ["affix"] = "of the Volcano", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(31-35)% to Fire Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist7"] = { + "+2% to Maximum Fire Resistance", + "+(36-40)% to Fire Resistance", + ["affix"] = "of Magma", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(36-40)% to Fire Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsFireResist8"] = { + "+3% to Maximum Fire Resistance", + "+(36-40)% to Fire Resistance", + ["affix"] = "of Tzteosh", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(36-40)% to Fire Resistance", + }, + [4095671657] = { + "+3% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsGlobalMeleeSkillGemLevel1"] = { + "+(10-12)% to Quality of all Skills", + ["affix"] = "of Combat", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(10-12)% to Quality of all Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsGlobalMeleeSkillGemLevel2"] = { + "+1 to Level of all Melee Skills", + "+(10-12)% to Quality of all Skills", + ["affix"] = "of Dueling", + ["group"] = "GlobalSkillGemQualityMeleeLevel", + ["level"] = 1, + ["modTags"] = { + "attack", + "gem", + }, + ["statOrder"] = { + 966, + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(10-12)% to Quality of all Skills", + }, + [9187492] = { + "+1 to Level of all Melee Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy1"] = { + "(12-14)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Precise", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(12-14)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy2"] = { + "(15-17)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Reliable", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(15-17)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy3"] = { + "(18-20)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Focused", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(18-20)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy4"] = { + "(21-23)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Deliberate", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(21-23)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy5"] = { + "(24-26)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Consistent", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(24-26)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy6"] = { + "(27-29)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Steady", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(27-29)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy7"] = { + "(30-32)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Hunter's", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(30-32)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy8"] = { + "(33-35)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Ranger's", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(33-35)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAccuracy9"] = { + "(36-38)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "Amazon's", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(36-38)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAttackSpeed1"] = { + "(8-12)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "of Skill", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(8-12)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAttackSpeed2"] = { + "(14-18)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "of Ease", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(14-18)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAttackSpeed3"] = { + "(20-24)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "of Mastery", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(20-24)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedAttackSpeed4"] = { + "(26-30)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "of Renown", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(26-30)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife1"] = { + "5% less damage taken while on Low Life", + ["affix"] = "Hale", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "5% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife10"] = { + "14% less damage taken while on Low Life", + ["affix"] = "Fecund", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "14% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife11"] = { + "15% less damage taken while on Low Life", + ["affix"] = "Vigorous", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "15% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife12"] = { + "16% less damage taken while on Low Life", + ["affix"] = "Rapturous", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "16% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife13"] = { + "17% less damage taken while on Low Life", + ["affix"] = "Prime", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "17% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife2"] = { + "6% less damage taken while on Low Life", + ["affix"] = "Healthy", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "6% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife3"] = { + "7% less damage taken while on Low Life", + ["affix"] = "Sanguine", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "7% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife4"] = { + "8% less damage taken while on Low Life", + ["affix"] = "Stalwart", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "8% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife5"] = { + "9% less damage taken while on Low Life", + ["affix"] = "Stout", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "9% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife6"] = { + "10% less damage taken while on Low Life", + ["affix"] = "Robust", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "10% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife7"] = { + "11% less damage taken while on Low Life", + ["affix"] = "Rotund", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "11% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife8"] = { + "12% less damage taken while on Low Life", + ["affix"] = "Virile", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "12% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedLife9"] = { + "13% less damage taken while on Low Life", + ["affix"] = "Athlete's", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "13% less damage taken while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana1"] = { + "(10-11)% more Attack damage while on Low Mana", + ["affix"] = "Beryl", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(10-11)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana2"] = { + "(12-13)% more Attack damage while on Low Mana", + ["affix"] = "Cobalt", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(12-13)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana3"] = { + "(14-15)% more Attack damage while on Low Mana", + ["affix"] = "Azure", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(14-15)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana4"] = { + "(16-17)% more Attack damage while on Low Mana", + ["affix"] = "Teal", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(16-17)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana5"] = { + "(18-19)% more Attack damage while on Low Mana", + ["affix"] = "Cerulean", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(18-19)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana6"] = { + "(20-21)% more Attack damage while on Low Mana", + ["affix"] = "Aqua", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(20-21)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana7"] = { + "(22-23)% more Attack damage while on Low Mana", + ["affix"] = "Opalescent", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(22-23)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana8"] = { + "(24-25)% more Attack damage while on Low Mana", + ["affix"] = "Gentian", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(24-25)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIncreasedMana9"] = { + "(26-27)% more Attack damage while on Low Mana", + ["affix"] = "Chalybeous", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(26-27)% more Attack damage while on Low Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence1"] = { + "(5-8)% increased Cooldown Recovery Rate", + ["affix"] = "of the Pupil", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(5-8)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence2"] = { + "(9-12)% increased Cooldown Recovery Rate", + ["affix"] = "of the Student", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(9-12)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence3"] = { + "(13-16)% increased Cooldown Recovery Rate", + ["affix"] = "of the Prodigy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(13-16)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence4"] = { + "(17-20)% increased Cooldown Recovery Rate", + ["affix"] = "of the Augur", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(17-20)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence5"] = { + "(21-24)% increased Cooldown Recovery Rate", + ["affix"] = "of the Philosopher", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(21-24)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence6"] = { + "(25-28)% increased Cooldown Recovery Rate", + ["affix"] = "of the Sage", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(25-28)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence7"] = { + "(29-32)% increased Cooldown Recovery Rate", + ["affix"] = "of the Savant", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(29-32)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsIntelligence8"] = { + "(33-36)% increased Cooldown Recovery Rate", + ["affix"] = "of the Virtuoso", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(33-36)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsItemFoundRarityIncrease1"] = { + "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "of Plunder", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsItemFoundRarityIncrease2"] = { + "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "of Raiding", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsItemFoundRarityIncrease3"] = { + "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "of Archaeology", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainPerTarget1"] = { + "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + ["affix"] = "of Rejuvenation", + ["group"] = "LifeOnHitIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7445, + }, + ["tradeHashes"] = { + [20762282] = { + "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainPerTarget2"] = { + "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + ["affix"] = "of Restoration", + ["group"] = "LifeOnHitIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7445, + }, + ["tradeHashes"] = { + [20762282] = { + "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainPerTarget3"] = { + "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + ["affix"] = "of Regrowth", + ["group"] = "LifeOnHitIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7445, + }, + ["tradeHashes"] = { + [20762282] = { + "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainPerTarget4"] = { + "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + ["affix"] = "of Nourishment", + ["group"] = "LifeOnHitIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7445, + }, + ["tradeHashes"] = { + [20762282] = { + "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath1"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "of Success", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath2"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "of Victory", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath3"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "of Triumph", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath4"] = { + "Recover 2% of maximum Life on Kill", + ["affix"] = "of Conquest", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 2% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath5"] = { + "Recover 2% of maximum Life on Kill", + ["affix"] = "of Vanquishing", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 2% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath6"] = { + "Recover 2% of maximum Life on Kill", + ["affix"] = "of Valour", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 2% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath7"] = { + "Recover 2% of maximum Life on Kill", + ["affix"] = "of Glory", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 2% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeGainedFromEnemyDeath8"] = { + "Recover 3% of maximum Life on Kill", + ["affix"] = "of Legend", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 3% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeLeech1"] = { + "Leech (8-8.9)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "of the Parasite", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (8-8.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeLeech2"] = { + "Leech (9-10.9)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "of the Locust", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (9-10.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeLeech3"] = { + "Leech (11-11.9)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "of the Remora", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (11-11.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeLeech4"] = { + "Leech (12-13.9)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "of the Lamprey", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (12-13.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLifeLeech5"] = { + "Leech (14-15)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "of the Vampire", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (14-15)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist1"] = { + "+1% to Maximum Lightning Resistance", + "+(11-15)% to Lightning Resistance", + ["affix"] = "of the Cloud", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(11-15)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist2"] = { + "+1% to Maximum Lightning Resistance", + "+(16-20)% to Lightning Resistance", + ["affix"] = "of the Squall", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(16-20)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist3"] = { + "+1% to Maximum Lightning Resistance", + "+(21-25)% to Lightning Resistance", + ["affix"] = "of the Storm", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(21-25)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist4"] = { + "+2% to Maximum Lightning Resistance", + "+(21-25)% to Lightning Resistance", + ["affix"] = "of the Thunderhead", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(21-25)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist5"] = { + "+2% to Maximum Lightning Resistance", + "+(26-30)% to Lightning Resistance", + ["affix"] = "of the Tempest", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(26-30)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist6"] = { + "+2% to Maximum Lightning Resistance", + "+(31-35)% to Lightning Resistance", + ["affix"] = "of the Maelstrom", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(31-35)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist7"] = { + "+2% to Maximum Lightning Resistance", + "+(36-40)% to Lightning Resistance", + ["affix"] = "of the Lightning", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(36-40)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLightningResist8"] = { + "+3% to Maximum Lightning Resistance", + "+(36-40)% to Lightning Resistance", + ["affix"] = "of Ephij", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+3% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(36-40)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Blessed", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Anointed", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Sanctified", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Hallowed", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Supple", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Pliant", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Flexible", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Durable", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Will-o-wisp's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Nymph's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Sylph's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Cherub's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Infixed", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ingrained", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Instilled", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Infused", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Inculcated", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Interpolated", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Inspired", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Augur's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Auspex's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Druid's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Haruspex's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Visionary's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Prophet's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Scrapper's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Brawler's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Fencer's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Gladiator's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Duelist's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Hero's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Legend's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Shadowy", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ethereal", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Unworldly", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ephemeral", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Evanescent", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Unreal", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Incorporeal", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { + "(21-22)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ascendant", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(21-22)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Bully's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Thug's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Brute's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Assailant's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Aggressor's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Predator's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Oyster's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Lobster's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Urchin's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Nautilus'", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Octopus'", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedArmourAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Crocodile's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Shining", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield2"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Glimmering", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield3"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Glittering", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield4"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Glowing", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield5"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Radiating", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield6"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Pulsing", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShield7"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Blazing", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Monk's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Prior's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Abbot's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Bishop's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Exarch's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Pope's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Protective", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Strong-Willed", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Resolute", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Fearless", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Dauntless", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Indomitable", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Unassailable", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Shadowy", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ethereal", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Unworldly", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ephemeral", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Evanescent", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Unreal", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Illusory", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Poet's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Musician's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Troubadour's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Bard's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Minstrel's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Maestro's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife1"] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Flea's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "3% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife2"] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Fawn's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "4% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife3"] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Mouflon's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "5% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife4"] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Ram's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "6% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife5"] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Ibex's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "7% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionAndLife6"] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "Stag's", + ["group"] = "RecoupLifeAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "8% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Agile", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating2"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Dancer's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating3"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Acrobat's", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating4"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Fleet", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating5"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Blurred", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating6"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Phased", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRating7"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Vaporous", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Shade's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Ghost's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Spectre's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Wraith's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Phantasm's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Nightmare's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Mirage's", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Lacquered", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Studded", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Ribbed", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Fortified", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Plated", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Carapaced", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { + "Has +4 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "Encased", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +4 to Evasion Rating per player level", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Reinforced", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(7-8)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Layered", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(9-10)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Lobstered", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(11-12)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Buttressed", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(13-14)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Thickened", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-16)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Girded", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(17-18)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "Impregnable", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(19-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath1"] = { + "Recover 1% of maximum Mana on Kill", + ["affix"] = "of Absorption", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 1% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath2"] = { + "Recover 1% of maximum Mana on Kill", + ["affix"] = "of Osmosis", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 1% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath3"] = { + "Recover 1% of maximum Mana on Kill", + ["affix"] = "of Infusion", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 1% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath4"] = { + "Recover 2% of maximum Mana on Kill", + ["affix"] = "of Enveloping", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 2% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath5"] = { + "Recover 2% of maximum Mana on Kill", + ["affix"] = "of Consumption", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 2% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath6"] = { + "Recover 2% of maximum Mana on Kill", + ["affix"] = "of Siphoning", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 2% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath7"] = { + "Recover 2% of maximum Mana on Kill", + ["affix"] = "of Devouring", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 2% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaGainedFromEnemyDeath8"] = { + "Recover 3% of maximum Mana on Kill", + ["affix"] = "of Assimilation", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 3% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaLeech1"] = { + "Leech (6-7.9)% of Physical Attack Damage as Mana", + "Leech Mana (20-25)% slower", + ["affix"] = "of the Thirsty", + ["group"] = "ManaLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1046, + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (20-25)% slower", + }, + [707457662] = { + "Leech (6-7.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaLeech2"] = { + "Leech (8-8.9)% of Physical Attack Damage as Mana", + "Leech Mana (20-25)% slower", + ["affix"] = "of the Parched", + ["group"] = "ManaLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1046, + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (20-25)% slower", + }, + [707457662] = { + "Leech (8-8.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaLeech3"] = { + "Leech (9-10.9)% of Physical Attack Damage as Mana", + "Leech Mana (20-25)% slower", + ["affix"] = "of the Arid", + ["group"] = "ManaLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1046, + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (20-25)% slower", + }, + [707457662] = { + "Leech (9-10.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaLeech4"] = { + "Leech (11-11.9)% of Physical Attack Damage as Mana", + "Leech Mana (20-25)% slower", + ["affix"] = "of the Drought", + ["group"] = "ManaLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1046, + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (20-25)% slower", + }, + [707457662] = { + "Leech (11-11.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsManaLeech5"] = { + "Leech (12-13)% of Physical Attack Damage as Mana", + "Leech Mana (20-25)% slower", + ["affix"] = "of the Desperate", + ["group"] = "ManaLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1046, + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (20-25)% slower", + }, + [707457662] = { + "Leech (12-13)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { + "Attacks Chain an additional time", + ["affix"] = "of the Hunt", + ["group"] = "AttacksChainAdditionalTimes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3783, + }, + ["tradeHashes"] = { + [3868118796] = { + "Attacks Chain an additional time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { + "Attacks Chain 2 additional times", + ["affix"] = "of the Hunt", + ["group"] = "AttacksChainAdditionalTimes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3783, + }, + ["tradeHashes"] = { + [3868118796] = { + "Attacks Chain 2 additional times", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { + "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileForkChanceIfMeleeRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9565, + }, + ["tradeHashes"] = { + [2189073790] = { + "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { + "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileForkChanceIfMeleeRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9565, + }, + ["tradeHashes"] = { + [2189073790] = { + "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { + "Projectiles Pierce an additional Target", + ["affix"] = "of the Hunt", + ["group"] = "AdditionalPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1549, + }, + ["tradeHashes"] = { + [2067062068] = { + "Projectiles Pierce an additional Target", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { + "Projectiles Pierce 2 additional Targets", + ["affix"] = "of the Hunt", + ["group"] = "AdditionalPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1549, + }, + ["tradeHashes"] = { + [2067062068] = { + "Projectiles Pierce 2 additional Targets", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { + "Hits against you have (30-39)% reduced Critical Damage Bonus", + ["affix"] = "of the Hunt", + ["group"] = "ReducedCriticalStrikeDamageTaken", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (30-39)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { + "Hits against you have (40-49)% reduced Critical Damage Bonus", + ["affix"] = "of the Hunt", + ["group"] = "ReducedCriticalStrikeDamageTaken", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (40-49)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { + "Hits against you have (50-60)% reduced Critical Damage Bonus", + ["affix"] = "of the Hunt", + ["group"] = "ReducedCriticalStrikeDamageTaken", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (50-60)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { + "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", + ["affix"] = "of the Hunt", + ["group"] = "SpreadMarkOnConsume", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10622, + }, + ["tradeHashes"] = { + [4031619030] = { + "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { + "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", + ["affix"] = "of the Hunt", + ["group"] = "SpreadMarkOnConsume", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10622, + }, + ["tradeHashes"] = { + [4031619030] = { + "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkEffect1"] = { + "(32-46)% increased Critical Hit Chance against Marked Enemies", + ["affix"] = "Kolr's", + ["group"] = "CriticalHitChanceAgainstMarkedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5834, + }, + ["tradeHashes"] = { + [1045789614] = { + "(32-46)% increased Critical Hit Chance against Marked Enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkEffect2"] = { + "(47-61)% increased Critical Hit Chance against Marked Enemies", + ["affix"] = "Kolr's", + ["group"] = "CriticalHitChanceAgainstMarkedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5834, + }, + ["tradeHashes"] = { + [1045789614] = { + "(47-61)% increased Critical Hit Chance against Marked Enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { + "Enemies you Mark take (1-5)% increased Damage", + ["affix"] = "of the Hunt", + ["group"] = "MarkedEnemyTakesIncreasedDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8828, + }, + ["tradeHashes"] = { + [2083058281] = { + "Enemies you Mark take (1-5)% increased Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { + "Enemies you Mark take (6-10)% increased Damage", + ["affix"] = "of the Hunt", + ["group"] = "MarkedEnemyTakesIncreasedDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8828, + }, + ["tradeHashes"] = { + [2083058281] = { + "Enemies you Mark take (6-10)% increased Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { + "(10-19)% increased Damage with Hits against Marked Enemy", + ["affix"] = "of the Hunt", + ["group"] = "DamageAgainstMarkedEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5979, + }, + ["tradeHashes"] = { + [2001747092] = { + "(10-19)% increased Damage with Hits against Marked Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { + "(20-29)% increased Damage with Hits against Marked Enemy", + ["affix"] = "of the Hunt", + ["group"] = "DamageAgainstMarkedEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5979, + }, + ["tradeHashes"] = { + [2001747092] = { + "(20-29)% increased Damage with Hits against Marked Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { + "Melee Attacks fire an additional Projectile", + ["affix"] = "Kolr's", + ["group"] = "MeleeAttackAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "melee", + "attack", + }, + ["statOrder"] = { + 3849, + }, + ["tradeHashes"] = { + [1776942008] = { + "Melee Attacks fire an additional Projectile", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { + "Melee Attacks fire 2 additional Projectiles", + ["affix"] = "Kolr's", + ["group"] = "MeleeAttackAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "melee", + "attack", + }, + ["statOrder"] = { + 3849, + }, + ["tradeHashes"] = { + [1776942008] = { + "Melee Attacks fire 2 additional Projectiles", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { + "Melee Attacks fire 3 additional Projectiles", + ["affix"] = "Kolr's", + ["group"] = "MeleeAttackAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "melee", + "attack", + }, + ["statOrder"] = { + 3849, + }, + ["tradeHashes"] = { + [1776942008] = { + "Melee Attacks fire 3 additional Projectiles", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { + "Projectiles have (25-44)% chance to Fork", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileChanceToFork", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9544, + }, + ["tradeHashes"] = { + [1549287843] = { + "Projectiles have (25-44)% chance to Fork", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { + "Projectiles have (45-65)% chance to Fork", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileChanceToFork", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9544, + }, + ["tradeHashes"] = { + [1549287843] = { + "Projectiles have (45-65)% chance to Fork", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { + "(1-2)% increased Projectile Damage per Power Charge", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2415, + }, + ["tradeHashes"] = { + [3816512110] = { + "(1-2)% increased Projectile Damage per Power Charge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { + "(3-4)% increased Projectile Damage per Power Charge", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2415, + }, + ["tradeHashes"] = { + [3816512110] = { + "(3-4)% increased Projectile Damage per Power Charge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { + "(5-6)% increased Projectile Damage per Power Charge", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2415, + }, + ["tradeHashes"] = { + [3816512110] = { + "(5-6)% increased Projectile Damage per Power Charge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { + "Projectiles have (15-20)% chance to Shock", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileShockChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2476, + }, + ["tradeHashes"] = { + [2803352419] = { + "Projectiles have (15-20)% chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { + "Projectiles have (21-25)% chance to Shock", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileShockChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2476, + }, + ["tradeHashes"] = { + [2803352419] = { + "Projectiles have (21-25)% chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { + "Projectiles have (26-30)% chance to Shock", + ["affix"] = "of the Hunt", + ["group"] = "ProjectileShockChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2476, + }, + ["tradeHashes"] = { + [2803352419] = { + "Projectiles have (26-30)% chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsReducedLocalAttributeRequirements1"] = { + "+(5-10) to all Attributes", + ["affix"] = "of the Worthy", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-10) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsReducedLocalAttributeRequirements2"] = { + "+(11-15) to all Attributes", + ["affix"] = "of the Apt", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(11-15) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsReducedLocalAttributeRequirements3"] = { + "+(16-20) to all Attributes", + ["affix"] = "of the Talented", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(16-20) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsReducedLocalAttributeRequirements4"] = { + "+(21-25) to all Attributes", + ["affix"] = "of the Skilled", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(21-25) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsReducedLocalAttributeRequirements5"] = { + "+(26-30) to all Attributes", + ["affix"] = "of the Proficient", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(26-30) to all Attributes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength1"] = { + "(7-10)% increased Area of Effect for Attacks", + ["affix"] = "of the Brute", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(7-10)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength2"] = { + "(11-13)% increased Area of Effect for Attacks", + ["affix"] = "of the Wrestler", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(11-13)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength3"] = { + "(14-16)% increased Area of Effect for Attacks", + ["affix"] = "of the Bear", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(14-16)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength4"] = { + "(17-19)% increased Area of Effect for Attacks", + ["affix"] = "of the Lion", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(17-19)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength5"] = { + "(20-22)% increased Area of Effect for Attacks", + ["affix"] = "of the Gorilla", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(20-22)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength6"] = { + "(23-25)% increased Area of Effect for Attacks", + ["affix"] = "of the Goliath", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(23-25)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength7"] = { + "(26-28)% increased Area of Effect for Attacks", + ["affix"] = "of the Leviathan", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(26-28)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsStrength8"] = { + "(29-32)% increased Area of Effect for Attacks", + ["affix"] = "of the Titan", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(29-32)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { + "(7-16)% increased maximum Energy Shield", + ["affix"] = "", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(7-16)% increased maximum Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { + "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "LifeOnHitIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7445, + }, + ["tradeHashes"] = { + [20762282] = { + "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { + "Attacks have (35-80)% chance to cause Bleeding", + ["affix"] = "", + ["group"] = "ChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + }, + ["tradeHashes"] = { + [2055966527] = { + "Attacks have (35-80)% chance to cause Bleeding", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalChillEffect"] = { + "(20-50)% chance to Avoid being Chilled", + ["affix"] = "", + ["group"] = "AvoidChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1600, + }, + ["tradeHashes"] = { + [3483999943] = { + "(20-50)% chance to Avoid being Chilled", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { + "(20-30)% reduced effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "(20-30)% reduced effect of Curses on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { + "(10-20)% increased Damage with Hits per Curse on Enemy", + ["affix"] = "", + ["group"] = "IncreasedDamagePerCurse", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2749, + }, + ["tradeHashes"] = { + [1818773442] = { + "(10-20)% increased Damage with Hits per Curse on Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { + "(25-45)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(25-45)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { + "Regenerate (5-15)% of maximum Life per second while Frozen", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileFrozen", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3419, + }, + ["tradeHashes"] = { + [2656696317] = { + "Regenerate (5-15)% of maximum Life per second while Frozen", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { + "Dazes on Hit", + ["affix"] = "", + ["group"] = "DazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4669, + }, + ["tradeHashes"] = { + [3146310524] = { + "Dazes on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { + "Attacks have added Chaos damage equal to (1-3)% of maximum Life", + ["affix"] = "", + ["group"] = "ChaosDamageMaximumLife", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 4463, + }, + ["tradeHashes"] = { + [1141563002] = { + "Attacks have added Chaos damage equal to (1-3)% of maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { + "(20-50)% chance to Avoid being Ignited", + ["affix"] = "", + ["group"] = "AvoidIgnite", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(20-50)% chance to Avoid being Ignited", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { + "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", + ["affix"] = "", + ["group"] = "AttackLightningDamageMaximumMana", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 4550, + }, + ["tradeHashes"] = { + [2778228111] = { + "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { + "+(205-221) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(205-221) to maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { + "Life Leech effects are not removed when Unreserved Life is Filled", + ["affix"] = "", + ["group"] = "LifeLeechNotRemovedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2928, + }, + ["tradeHashes"] = { + [4224337800] = { + "Life Leech effects are not removed when Unreserved Life is Filled", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { + "(15-40)% reduced Mana Cost of Attacks", + ["affix"] = "", + ["group"] = "ReducedAttackManaCost", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4538, + }, + ["tradeHashes"] = { + [2859471749] = { + "(15-40)% reduced Mana Cost of Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { + "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9688, + }, + ["tradeHashes"] = { + [2456226238] = { + "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { + "Gain 1% of Physical Damage as Extra Fire Damage per Rage", + ["affix"] = "", + ["group"] = "PhysicalAddedAsFirePerRage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 9301, + }, + ["tradeHashes"] = { + [1336175820] = { + "Gain 1% of Physical Damage as Extra Fire Damage per Rage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { + "(20-30)% increased Attack Damage while on Low Life", + ["affix"] = "", + ["group"] = "AttackDamageOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4530, + }, + ["tradeHashes"] = { + [4246007234] = { + "(20-30)% increased Attack Damage while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { + "+(36-42) to maximum Mana", + "(15-35)% increased Attack Damage", + ["affix"] = "", + ["group"] = "AttackDamageAndBaseMaximumMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "damage", + "attack", + }, + ["statOrder"] = { + 892, + 1156, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(36-42) to maximum Mana", + }, + [2843214518] = { + "(15-35)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { + "Gain (1-3) Rage on Melee Hit", + ["affix"] = "", + ["group"] = "RageOnHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain (1-3) Rage on Melee Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { + "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", + "Poison you inflict is Reflected to you", + ["affix"] = "", + ["group"] = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "poison", + "damage", + "chaos", + "ailment", + }, + ["statOrder"] = { + 6008, + 9503, + }, + ["tradeHashes"] = { + [1034580601] = { + "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", + }, + [2374357674] = { + "Poison you inflict is Reflected to you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { + "Critical Hits Poison the enemy", + ["affix"] = "", + ["group"] = "PoisonOnCrit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 9502, + }, + ["tradeHashes"] = { + [62849030] = { + "Critical Hits Poison the enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { + "(10-60)% reduced Poison Duration on you", + ["affix"] = "", + ["group"] = "ReducedPoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(10-60)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { + "+(12-23)% to Chaos Resistance per Poison on you", + "Poison you inflict is Reflected to you", + ["affix"] = "", + ["group"] = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "poison", + "chaos", + "resistance", + "ailment", + }, + ["statOrder"] = { + 5591, + 9503, + }, + ["tradeHashes"] = { + [175362265] = { + "+(12-23)% to Chaos Resistance per Poison on you", + }, + [2374357674] = { + "Poison you inflict is Reflected to you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { + "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", + "Poison you inflict is Reflected to you", + ["affix"] = "", + ["group"] = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "speed", + "ailment", + }, + ["statOrder"] = { + 9170, + 9503, + }, + ["tradeHashes"] = { + [1360723495] = { + "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", + }, + [2374357674] = { + "Poison you inflict is Reflected to you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalShockEffect"] = { + "(20-50)% chance to Avoid being Shocked", + ["affix"] = "", + ["group"] = "AvoidShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(20-50)% chance to Avoid being Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { + "Non-Channelling Skills Cost -(8-3) Mana", + ["affix"] = "", + ["group"] = "ManaCostBaseNonChannelled", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 9910, + }, + ["tradeHashes"] = { + [407482587] = { + "Non-Channelling Skills Cost -(8-3) Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { + "Attacks have added Physical damage equal to (1-3)% of maximum Life", + ["affix"] = "", + ["group"] = "PhysicalDamageMaximumLife", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4464, + }, + ["tradeHashes"] = { + [2723294374] = { + "Attacks have added Physical damage equal to (1-3)% of maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IgniteChanceIncrease1"] = { + "(51-60)% increased Flammability Magnitude", + ["affix"] = "of Ignition", + ["group"] = "IgniteChanceIncrease", + ["level"] = 15, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(51-60)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["IgniteChanceIncrease2"] = { + "(61-70)% increased Flammability Magnitude", + ["affix"] = "of Scorching", + ["group"] = "IgniteChanceIncrease", + ["level"] = 30, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(61-70)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["IgniteChanceIncrease3"] = { + "(71-80)% increased Flammability Magnitude", + ["affix"] = "of Incineration", + ["group"] = "IgniteChanceIncrease", + ["level"] = 45, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(71-80)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["IgniteChanceIncrease4"] = { + "(81-90)% increased Flammability Magnitude", + ["affix"] = "of Combustion", + ["group"] = "IgniteChanceIncrease", + ["level"] = 60, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(81-90)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["IgniteChanceIncrease5"] = { + "(91-100)% increased Flammability Magnitude", + ["affix"] = "of Conflagration", + ["group"] = "IgniteChanceIncrease", + ["level"] = 75, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(91-100)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_fire_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy1"] = { + "+(11-32) to Accuracy Rating", + ["affix"] = "Precise", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(11-32) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy2"] = { + "+(33-60) to Accuracy Rating", + ["affix"] = "Reliable", + ["group"] = "IncreasedAccuracy", + ["level"] = 11, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(33-60) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy3"] = { + "+(61-84) to Accuracy Rating", + ["affix"] = "Focused", + ["group"] = "IncreasedAccuracy", + ["level"] = 18, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(61-84) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy4"] = { + "+(85-123) to Accuracy Rating", + ["affix"] = "Deliberate", + ["group"] = "IncreasedAccuracy", + ["level"] = 26, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(85-123) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy5"] = { + "+(124-167) to Accuracy Rating", + ["affix"] = "Consistent", + ["group"] = "IncreasedAccuracy", + ["level"] = 36, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(124-167) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy6"] = { + "+(168-236) to Accuracy Rating", + ["affix"] = "Steady", + ["group"] = "IncreasedAccuracy", + ["level"] = 48, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(168-236) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy7"] = { + "+(237-346) to Accuracy Rating", + ["affix"] = "Hunter's", + ["group"] = "IncreasedAccuracy", + ["level"] = 58, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(237-346) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy8"] = { + "+(347-450) to Accuracy Rating", + ["affix"] = "Ranger's", + ["group"] = "IncreasedAccuracy", + ["level"] = 67, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(347-450) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "ring", + "amulet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAccuracy9"] = { + "+(451-550) to Accuracy Rating", + ["affix"] = "Amazon's", + ["group"] = "IncreasedAccuracy", + ["level"] = 76, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(451-550) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "helmet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedAttackSpeed1"] = { + "(5-7)% increased Attack Speed", + ["affix"] = "of Skill", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-7)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedAttackSpeed2"] = { + "(8-10)% increased Attack Speed", + ["affix"] = "of Ease", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 22, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(8-10)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedAttackSpeed3"] = { + "(11-13)% increased Attack Speed", + ["affix"] = "of Mastery", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 37, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(11-13)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedAttackSpeed4"] = { + "(14-16)% increased Attack Speed", + ["affix"] = "of Renown", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 60, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(14-16)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed1"] = { + "(9-12)% increased Cast Speed", + ["affix"] = "of Talent", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(9-12)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed2"] = { + "(13-16)% increased Cast Speed", + ["affix"] = "of Nimbleness", + ["group"] = "IncreasedCastSpeed", + ["level"] = 15, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(13-16)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed3"] = { + "(17-20)% increased Cast Speed", + ["affix"] = "of Expertise", + ["group"] = "IncreasedCastSpeed", + ["level"] = 30, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(17-20)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed4"] = { + "(21-24)% increased Cast Speed", + ["affix"] = "of Sortilege", + ["group"] = "IncreasedCastSpeed", + ["level"] = 45, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(21-24)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed5"] = { + "(25-28)% increased Cast Speed", + ["affix"] = "of Legerdemain", + ["group"] = "IncreasedCastSpeed", + ["level"] = 60, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(25-28)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed6"] = { + "(29-32)% increased Cast Speed", + ["affix"] = "of Prestidigitation", + ["group"] = "IncreasedCastSpeed", + ["level"] = 70, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(29-32)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedCastSpeed7"] = { + "(33-35)% increased Cast Speed", + ["affix"] = "of Finesse", + ["group"] = "IncreasedCastSpeed", + ["level"] = 80, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(33-35)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand1_"] = { + "(14-19)% increased Cast Speed", + ["affix"] = "of Talent", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(14-19)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand2"] = { + "(20-25)% increased Cast Speed", + ["affix"] = "of Nimbleness", + ["group"] = "IncreasedCastSpeed", + ["level"] = 15, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(20-25)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand3"] = { + "(26-31)% increased Cast Speed", + ["affix"] = "of Expertise", + ["group"] = "IncreasedCastSpeed", + ["level"] = 30, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(26-31)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand4"] = { + "(32-37)% increased Cast Speed", + ["affix"] = "of Sortilege", + ["group"] = "IncreasedCastSpeed", + ["level"] = 45, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(32-37)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand5"] = { + "(38-43)% increased Cast Speed", + ["affix"] = "of Legerdemain", + ["group"] = "IncreasedCastSpeed", + ["level"] = 60, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(38-43)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand6"] = { + "(44-49)% increased Cast Speed", + ["affix"] = "of Prestidigitation", + ["group"] = "IncreasedCastSpeed", + ["level"] = 70, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(44-49)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedCastSpeedTwoHand7"] = { + "(50-52)% increased Cast Speed", + ["affix"] = "of Finesse", + ["group"] = "IncreasedCastSpeed", + ["level"] = 80, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(50-52)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedChaosDamageEssence5"] = { + "(23-26)% increased Chaos Damage", + ["affix"] = "of the Essence", + ["group"] = "IncreasedChaosDamage", + ["level"] = 58, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(23-26)% increased Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedChaosDamageEssence6"] = { + "(27-30)% increased Chaos Damage", + ["affix"] = "of the Essence", + ["group"] = "IncreasedChaosDamage", + ["level"] = 74, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(27-30)% increased Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedChaosDamageEssence7"] = { + "(31-34)% increased Chaos Damage", + ["affix"] = "of the Essence", + ["group"] = "IncreasedChaosDamage", + ["level"] = 82, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(31-34)% increased Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedEnergyShield1"] = { + "+(8-14) to maximum Energy Shield", + ["affix"] = "Shining", + ["group"] = "EnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(8-14) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield10"] = { + "+(80-89) to maximum Energy Shield", + ["affix"] = "Incandescent", + ["group"] = "EnergyShield", + ["level"] = 80, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(80-89) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield2"] = { + "+(15-20) to maximum Energy Shield", + ["affix"] = "Glimmering", + ["group"] = "EnergyShield", + ["level"] = 11, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(15-20) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield3"] = { + "+(21-24) to maximum Energy Shield", + ["affix"] = "Glittering", + ["group"] = "EnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(21-24) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield4"] = { + "+(25-33) to maximum Energy Shield", + ["affix"] = "Glowing", + ["group"] = "EnergyShield", + ["level"] = 25, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(25-33) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield5"] = { + "+(34-41) to maximum Energy Shield", + ["affix"] = "Radiating", + ["group"] = "EnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(34-41) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield6"] = { + "+(42-51) to maximum Energy Shield", + ["affix"] = "Pulsing", + ["group"] = "EnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(42-51) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield7"] = { + "+(52-61) to maximum Energy Shield", + ["affix"] = "Blazing", + ["group"] = "EnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(52-61) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield8"] = { + "+(62-70) to maximum Energy Shield", + ["affix"] = "Dazzling", + ["group"] = "EnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(62-70) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShield9"] = { + "+(71-79) to maximum Energy Shield", + ["affix"] = "Scintillating", + ["group"] = "EnergyShield", + ["level"] = 70, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(71-79) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent1"] = { + "(10-14)% increased maximum Energy Shield", + ["affix"] = "Protective", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(10-14)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent2"] = { + "(15-20)% increased maximum Energy Shield", + ["affix"] = "Strong-Willed", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(15-20)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent3"] = { + "(21-26)% increased maximum Energy Shield", + ["affix"] = "Resolute", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 33, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(21-26)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent4"] = { + "(27-32)% increased maximum Energy Shield", + ["affix"] = "Fearless", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(27-32)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent5"] = { + "(33-38)% increased maximum Energy Shield", + ["affix"] = "Dauntless", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(33-38)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent6"] = { + "(39-44)% increased maximum Energy Shield", + ["affix"] = "Indomitable", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 65, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(39-44)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEnergyShieldPercent7"] = { + "(45-50)% increased maximum Energy Shield", + ["affix"] = "Unassailable", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(45-50)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRating1"] = { + "+(8-17) to Evasion Rating", + ["affix"] = "Agile", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(8-17) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating2"] = { + "+(18-38) to Evasion Rating", + ["affix"] = "Dancer's", + ["group"] = "EvasionRating", + ["level"] = 11, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(18-38) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating3"] = { + "+(39-51) to Evasion Rating", + ["affix"] = "Acrobat's", + ["group"] = "EvasionRating", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(39-51) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating4"] = { + "+(52-79) to Evasion Rating", + ["affix"] = "Fleet", + ["group"] = "EvasionRating", + ["level"] = 25, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(52-79) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating5"] = { + "+(80-107) to Evasion Rating", + ["affix"] = "Blurred", + ["group"] = "EvasionRating", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(80-107) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating6"] = { + "+(108-141) to Evasion Rating", + ["affix"] = "Phased", + ["group"] = "EvasionRating", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(108-141) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating7"] = { + "+(142-174) to Evasion Rating", + ["affix"] = "Vaporous", + ["group"] = "EvasionRating", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(142-174) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating8"] = { + "+(175-202) to Evasion Rating", + ["affix"] = "Elusory", + ["group"] = "EvasionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(175-202) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRating9"] = { + "+(203-233) to Evasion Rating", + ["affix"] = "Adroit", + ["group"] = "EvasionRating", + ["level"] = 70, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(203-233) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent1"] = { + "(10-14)% increased Evasion Rating", + ["affix"] = "Shade's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(10-14)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent2"] = { + "(15-20)% increased Evasion Rating", + ["affix"] = "Ghost's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(15-20)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent3"] = { + "(21-26)% increased Evasion Rating", + ["affix"] = "Spectre's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(21-26)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent4"] = { + "(27-32)% increased Evasion Rating", + ["affix"] = "Wraith's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(27-32)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent5"] = { + "(33-38)% increased Evasion Rating", + ["affix"] = "Phantasm's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(33-38)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent6"] = { + "(39-44)% increased Evasion Rating", + ["affix"] = "Nightmare's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 70, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(39-44)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedEvasionRatingPercent7"] = { + "(45-50)% increased Evasion Rating", + ["affix"] = "Mirage's", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 77, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(45-50)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedLife1"] = { + "+(10-19) to maximum Life", + ["affix"] = "Hale", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(10-19) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife10"] = { + "+(150-174) to maximum Life", + ["affix"] = "Fecund", + ["group"] = "IncreasedLife", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(150-174) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife11"] = { + "+(175-189) to maximum Life", + ["affix"] = "Vigorous", + ["group"] = "IncreasedLife", + ["level"] = 70, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(175-189) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedLife12"] = { + "+(190-199) to maximum Life", + ["affix"] = "Rapturous", + ["group"] = "IncreasedLife", + ["level"] = 75, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(190-199) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedLife13"] = { + "+(200-214) to maximum Life", + ["affix"] = "Prime", + ["group"] = "IncreasedLife", + ["level"] = 80, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(200-214) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedLife2"] = { + "+(20-29) to maximum Life", + ["affix"] = "Healthy", + ["group"] = "IncreasedLife", + ["level"] = 6, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(20-29) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife3"] = { + "+(30-39) to maximum Life", + ["affix"] = "Sanguine", + ["group"] = "IncreasedLife", + ["level"] = 16, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-39) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife4"] = { + "+(40-59) to maximum Life", + ["affix"] = "Stalwart", + ["group"] = "IncreasedLife", + ["level"] = 24, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-59) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife5"] = { + "+(60-69) to maximum Life", + ["affix"] = "Stout", + ["group"] = "IncreasedLife", + ["level"] = 33, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-69) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife6"] = { + "+(70-84) to maximum Life", + ["affix"] = "Robust", + ["group"] = "IncreasedLife", + ["level"] = 38, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-84) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife7"] = { + "+(85-99) to maximum Life", + ["affix"] = "Rotund", + ["group"] = "IncreasedLife", + ["level"] = 46, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(85-99) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife8"] = { + "+(100-119) to maximum Life", + ["affix"] = "Virile", + ["group"] = "IncreasedLife", + ["level"] = 54, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(100-119) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLife9"] = { + "+(120-149) to maximum Life", + ["affix"] = "Athlete's", + ["group"] = "IncreasedLife", + ["level"] = 60, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(120-149) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "helmet", + "gloves", + "boots", + "belt", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedLifeLeechRateEssence1"] = { + "Leech Life 150% faster", + ["affix"] = "of the Essence", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 63, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life 150% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedMana1"] = { + "+(10-14) to maximum Mana", + ["affix"] = "Beryl", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(10-14) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana10"] = { + "+(125-149) to maximum Mana", + ["affix"] = "Mazarine", + ["group"] = "IncreasedMana", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(125-149) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana11"] = { + "+(150-164) to maximum Mana", + ["affix"] = "Blue", + ["group"] = "IncreasedMana", + ["level"] = 70, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(150-164) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana12"] = { + "+(165-179) to maximum Mana", + ["affix"] = "Zaffre", + ["group"] = "IncreasedMana", + ["level"] = 75, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(165-179) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedMana13"] = { + "+(180-189) to maximum Mana", + ["affix"] = "Ultramarine", + ["group"] = "IncreasedMana", + ["level"] = 82, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(180-189) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedMana2"] = { + "+(15-24) to maximum Mana", + ["affix"] = "Cobalt", + ["group"] = "IncreasedMana", + ["level"] = 6, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(15-24) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana3"] = { + "+(25-34) to maximum Mana", + ["affix"] = "Azure", + ["group"] = "IncreasedMana", + ["level"] = 16, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(25-34) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana4"] = { + "+(35-54) to maximum Mana", + ["affix"] = "Teal", + ["group"] = "IncreasedMana", + ["level"] = 25, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(35-54) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana5"] = { + "+(55-64) to maximum Mana", + ["affix"] = "Cerulean", + ["group"] = "IncreasedMana", + ["level"] = 33, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(55-64) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana6"] = { + "+(65-79) to maximum Mana", + ["affix"] = "Aqua", + ["group"] = "IncreasedMana", + ["level"] = 38, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(65-79) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana7"] = { + "+(80-89) to maximum Mana", + ["affix"] = "Opalescent", + ["group"] = "IncreasedMana", + ["level"] = 46, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-89) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana8"] = { + "+(90-104) to maximum Mana", + ["affix"] = "Gentian", + ["group"] = "IncreasedMana", + ["level"] = 54, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(90-104) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedMana9"] = { + "+(105-124) to maximum Mana", + ["affix"] = "Chalybeous", + ["group"] = "IncreasedMana", + ["level"] = 60, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(105-124) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "helmet", + "gloves", + "boots", + "focus", + "sceptre", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon1"] = { + "+(20-28) to maximum Mana", + ["affix"] = "Beryl", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-28) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon10"] = { + "+(249-298) to maximum Mana", + ["affix"] = "Mazarine", + ["group"] = "IncreasedMana", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(249-298) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon11"] = { + "+(299-328) to maximum Mana", + ["affix"] = "Blue", + ["group"] = "IncreasedMana", + ["level"] = 70, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(299-328) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon12"] = { + "+(231-251) to maximum Mana", + ["affix"] = "Zaffre", + ["group"] = "IncreasedMana", + ["level"] = 75, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(231-251) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedManaTwoHandWeapon2_"] = { + "+(29-48) to maximum Mana", + ["affix"] = "Cobalt", + ["group"] = "IncreasedMana", + ["level"] = 6, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(29-48) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon3_"] = { + "+(49-68) to maximum Mana", + ["affix"] = "Azure", + ["group"] = "IncreasedMana", + ["level"] = 16, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(49-68) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon4"] = { + "+(69-108) to maximum Mana", + ["affix"] = "Sapphire", + ["group"] = "IncreasedMana", + ["level"] = 25, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(69-108) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon5"] = { + "+(109-128) to maximum Mana", + ["affix"] = "Cerulean", + ["group"] = "IncreasedMana", + ["level"] = 33, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(109-128) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon6"] = { + "+(129-158) to maximum Mana", + ["affix"] = "Aqua", + ["group"] = "IncreasedMana", + ["level"] = 38, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(129-158) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon7"] = { + "+(159-178) to maximum Mana", + ["affix"] = "Opalescent", + ["group"] = "IncreasedMana", + ["level"] = 46, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(159-178) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon8_"] = { + "+(179-208) to maximum Mana", + ["affix"] = "Gentian", + ["group"] = "IncreasedMana", + ["level"] = 54, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(179-208) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedManaTwoHandWeapon9"] = { + "+(209-248) to maximum Mana", + ["affix"] = "Chalybeous", + ["group"] = "IncreasedMana", + ["level"] = 60, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(209-248) to maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating1"] = { + "+(12-22) to Armour", + ["affix"] = "Lacquered", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(12-22) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating10"] = { + "+(312-351) to Armour", + ["affix"] = "Unmoving", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 80, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(312-351) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating2"] = { + "+(23-51) to Armour", + ["affix"] = "Studded", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 11, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(23-51) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating3"] = { + "+(52-68) to Armour", + ["affix"] = "Ribbed", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(52-68) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating4"] = { + "+(69-107) to Armour", + ["affix"] = "Fortified", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 25, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(69-107) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating5"] = { + "+(108-140) to Armour", + ["affix"] = "Plated", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(108-140) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating6"] = { + "+(141-186) to Armour", + ["affix"] = "Carapaced", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(141-186) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating7"] = { + "+(187-225) to Armour", + ["affix"] = "Encased", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(187-225) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating8_"] = { + "+(226-267) to Armour", + ["affix"] = "Enveloped", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(226-267) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRating9"] = { + "+(268-311) to Armour", + ["affix"] = "Abating", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 70, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(268-311) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { + "(10-14)% increased Armour", + ["affix"] = "Reinforced", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(10-14)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { + "(15-20)% increased Armour", + ["affix"] = "Layered", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(15-20)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { + "(21-26)% increased Armour", + ["affix"] = "Lobstered", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(21-26)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { + "(27-32)% increased Armour", + ["affix"] = "Buttressed", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(27-32)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { + "(33-38)% increased Armour", + ["affix"] = "Thickened", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(33-38)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { + "(39-44)% increased Armour", + ["affix"] = "Girded", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(39-44)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { + "(45-50)% increased Armour", + ["affix"] = "Impregnable", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(45-50)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedSpirit1"] = { + "+(30-33) to Spirit", + ["affix"] = "Lady's", + ["group"] = "BaseSpirit", + ["level"] = 16, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(30-33) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedSpirit2"] = { + "+(34-37) to Spirit", + ["affix"] = "Baronness'", + ["group"] = "BaseSpirit", + ["level"] = 25, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(34-37) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedSpirit3"] = { + "+(38-42) to Spirit", + ["affix"] = "Viscountess'", + ["group"] = "BaseSpirit", + ["level"] = 33, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(38-42) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedSpirit4"] = { + "+(43-46) to Spirit", + ["affix"] = "Marchioness'", + ["group"] = "BaseSpirit", + ["level"] = 46, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(43-46) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedSpirit5"] = { + "+(47-50) to Spirit", + ["affix"] = "Countess'", + ["group"] = "BaseSpirit", + ["level"] = 54, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(47-50) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["IncreasedSpirit6"] = { + "+(51-53) to Spirit", + ["affix"] = "Duchess'", + ["group"] = "BaseSpirit", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(51-53) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedSpirit7"] = { + "+(54-56) to Spirit", + ["affix"] = "Princess'", + ["group"] = "BaseSpirit", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(54-56) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedSpirit8"] = { + "+(57-61) to Spirit", + ["affix"] = "Queen's", + ["group"] = "BaseSpirit", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(57-61) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["IncreasedStunThresholdEssence5"] = { + "(31-39)% increased Stun Threshold", + ["affix"] = "of the Essence", + ["group"] = "IncreasedStunThreshold", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(31-39)% increased Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedStunThresholdEssence6"] = { + "(40-45)% increased Stun Threshold", + ["affix"] = "of the Essence", + ["group"] = "IncreasedStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(40-45)% increased Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedStunThresholdEssence7"] = { + "(46-60)% increased Stun Threshold", + ["affix"] = "of the Essence", + ["group"] = "IncreasedStunThreshold", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(46-60)% increased Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["Intelligence1"] = { + "+(5-8) to Intelligence", + ["affix"] = "of the Pupil", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-8) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence2"] = { + "+(9-12) to Intelligence", + ["affix"] = "of the Student", + ["group"] = "Intelligence", + ["level"] = 11, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(9-12) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence3"] = { + "+(13-16) to Intelligence", + ["affix"] = "of the Prodigy", + ["group"] = "Intelligence", + ["level"] = 22, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(13-16) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence4"] = { + "+(17-20) to Intelligence", + ["affix"] = "of the Augur", + ["group"] = "Intelligence", + ["level"] = 33, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(17-20) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence5"] = { + "+(21-24) to Intelligence", + ["affix"] = "of the Philosopher", + ["group"] = "Intelligence", + ["level"] = 44, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(21-24) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence6"] = { + "+(25-27) to Intelligence", + ["affix"] = "of the Sage", + ["group"] = "Intelligence", + ["level"] = 55, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(25-27) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence7"] = { + "+(28-30) to Intelligence", + ["affix"] = "of the Savant", + ["group"] = "Intelligence", + ["level"] = 66, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(28-30) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence8"] = { + "+(31-33) to Intelligence", + ["affix"] = "of the Virtuoso", + ["group"] = "Intelligence", + ["level"] = 74, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(31-33) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "int_armour", + "str_int_armour", + "dex_int_armour", + "str_dex_int_armour", + "dagger", + "warstaff", + "flail", + "wand", + "staff", + "sceptre", + "trap", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Intelligence9"] = { + "+(34-36) to Intelligence", + ["affix"] = "of the Genius", + ["group"] = "Intelligence", + ["level"] = 81, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(34-36) to Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ItemFoundRarityIncrease1"] = { + "(6-10)% increased Rarity of Items found", + ["affix"] = "of Plunder", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 3, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(6-10)% increased Rarity of Items found", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "boots", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncrease2"] = { + "(11-14)% increased Rarity of Items found", + ["affix"] = "of Raiding", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 24, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(11-14)% increased Rarity of Items found", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "boots", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncrease3"] = { + "(15-18)% increased Rarity of Items found", + ["affix"] = "of Archaeology", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 40, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(15-18)% increased Rarity of Items found", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "boots", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncrease4"] = { + "(19-21)% increased Rarity of Items found", + ["affix"] = "of Excavation", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 63, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(19-21)% increased Rarity of Items found", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "boots", + "helmet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["ItemFoundRarityIncrease5"] = { + "(22-25)% increased Rarity of Items found", + ["affix"] = "of Windfall", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 75, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(22-25)% increased Rarity of Items found", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "gloves", + "boots", + "helmet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["ItemFoundRarityIncreasePrefix1"] = { + "(8-11)% increased Rarity of Items found", + ["affix"] = "Magpie's", + ["group"] = "ItemFoundRarityIncreasePrefix", + ["level"] = 10, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(8-11)% increased Rarity of Items found", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncreasePrefix2"] = { + "(12-15)% increased Rarity of Items found", + ["affix"] = "Collector's", + ["group"] = "ItemFoundRarityIncreasePrefix", + ["level"] = 29, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(12-15)% increased Rarity of Items found", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncreasePrefix3"] = { + "(16-19)% increased Rarity of Items found", + ["affix"] = "Hoarder's", + ["group"] = "ItemFoundRarityIncreasePrefix", + ["level"] = 47, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(16-19)% increased Rarity of Items found", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["ItemFoundRarityIncreasePrefix4_"] = { + "(20-22)% increased Rarity of Items found", + ["affix"] = "Pirate's", + ["group"] = "ItemFoundRarityIncreasePrefix", + ["level"] = 65, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(20-22)% increased Rarity of Items found", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["ItemFoundRarityIncreasePrefix5"] = { + "(23-25)% increased Rarity of Items found", + ["affix"] = "Dragon's", + ["group"] = "ItemFoundRarityIncreasePrefix", + ["level"] = 81, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(23-25)% increased Rarity of Items found", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "helmet", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["LifeGainPerTarget1"] = { + "Gain 2 Life per Enemy Hit with Attacks", + ["affix"] = "of Rejuvenation", + ["group"] = "LifeGainPerTarget", + ["level"] = 8, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 2 Life per Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTarget2"] = { + "Gain 3 Life per Enemy Hit with Attacks", + ["affix"] = "of Restoration", + ["group"] = "LifeGainPerTarget", + ["level"] = 20, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 3 Life per Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTarget3"] = { + "Gain 4 Life per Enemy Hit with Attacks", + ["affix"] = "of Regrowth", + ["group"] = "LifeGainPerTarget", + ["level"] = 30, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 4 Life per Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTarget4"] = { + "Gain 5 Life per Enemy Hit with Attacks", + ["affix"] = "of Nourishment", + ["group"] = "LifeGainPerTarget", + ["level"] = 40, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 5 Life per Enemy Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTargetLocal1"] = { + "Grants 2 Life per Enemy Hit", + ["affix"] = "of Rejuvenation", + ["group"] = "LifeGainPerTargetLocal", + ["level"] = 8, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1041, + }, + ["tradeHashes"] = { + [821021828] = { + "Grants 2 Life per Enemy Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTargetLocal2"] = { + "Grants 3 Life per Enemy Hit", + ["affix"] = "of Restoration", + ["group"] = "LifeGainPerTargetLocal", + ["level"] = 20, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1041, + }, + ["tradeHashes"] = { + [821021828] = { + "Grants 3 Life per Enemy Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTargetLocal3"] = { + "Grants 4 Life per Enemy Hit", + ["affix"] = "of Regrowth", + ["group"] = "LifeGainPerTargetLocal", + ["level"] = 30, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1041, + }, + ["tradeHashes"] = { + [821021828] = { + "Grants 4 Life per Enemy Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainPerTargetLocal4"] = { + "Grants 5 Life per Enemy Hit", + ["affix"] = "of Nourishment", + ["group"] = "LifeGainPerTargetLocal", + ["level"] = 40, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1041, + }, + ["tradeHashes"] = { + [821021828] = { + "Grants 5 Life per Enemy Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath1"] = { + "Gain (4-6) Life per enemy killed", + ["affix"] = "of Success", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (4-6) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath2"] = { + "Gain (7-9) Life per enemy killed", + ["affix"] = "of Victory", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 11, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (7-9) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath3"] = { + "Gain (10-18) Life per enemy killed", + ["affix"] = "of Triumph", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 22, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (10-18) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath4"] = { + "Gain (19-28) Life per enemy killed", + ["affix"] = "of Conquest", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 33, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (19-28) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath5"] = { + "Gain (29-40) Life per enemy killed", + ["affix"] = "of Vanquishing", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 44, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (29-40) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath6"] = { + "Gain (41-53) Life per enemy killed", + ["affix"] = "of Valour", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 55, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (41-53) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath7"] = { + "Gain (54-68) Life per enemy killed", + ["affix"] = "of Glory", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 66, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (54-68) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "gloves", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeGainedFromEnemyDeath8"] = { + "Gain (69-84) Life per enemy killed", + ["affix"] = "of Legend", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 77, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (69-84) Life per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "gloves", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeLeech1"] = { + "Leech (5-5.9)% of Physical Attack Damage as Life", + ["affix"] = "of the Parasite", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (5-5.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["LifeLeech2"] = { + "Leech (6-6.9)% of Physical Attack Damage as Life", + ["affix"] = "of the Locust", + ["group"] = "LifeLeechPermyriad", + ["level"] = 21, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (6-6.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LifeLeech3"] = { + "Leech (7-7.9)% of Physical Attack Damage as Life", + ["affix"] = "of the Remora", + ["group"] = "LifeLeechPermyriad", + ["level"] = 38, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (7-7.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LifeLeech4"] = { + "Leech (8-8.9)% of Physical Attack Damage as Life", + ["affix"] = "of the Lamprey", + ["group"] = "LifeLeechPermyriad", + ["level"] = 54, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (8-8.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeech5"] = { + "Leech (9-9.9)% of Physical Attack Damage as Life", + ["affix"] = "of the Vampire", + ["group"] = "LifeLeechPermyriad", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (9-9.9)% of Physical Attack Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeechLocal1"] = { + "Leeches (5-5.9)% of Physical Damage as Life", + ["affix"] = "of the Parasite", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (5-5.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["LifeLeechLocal2"] = { + "Leeches (6-6.9)% of Physical Damage as Life", + ["affix"] = "of the Locust", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 21, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (6-6.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeechLocal3"] = { + "Leeches (7-7.9)% of Physical Damage as Life", + ["affix"] = "of the Remora", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 38, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (7-7.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeechLocal4"] = { + "Leeches (8-8.9)% of Physical Damage as Life", + ["affix"] = "of the Lamprey", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 54, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (8-8.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeechLocal5"] = { + "Leeches (9-9.9)% of Physical Damage as Life", + ["affix"] = "of the Vampire", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (9-9.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence1"] = { + "Leeches (0.5-0.7)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (0.5-0.7)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence2"] = { + "Leeches (0.6-0.8)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 10, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (0.6-0.8)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence3"] = { + "Leeches (0.7-0.9)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 26, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (0.7-0.9)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence4"] = { + "Leeches (0.8-1)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 42, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (0.8-1)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence5"] = { + "Leeches (0.9-1.1)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 58, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (0.9-1.1)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence6"] = { + "Leeches (1-1.2)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 74, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (1-1.2)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeLeechPermyriadLocalEssence7"] = { + "Leeches (1.1-1.3)% of Physical Damage as Life", + ["affix"] = "Essences", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 82, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (1.1-1.3)% of Physical Damage as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeRegeneration1"] = { + "(1-2) Life Regeneration per second", + ["affix"] = "of the Newt", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(1-2) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration10__"] = { + "(29.1-33) Life Regeneration per second", + ["affix"] = "of Immortality", + ["group"] = "LifeRegeneration", + ["level"] = 75, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(29.1-33) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LifeRegeneration11____"] = { + "(33.1-36) Life Regeneration per second", + ["affix"] = "of the Phoenix", + ["group"] = "LifeRegeneration", + ["level"] = 81, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(33.1-36) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LifeRegeneration2"] = { + "(2.1-3) Life Regeneration per second", + ["affix"] = "of the Lizard", + ["group"] = "LifeRegeneration", + ["level"] = 5, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(2.1-3) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration3"] = { + "(3.1-4) Life Regeneration per second", + ["affix"] = "of the Flatworm", + ["group"] = "LifeRegeneration", + ["level"] = 11, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3.1-4) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration4"] = { + "(4.1-6) Life Regeneration per second", + ["affix"] = "of the Starfish", + ["group"] = "LifeRegeneration", + ["level"] = 17, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(4.1-6) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration5"] = { + "(6.1-9) Life Regeneration per second", + ["affix"] = "of the Hydra", + ["group"] = "LifeRegeneration", + ["level"] = 26, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(6.1-9) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration6"] = { + "(9.1-13) Life Regeneration per second", + ["affix"] = "of the Troll", + ["group"] = "LifeRegeneration", + ["level"] = 35, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(9.1-13) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration7"] = { + "(13.1-18) Life Regeneration per second", + ["affix"] = "of Convalescence", + ["group"] = "LifeRegeneration", + ["level"] = 47, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(13.1-18) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration8_"] = { + "(18.1-23) Life Regeneration per second", + ["affix"] = "of Recuperation", + ["group"] = "LifeRegeneration", + ["level"] = 58, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(18.1-23) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "helmet", + "boots", + "belt", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LifeRegeneration9"] = { + "(23.1-29) Life Regeneration per second", + ["affix"] = "of Resurgence", + ["group"] = "LifeRegeneration", + ["level"] = 68, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(23.1-29) Life Regeneration per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "belt", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["LightRadiusAndAccuracy1"] = { + "+(10-20) to Accuracy Rating", + "5% increased Light Radius", + ["affix"] = "of Shining", + ["group"] = "LightRadiusAndAccuracy", + ["level"] = 8, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "5% increased Light Radius", + }, + [803737631] = { + "+(10-20) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightRadiusAndAccuracy2"] = { + "+(21-40) to Accuracy Rating", + "10% increased Light Radius", + ["affix"] = "of Light", + ["group"] = "LightRadiusAndAccuracy", + ["level"] = 15, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "10% increased Light Radius", + }, + [803737631] = { + "+(21-40) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightRadiusAndAccuracy3"] = { + "+(41-60) to Accuracy Rating", + "15% increased Light Radius", + ["affix"] = "of Radiance", + ["group"] = "LightRadiusAndAccuracy", + ["level"] = 30, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "15% increased Light Radius", + }, + [803737631] = { + "+(41-60) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightRadiusAndManaRegeneration1"] = { + "(8-12)% increased Mana Regeneration Rate", + "5% increased Light Radius", + ["affix"] = "of Warmth", + ["group"] = "LightRadiusAndManaRegeneration", + ["level"] = 8, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "5% increased Light Radius", + }, + [789117908] = { + "(8-12)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "staff", + "sceptre", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightRadiusAndManaRegeneration2"] = { + "(13-17)% increased Mana Regeneration Rate", + "10% increased Light Radius", + ["affix"] = "of Kindling", + ["group"] = "LightRadiusAndManaRegeneration", + ["level"] = 15, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "10% increased Light Radius", + }, + [789117908] = { + "(13-17)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "staff", + "sceptre", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightRadiusAndManaRegeneration3"] = { + "(18-22)% increased Mana Regeneration Rate", + "15% increased Light Radius", + ["affix"] = "of the Hearth", + ["group"] = "LightRadiusAndManaRegeneration", + ["level"] = 30, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "15% increased Light Radius", + }, + [789117908] = { + "(18-22)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "staff", + "sceptre", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningDamagePercent1"] = { + "(3-7)% increased Lightning Damage", + ["affix"] = "Charged", + ["group"] = "LightningDamagePercentage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(3-7)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePercent2"] = { + "(8-12)% increased Lightning Damage", + ["affix"] = "Hissing", + ["group"] = "LightningDamagePercentage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(8-12)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePercent3"] = { + "(13-17)% increased Lightning Damage", + ["affix"] = "Bolting", + ["group"] = "LightningDamagePercentage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(13-17)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePercent4"] = { + "(18-22)% increased Lightning Damage", + ["affix"] = "Coursing", + ["group"] = "LightningDamagePercentage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(18-22)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePercent5"] = { + "(23-26)% increased Lightning Damage", + ["affix"] = "Striking", + ["group"] = "LightningDamagePercentage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(23-26)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePercent6"] = { + "(27-30)% increased Lightning Damage", + ["affix"] = "Smiting", + ["group"] = "LightningDamagePercentage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(27-30)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { + "(50-68)% increased Lightning Damage", + ["affix"] = "Charged", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(50-68)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { + "(69-88)% increased Lightning Damage", + ["affix"] = "Hissing", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(69-88)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { + "(89-108)% increased Lightning Damage", + ["affix"] = "Bolting", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(89-108)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { + "(109-128)% increased Lightning Damage", + ["affix"] = "Coursing", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(109-128)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { + "(129-148)% increased Lightning Damage", + ["affix"] = "Striking", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(129-148)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { + "(149-188)% increased Lightning Damage", + ["affix"] = "Smiting", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(149-188)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { + "(189-208)% increased Lightning Damage", + ["affix"] = "Ionising", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(189-208)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { + "(209-238)% increased Lightning Damage", + ["affix"] = "Electromancer's", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(209-238)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon1_"] = { + "(25-34)% increased Lightning Damage", + ["affix"] = "Charged", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(25-34)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon2"] = { + "(35-44)% increased Lightning Damage", + ["affix"] = "Hissing", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(35-44)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon3"] = { + "(45-54)% increased Lightning Damage", + ["affix"] = "Bolting", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(45-54)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon4"] = { + "(55-64)% increased Lightning Damage", + ["affix"] = "Coursing", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(55-64)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon5"] = { + "(65-74)% increased Lightning Damage", + ["affix"] = "Striking", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(65-74)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon6"] = { + "(75-89)% increased Lightning Damage", + ["affix"] = "Smiting", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(75-89)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon7"] = { + "(90-104)% increased Lightning Damage", + ["affix"] = "Ionising", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(90-104)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["LightningDamagePrefixOnWeapon8"] = { + "(105-119)% increased Lightning Damage", + ["affix"] = "Electromancer's", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(105-119)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["LightningPenetrationWarbands"] = { + "Damage Penetrates (6-10)% Lightning Resistance", + ["affix"] = "Turncoat's", + ["group"] = "LightningResistancePenetration", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (6-10)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResist1"] = { + "+(6-10)% to Lightning Resistance", + ["affix"] = "of the Cloud", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(6-10)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist2"] = { + "+(11-15)% to Lightning Resistance", + ["affix"] = "of the Squall", + ["group"] = "LightningResistance", + ["level"] = 13, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(11-15)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist3"] = { + "+(16-20)% to Lightning Resistance", + ["affix"] = "of the Storm", + ["group"] = "LightningResistance", + ["level"] = 25, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(16-20)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist4"] = { + "+(21-25)% to Lightning Resistance", + ["affix"] = "of the Thunderhead", + ["group"] = "LightningResistance", + ["level"] = 37, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(21-25)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist5"] = { + "+(26-30)% to Lightning Resistance", + ["affix"] = "of the Tempest", + ["group"] = "LightningResistance", + ["level"] = 49, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(26-30)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist6"] = { + "+(31-35)% to Lightning Resistance", + ["affix"] = "of the Maelstrom", + ["group"] = "LightningResistance", + ["level"] = 60, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(31-35)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist7"] = { + "+(36-40)% to Lightning Resistance", + ["affix"] = "of the Lightning", + ["group"] = "LightningResistance", + ["level"] = 71, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(36-40)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResist8"] = { + "+(41-45)% to Lightning Resistance", + ["affix"] = "of Ephij", + ["group"] = "LightningResistance", + ["level"] = 82, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(41-45)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "ring", + "amulet", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LightningResistancePenetrationEssence1_"] = { + "Damage Penetrates 5% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 5% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationEssence2"] = { + "Damage Penetrates 6% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 6% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationEssence3"] = { + "Damage Penetrates 7% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 7% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationEssence4"] = { + "Damage Penetrates 8% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 8% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { + "Damage Penetrates (9-10)% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 42, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (9-10)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationTwoHandEssence2"] = { + "Damage Penetrates (11-12)% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 58, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (11-12)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { + "Damage Penetrates (13-14)% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (13-14)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LightningResistancePenetrationTwoHandEssence4"] = { + "Damage Penetrates (15-16)% Lightning Resistance", + ["affix"] = "Essences", + ["group"] = "LightningResistancePenetration", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (15-16)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamage1"] = { + "Adds (56-87) to (105-160) Chaos damage", + ["affix"] = "Malicious", + ["group"] = "LocalChaosDamage", + ["level"] = 83, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (56-87) to (105-160) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageEssence1_"] = { + "Adds (37-59) to (79-103) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamage", + ["level"] = 62, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (37-59) to (79-103) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageEssence2__"] = { + "Adds (43-67) to (89-113) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamage", + ["level"] = 74, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (43-67) to (89-113) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageEssence3"] = { + "Adds (53-79) to (101-131) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamage", + ["level"] = 82, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (53-79) to (101-131) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageTwoHand1"] = { + "Adds (98-149) to (183-280) Chaos damage", + ["affix"] = "Malicious", + ["group"] = "LocalChaosDamageTwoHand", + ["level"] = 83, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (98-149) to (183-280) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { + "Adds (61-103) to (149-193) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamageTwoHand", + ["level"] = 62, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (61-103) to (149-193) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { + "Adds (73-113) to (163-205) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamageTwoHand", + ["level"] = 74, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (73-113) to (163-205) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { + "Adds (89-131) to (181-229) Chaos damage", + ["affix"] = "Essences", + ["group"] = "LocalChaosDamageTwoHand", + ["level"] = 82, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (89-131) to (181-229) Chaos damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalAddedColdDamage1"] = { + "Adds (1-2) to (3-4) Cold Damage", + ["affix"] = "Frosted", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (1-2) to (3-4) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage10__"] = { + "Adds (72-81) to (110-123) Cold Damage", + ["affix"] = "Crystalising", + ["group"] = "LocalColdDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (72-81) to (110-123) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage2"] = { + "Adds (3-5) to (6-9) Cold Damage", + ["affix"] = "Chilled", + ["group"] = "LocalColdDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (3-5) to (6-9) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage3"] = { + "Adds (6-9) to (10-16) Cold Damage", + ["affix"] = "Icy", + ["group"] = "LocalColdDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (6-9) to (10-16) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage4"] = { + "Adds (11-15) to (17-24) Cold Damage", + ["affix"] = "Frigid", + ["group"] = "LocalColdDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (11-15) to (17-24) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage5"] = { + "Adds (17-20) to (26-32) Cold Damage", + ["affix"] = "Freezing", + ["group"] = "LocalColdDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (17-20) to (26-32) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage6"] = { + "Adds (22-29) to (34-44) Cold Damage", + ["affix"] = "Frozen", + ["group"] = "LocalColdDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (22-29) to (34-44) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage7"] = { + "Adds (31-38) to (47-59) Cold Damage", + ["affix"] = "Glaciated", + ["group"] = "LocalColdDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (31-38) to (47-59) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage8"] = { + "Adds (40-53) to (62-80) Cold Damage", + ["affix"] = "Polar", + ["group"] = "LocalColdDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (40-53) to (62-80) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamage9"] = { + "Adds (55-69) to (83-106) Cold Damage", + ["affix"] = "Entombing", + ["group"] = "LocalColdDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (55-69) to (83-106) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand1"] = { + "Adds (2-3) to (4-6) Cold Damage", + ["affix"] = "Frosted", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (2-3) to (4-6) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand10"] = { + "Adds (112-124) to (168-189) Cold Damage", + ["affix"] = "Crystalising", + ["group"] = "LocalColdDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (112-124) to (168-189) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand2"] = { + "Adds (5-8) to (9-14) Cold Damage", + ["affix"] = "Chilled", + ["group"] = "LocalColdDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (5-8) to (9-14) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand3"] = { + "Adds (10-14) to (15-23) Cold Damage", + ["affix"] = "Icy", + ["group"] = "LocalColdDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (10-14) to (15-23) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand4"] = { + "Adds (16-23) to (25-35) Cold Damage", + ["affix"] = "Frigid", + ["group"] = "LocalColdDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (16-23) to (25-35) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand5"] = { + "Adds (25-30) to (38-46) Cold Damage", + ["affix"] = "Freezing", + ["group"] = "LocalColdDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (25-30) to (38-46) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand6"] = { + "Adds (32-43) to (49-66) Cold Damage", + ["affix"] = "Frozen", + ["group"] = "LocalColdDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (32-43) to (49-66) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand7"] = { + "Adds (46-57) to (70-88) Cold Damage", + ["affix"] = "Glaciated", + ["group"] = "LocalColdDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (46-57) to (70-88) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand8"] = { + "Adds (60-80) to (92-121) Cold Damage", + ["affix"] = "Polar", + ["group"] = "LocalColdDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (60-80) to (92-121) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedColdDamageTwoHand9"] = { + "Adds (84-107) to (126-161) Cold Damage", + ["affix"] = "Entombing", + ["group"] = "LocalColdDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (84-107) to (126-161) Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage1"] = { + "Adds (1-2) to (3-5) Fire Damage", + ["affix"] = "Heated", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (1-2) to (3-5) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage10_"] = { + "Adds (88-101) to (133-154) Fire Damage", + ["affix"] = "Carbonising", + ["group"] = "LocalFireDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (88-101) to (133-154) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage2"] = { + "Adds (4-6) to (7-10) Fire Damage", + ["affix"] = "Smouldering", + ["group"] = "LocalFireDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (4-6) to (7-10) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage3"] = { + "Adds (7-11) to (13-19) Fire Damage", + ["affix"] = "Smoking", + ["group"] = "LocalFireDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (7-11) to (13-19) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage4"] = { + "Adds (13-19) to (21-29) Fire Damage", + ["affix"] = "Burning", + ["group"] = "LocalFireDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (13-19) to (21-29) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage5"] = { + "Adds (20-24) to (32-37) Fire Damage", + ["affix"] = "Flaming", + ["group"] = "LocalFireDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (20-24) to (32-37) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage6"] = { + "Adds (25-33) to (38-54) Fire Damage", + ["affix"] = "Scorching", + ["group"] = "LocalFireDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (25-33) to (38-54) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage7"] = { + "Adds (35-44) to (56-71) Fire Damage", + ["affix"] = "Incinerating", + ["group"] = "LocalFireDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (35-44) to (56-71) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage8"] = { + "Adds (47-59) to (74-97) Fire Damage", + ["affix"] = "Blasting", + ["group"] = "LocalFireDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (47-59) to (74-97) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamage9"] = { + "Adds (62-85) to (101-129) Fire Damage", + ["affix"] = "Cremating", + ["group"] = "LocalFireDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (62-85) to (101-129) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand1"] = { + "Adds (2-4) to (5-7) Fire Damage", + ["affix"] = "Heated", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (2-4) to (5-7) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand10"] = { + "Adds (135-156) to (205-236) Fire Damage", + ["affix"] = "Carbonising", + ["group"] = "LocalFireDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (135-156) to (205-236) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand2"] = { + "Adds (6-9) to (10-16) Fire Damage", + ["affix"] = "Smouldering", + ["group"] = "LocalFireDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (6-9) to (10-16) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand3"] = { + "Adds (11-17) to (19-28) Fire Damage", + ["affix"] = "Smoking", + ["group"] = "LocalFireDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (11-17) to (19-28) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand4"] = { + "Adds (19-27) to (30-42) Fire Damage", + ["affix"] = "Burning", + ["group"] = "LocalFireDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (19-27) to (30-42) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand5"] = { + "Adds (30-37) to (45-56) Fire Damage", + ["affix"] = "Flaming", + ["group"] = "LocalFireDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (30-37) to (45-56) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand6"] = { + "Adds (39-53) to (59-80) Fire Damage", + ["affix"] = "Scorching", + ["group"] = "LocalFireDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (39-53) to (59-80) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand7"] = { + "Adds (56-70) to (84-107) Fire Damage", + ["affix"] = "Incinerating", + ["group"] = "LocalFireDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (56-70) to (84-107) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand8_"] = { + "Adds (73-97) to (112-149) Fire Damage", + ["affix"] = "Blasting", + ["group"] = "LocalFireDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (73-97) to (112-149) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedFireDamageTwoHand9"] = { + "Adds (102-130) to (155-198) Fire Damage", + ["affix"] = "Cremating", + ["group"] = "LocalFireDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (102-130) to (155-198) Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage1"] = { + "Adds 1 to (4-6) Lightning Damage", + ["affix"] = "Humming", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (4-6) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage10"] = { + "Adds (1-12) to (202-234) Lightning Damage", + ["affix"] = "Vapourising", + ["group"] = "LocalLightningDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-12) to (202-234) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage2"] = { + "Adds 1 to (13-19) Lightning Damage", + ["affix"] = "Buzzing", + ["group"] = "LocalLightningDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (13-19) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage3"] = { + "Adds (1-2) to (20-30) Lightning Damage", + ["affix"] = "Snapping", + ["group"] = "LocalLightningDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-2) to (20-30) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage4"] = { + "Adds (1-2) to (36-52) Lightning Damage", + ["affix"] = "Crackling", + ["group"] = "LocalLightningDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-2) to (36-52) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage5"] = { + "Adds (1-3) to (55-60) Lightning Damage", + ["affix"] = "Sparking", + ["group"] = "LocalLightningDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-3) to (55-60) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage6"] = { + "Adds (1-4) to (63-82) Lightning Damage", + ["affix"] = "Arcing", + ["group"] = "LocalLightningDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-4) to (63-82) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage7"] = { + "Adds (1-6) to (85-107) Lightning Damage", + ["affix"] = "Shocking", + ["group"] = "LocalLightningDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-6) to (85-107) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage8"] = { + "Adds (1-8) to (111-152) Lightning Damage", + ["affix"] = "Discharging", + ["group"] = "LocalLightningDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-8) to (111-152) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamage9"] = { + "Adds (1-10) to (157-196) Lightning Damage", + ["affix"] = "Electrocuting", + ["group"] = "LocalLightningDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-10) to (157-196) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "sword", + "axe", + "mace", + "spear", + "claw", + "dagger", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand10"] = { + "Adds (1-19) to (310-358) Lightning Damage", + ["affix"] = "Vapourising", + ["group"] = "LocalLightningDamage", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-19) to (310-358) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand1_"] = { + "Adds 1 to (7-10) Lightning Damage", + ["affix"] = "Humming", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (7-10) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand2"] = { + "Adds (1-2) to (19-27) Lightning Damage", + ["affix"] = "Buzzing", + ["group"] = "LocalLightningDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-2) to (19-27) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand3"] = { + "Adds (1-3) to (31-43) Lightning Damage", + ["affix"] = "Snapping", + ["group"] = "LocalLightningDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-3) to (31-43) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand4"] = { + "Adds (1-4) to (53-76) Lightning Damage", + ["affix"] = "Crackling", + ["group"] = "LocalLightningDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-4) to (53-76) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand5"] = { + "Adds (1-4) to (80-88) Lightning Damage", + ["affix"] = "Sparking", + ["group"] = "LocalLightningDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-4) to (80-88) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand6"] = { + "Adds (1-6) to (93-122) Lightning Damage", + ["affix"] = "Arcing", + ["group"] = "LocalLightningDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-6) to (93-122) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand7"] = { + "Adds (1-8) to (128-162) Lightning Damage", + ["affix"] = "Shocking", + ["group"] = "LocalLightningDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-8) to (128-162) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand8"] = { + "Adds (1-13) to (168-231) Lightning Damage", + ["affix"] = "Discharging", + ["group"] = "LocalLightningDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-13) to (168-231) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedLightningDamageTwoHand9"] = { + "Adds (1-16) to (239-300) Lightning Damage", + ["affix"] = "Electrocuting", + ["group"] = "LocalLightningDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-16) to (239-300) Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "crossbow", + "sword", + "axe", + "mace", + "warstaff", + "talisman", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage1"] = { + "Adds (1-2) to (4-5) Physical Damage", + ["affix"] = "Glinting", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (1-2) to (4-5) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage2"] = { + "Adds (4-6) to (7-11) Physical Damage", + ["affix"] = "Burnished", + ["group"] = "LocalPhysicalDamage", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (4-6) to (7-11) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage3"] = { + "Adds (6-9) to (11-16) Physical Damage", + ["affix"] = "Polished", + ["group"] = "LocalPhysicalDamage", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (6-9) to (11-16) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage4"] = { + "Adds (8-12) to (14-21) Physical Damage", + ["affix"] = "Honed", + ["group"] = "LocalPhysicalDamage", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (8-12) to (14-21) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage5"] = { + "Adds (10-15) to (18-26) Physical Damage", + ["affix"] = "Gleaming", + ["group"] = "LocalPhysicalDamage", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (10-15) to (18-26) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage6"] = { + "Adds (13-20) to (23-35) Physical Damage", + ["affix"] = "Annealed", + ["group"] = "LocalPhysicalDamage", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (13-20) to (23-35) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage7"] = { + "Adds (16-24) to (28-42) Physical Damage", + ["affix"] = "Razor-sharp", + ["group"] = "LocalPhysicalDamage", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (16-24) to (28-42) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage8"] = { + "Adds (21-31) to (36-53) Physical Damage", + ["affix"] = "Tempered", + ["group"] = "LocalPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (21-31) to (36-53) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamage9"] = { + "Adds (26-39) to (44-66) Physical Damage", + ["affix"] = "Flaring", + ["group"] = "LocalPhysicalDamage", + ["level"] = 75, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (26-39) to (44-66) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand1"] = { + "Adds (2-3) to (5-7) Physical Damage", + ["affix"] = "Glinting", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (2-3) to (5-7) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand2"] = { + "Adds (5-8) to (10-15) Physical Damage", + ["affix"] = "Burnished", + ["group"] = "LocalPhysicalDamage", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (5-8) to (10-15) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand3"] = { + "Adds (8-12) to (15-22) Physical Damage", + ["affix"] = "Polished", + ["group"] = "LocalPhysicalDamage", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (8-12) to (15-22) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand4"] = { + "Adds (11-17) to (20-30) Physical Damage", + ["affix"] = "Honed", + ["group"] = "LocalPhysicalDamage", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (11-17) to (20-30) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand5"] = { + "Adds (14-21) to (25-37) Physical Damage", + ["affix"] = "Gleaming", + ["group"] = "LocalPhysicalDamage", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (14-21) to (25-37) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand6"] = { + "Adds (19-29) to (33-49) Physical Damage", + ["affix"] = "Annealed", + ["group"] = "LocalPhysicalDamage", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (19-29) to (33-49) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand7"] = { + "Adds (23-35) to (39-59) Physical Damage", + ["affix"] = "Razor-sharp", + ["group"] = "LocalPhysicalDamage", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (23-35) to (39-59) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand8"] = { + "Adds (29-44) to (50-75) Physical Damage", + ["affix"] = "Tempered", + ["group"] = "LocalPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (29-44) to (50-75) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalAddedPhysicalDamageTwoHand9"] = { + "Adds (37-55) to (63-94) Physical Damage", + ["affix"] = "Flaring", + ["group"] = "LocalPhysicalDamage", + ["level"] = 75, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (37-55) to (63-94) Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { + "(6-13)% increased Armour and Energy Shield", + "+(8-13) to Stun Threshold", + ["affix"] = "Defender's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(6-13)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { + "(14-20)% increased Armour and Energy Shield", + "+(14-24) to Stun Threshold", + ["affix"] = "Protector's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(14-20)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { + "(21-26)% increased Armour and Energy Shield", + "+(25-40) to Stun Threshold", + ["affix"] = "Keeper's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(21-26)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { + "(27-32)% increased Armour and Energy Shield", + "+(41-63) to Stun Threshold", + ["affix"] = "Guardian's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(27-32)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { + "(33-38)% increased Armour and Energy Shield", + "+(64-94) to Stun Threshold", + ["affix"] = "Warden's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(33-38)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { + "(39-42)% increased Armour and Energy Shield", + "+(95-136) to Stun Threshold", + ["affix"] = "Sentinel's", + ["group"] = "LocalArmourAndEnergyShieldAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 851, + 1061, + }, + ["tradeHashes"] = { + [3321629045] = { + "(39-42)% increased Armour and Energy Shield", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold1"] = { + "(6-13)% increased Armour and Evasion", + "+(8-13) to Stun Threshold", + ["affix"] = "Captain's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(6-13)% increased Armour and Evasion", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold2"] = { + "(14-20)% increased Armour and Evasion", + "+(14-24) to Stun Threshold", + ["affix"] = "Commander's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(14-20)% increased Armour and Evasion", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold3"] = { + "(21-26)% increased Armour and Evasion", + "+(25-40) to Stun Threshold", + ["affix"] = "Magnate's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(21-26)% increased Armour and Evasion", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold4"] = { + "(27-32)% increased Armour and Evasion", + "+(41-63) to Stun Threshold", + ["affix"] = "Marshal's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(27-32)% increased Armour and Evasion", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold5"] = { + "(33-38)% increased Armour and Evasion", + "+(64-94) to Stun Threshold", + ["affix"] = "General's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(33-38)% increased Armour and Evasion", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndEvasionAndStunThreshold6"] = { + "(39-42)% increased Armour and Evasion", + "+(95-136) to Stun Threshold", + ["affix"] = "Warlord's", + ["group"] = "LocalArmourAndEvasionAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 850, + 1061, + }, + ["tradeHashes"] = { + [2451402625] = { + "(39-42)% increased Armour and Evasion", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold1"] = { + "(6-13)% increased Armour", + "+(8-13) to Stun Threshold", + ["affix"] = "Beetle's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(6-13)% increased Armour", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold2"] = { + "(14-20)% increased Armour", + "+(14-24) to Stun Threshold", + ["affix"] = "Crab's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(14-20)% increased Armour", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold3"] = { + "(21-26)% increased Armour", + "+(25-40) to Stun Threshold", + ["affix"] = "Armadillo's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(21-26)% increased Armour", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold4"] = { + "(27-32)% increased Armour", + "+(41-63) to Stun Threshold", + ["affix"] = "Rhino's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(27-32)% increased Armour", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold5"] = { + "(33-38)% increased Armour", + "+(64-94) to Stun Threshold", + ["affix"] = "Elephant's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(33-38)% increased Armour", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalArmourAndStunThreshold6"] = { + "(39-42)% increased Armour", + "+(95-136) to Stun Threshold", + ["affix"] = "Mammoth's", + ["group"] = "LocalArmourAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 846, + 1061, + }, + ["tradeHashes"] = { + [1062208444] = { + "(39-42)% increased Armour", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield1"] = { + "+(9-16) to Armour", + "+(5-8) to maximum Energy Shield", + ["affix"] = "Blessed", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(9-16) to Armour", + }, + [4052037485] = { + "+(5-8) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield2_"] = { + "+(17-46) to Armour", + "+(9-15) to maximum Energy Shield", + ["affix"] = "Anointed", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(17-46) to Armour", + }, + [4052037485] = { + "+(9-15) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield3"] = { + "+(47-71) to Armour", + "+(16-21) to maximum Energy Shield", + ["affix"] = "Sanctified", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(47-71) to Armour", + }, + [4052037485] = { + "+(16-21) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield4"] = { + "+(72-85) to Armour", + "+(22-25) to maximum Energy Shield", + ["affix"] = "Hallowed", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(72-85) to Armour", + }, + [4052037485] = { + "+(22-25) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield5"] = { + "+(86-102) to Armour", + "+(26-29) to maximum Energy Shield", + ["affix"] = "Beatified", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(86-102) to Armour", + }, + [4052037485] = { + "+(26-29) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield6"] = { + "+(103-127) to Armour", + "+(30-36) to maximum Energy Shield", + ["affix"] = "Consecrated", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(103-127) to Armour", + }, + [4052037485] = { + "+(30-36) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield7"] = { + "+(128-149) to Armour", + "+(37-42) to maximum Energy Shield", + ["affix"] = "Saintly", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(128-149) to Armour", + }, + [4052037485] = { + "+(37-42) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEnergyShield8"] = { + "+(150-170) to Armour", + "+(43-48) to maximum Energy Shield", + ["affix"] = "Godly", + ["group"] = "LocalBaseArmourAndEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(150-170) to Armour", + }, + [4052037485] = { + "+(43-48) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "boots", + "gloves", + "helmet", + "str_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating1"] = { + "+(9-16) to Armour", + "+(6-10) to Evasion Rating", + ["affix"] = "Supple", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(9-16) to Armour", + }, + [53045048] = { + "+(6-10) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating2"] = { + "+(17-46) to Armour", + "+(11-41) to Evasion Rating", + ["affix"] = "Pliant", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(17-46) to Armour", + }, + [53045048] = { + "+(11-41) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating3"] = { + "+(47-71) to Armour", + "+(42-64) to Evasion Rating", + ["affix"] = "Flexible", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(47-71) to Armour", + }, + [53045048] = { + "+(42-64) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating4"] = { + "+(72-85) to Armour", + "+(65-78) to Evasion Rating", + ["affix"] = "Durable", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(72-85) to Armour", + }, + [53045048] = { + "+(65-78) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating5"] = { + "+(86-102) to Armour", + "+(79-94) to Evasion Rating", + ["affix"] = "Sturdy", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(86-102) to Armour", + }, + [53045048] = { + "+(79-94) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating6_"] = { + "+(103-127) to Armour", + "+(95-119) to Evasion Rating", + ["affix"] = "Resilient", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(103-127) to Armour", + }, + [53045048] = { + "+(95-119) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating7"] = { + "+(128-149) to Armour", + "+(120-141) to Evasion Rating", + ["affix"] = "Adaptable", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(128-149) to Armour", + }, + [53045048] = { + "+(120-141) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseArmourAndEvasionRating8"] = { + "+(150-170) to Armour", + "+(142-161) to Evasion Rating", + ["affix"] = "Versatile", + ["group"] = "LocalBaseArmourAndEvasionRating", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(150-170) to Armour", + }, + [53045048] = { + "+(142-161) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "boots", + "gloves", + "helmet", + "str_dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { + "+(6-10) to Evasion Rating", + "+(5-8) to maximum Energy Shield", + ["affix"] = "Will-o-wisp's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(5-8) to maximum Energy Shield", + }, + [53045048] = { + "+(6-10) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { + "+(11-41) to Evasion Rating", + "+(9-15) to maximum Energy Shield", + ["affix"] = "Nymph's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(9-15) to maximum Energy Shield", + }, + [53045048] = { + "+(11-41) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { + "+(42-64) to Evasion Rating", + "+(16-21) to maximum Energy Shield", + ["affix"] = "Sylph's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(16-21) to maximum Energy Shield", + }, + [53045048] = { + "+(42-64) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { + "+(65-78) to Evasion Rating", + "+(22-25) to maximum Energy Shield", + ["affix"] = "Cherub's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(22-25) to maximum Energy Shield", + }, + [53045048] = { + "+(65-78) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { + "+(79-94) to Evasion Rating", + "+(26-29) to maximum Energy Shield", + ["affix"] = "Spirit's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(26-29) to maximum Energy Shield", + }, + [53045048] = { + "+(79-94) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { + "+(95-119) to Evasion Rating", + "+(30-36) to maximum Energy Shield", + ["affix"] = "Eidolon's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(30-36) to maximum Energy Shield", + }, + [53045048] = { + "+(95-119) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { + "+(120-141) to Evasion Rating", + "+(37-42) to maximum Energy Shield", + ["affix"] = "Apparition's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(37-42) to maximum Energy Shield", + }, + [53045048] = { + "+(120-141) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "gloves", + "helmet", + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { + "+(142-161) to Evasion Rating", + "+(43-48) to maximum Energy Shield", + ["affix"] = "Banshee's", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(43-48) to maximum Energy Shield", + }, + [53045048] = { + "+(142-161) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "boots", + "gloves", + "helmet", + "dex_int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalBlockChance1"] = { + "(15-19)% increased Block chance", + ["affix"] = "Steadfast", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(15-19)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalBlockChance2"] = { + "(20-24)% increased Block chance", + ["affix"] = "Unrelenting", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 33, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(20-24)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalBlockChance3"] = { + "(25-30)% increased Block chance", + ["affix"] = "Adamant", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 65, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(25-30)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalBlockChance4_"] = { + "(58-63)% increased Block chance", + ["affix"] = "Warded", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 46, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(58-63)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["LocalBlockChance5"] = { + "(64-69)% increased Block chance", + ["affix"] = "Unwavering", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 61, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(64-69)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["LocalBlockChance6"] = { + "(70-75)% increased Block chance", + ["affix"] = "Enduring", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 74, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(70-75)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["LocalBlockChance7"] = { + "(76-81)% increased Block chance", + ["affix"] = "Unyielding", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 82, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(76-81)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["LocalCriticalMultiplier1"] = { + "+(10-11)% to Critical Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(10-11)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalMultiplier2"] = { + "+(12-13)% to Critical Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(12-13)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalMultiplier3"] = { + "+(14-16)% to Critical Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(14-16)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalMultiplier4"] = { + "+(17-19)% to Critical Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(17-19)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalMultiplier5"] = { + "+(20-22)% to Critical Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(20-22)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalMultiplier6"] = { + "+(23-25)% to Critical Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 73, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(23-25)% to Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance1"] = { + "+(1.01-1.5)% to Critical Hit Chance", + ["affix"] = "of Menace", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(1.01-1.5)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance2"] = { + "+(1.51-2.1)% to Critical Hit Chance", + ["affix"] = "of Havoc", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 20, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(1.51-2.1)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance3"] = { + "+(2.11-2.7)% to Critical Hit Chance", + ["affix"] = "of Disaster", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 30, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(2.11-2.7)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance4"] = { + "+(3.11-3.8)% to Critical Hit Chance", + ["affix"] = "of Calamity", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 44, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(3.11-3.8)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance5"] = { + "+(3.81-4.4)% to Critical Hit Chance", + ["affix"] = "of Ruin", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 59, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(3.81-4.4)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalCriticalStrikeChance6"] = { + "+(4.41-5)% to Critical Hit Chance", + ["affix"] = "of Unmaking", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 73, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(4.41-5)% to Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold1"] = { + "(6-13)% increased Energy Shield", + "+(8-13) to Stun Threshold", + ["affix"] = "Pixie's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(6-13)% increased Energy Shield", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold2"] = { + "(14-20)% increased Energy Shield", + "+(14-24) to Stun Threshold", + ["affix"] = "Gremlin's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(14-20)% increased Energy Shield", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold3"] = { + "(21-26)% increased Energy Shield", + "+(25-40) to Stun Threshold", + ["affix"] = "Boggart's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(21-26)% increased Energy Shield", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold4"] = { + "(27-32)% increased Energy Shield", + "+(41-63) to Stun Threshold", + ["affix"] = "Naga's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(27-32)% increased Energy Shield", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold5"] = { + "(33-38)% increased Energy Shield", + "+(64-94) to Stun Threshold", + ["affix"] = "Djinn's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(33-38)% increased Energy Shield", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEnergyShieldAndStunThreshold6"] = { + "(39-42)% increased Energy Shield", + "+(95-136) to Stun Threshold", + ["affix"] = "Seraphim's", + ["group"] = "LocalEnergyShieldAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 849, + 1061, + }, + ["tradeHashes"] = { + [4015621042] = { + "(39-42)% increased Energy Shield", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { + "(6-13)% increased Evasion and Energy Shield", + "+(8-13) to Stun Threshold", + ["affix"] = "Intuitive", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(6-13)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { + "(14-20)% increased Evasion and Energy Shield", + "+(14-24) to Stun Threshold", + ["affix"] = "Psychic", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(14-20)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { + "(21-26)% increased Evasion and Energy Shield", + "+(25-40) to Stun Threshold", + ["affix"] = "Telepath's", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(21-26)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { + "(27-32)% increased Evasion and Energy Shield", + "+(41-63) to Stun Threshold", + ["affix"] = "Illusionist's", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(27-32)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { + "(33-38)% increased Evasion and Energy Shield", + "+(64-94) to Stun Threshold", + ["affix"] = "Mentalist's", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(33-38)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { + "(39-42)% increased Evasion and Energy Shield", + "+(95-136) to Stun Threshold", + ["affix"] = "Trickster's", + ["group"] = "LocalEvasionAndEnergyShieldAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 852, + 1061, + }, + ["tradeHashes"] = { + [1999113824] = { + "(39-42)% increased Evasion and Energy Shield", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold1"] = { + "(6-13)% increased Evasion Rating", + "+(8-13) to Stun Threshold", + ["affix"] = "Mosquito's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(6-13)% increased Evasion Rating", + }, + [915769802] = { + "+(8-13) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold2"] = { + "(14-20)% increased Evasion Rating", + "+(14-24) to Stun Threshold", + ["affix"] = "Moth's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 19, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(14-20)% increased Evasion Rating", + }, + [915769802] = { + "+(14-24) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold3"] = { + "(21-26)% increased Evasion Rating", + "+(25-40) to Stun Threshold", + ["affix"] = "Butterfly's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(21-26)% increased Evasion Rating", + }, + [915769802] = { + "+(25-40) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold4"] = { + "(27-32)% increased Evasion Rating", + "+(41-63) to Stun Threshold", + ["affix"] = "Wasp's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(27-32)% increased Evasion Rating", + }, + [915769802] = { + "+(41-63) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold5"] = { + "(33-38)% increased Evasion Rating", + "+(64-94) to Stun Threshold", + ["affix"] = "Dragonfly's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(33-38)% increased Evasion Rating", + }, + [915769802] = { + "+(64-94) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalEvasionAndStunThreshold6"] = { + "(39-42)% increased Evasion Rating", + "+(95-136) to Stun Threshold", + ["affix"] = "Hummingbird's", + ["group"] = "LocalEvasionAndStunThreshold", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 848, + 1061, + }, + ["tradeHashes"] = { + [124859000] = { + "(39-42)% increased Evasion Rating", + }, + [915769802] = { + "+(95-136) to Stun Threshold", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "helmet", + "gloves", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy1"] = { + "+(11-32) to Accuracy Rating", + ["affix"] = "Precise", + ["group"] = "LocalAccuracyRating", + ["level"] = 8, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(11-32) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy10"] = { + "+(551-650) to Accuracy Rating", + ["affix"] = "Valkyrie's", + ["group"] = "LocalAccuracyRating", + ["level"] = 82, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(551-650) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ranged", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy2"] = { + "+(33-60) to Accuracy Rating", + ["affix"] = "Reliable", + ["group"] = "LocalAccuracyRating", + ["level"] = 13, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(33-60) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy3"] = { + "+(61-84) to Accuracy Rating", + ["affix"] = "Focused", + ["group"] = "LocalAccuracyRating", + ["level"] = 18, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(61-84) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy4"] = { + "+(85-123) to Accuracy Rating", + ["affix"] = "Deliberate", + ["group"] = "LocalAccuracyRating", + ["level"] = 26, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(85-123) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy5"] = { + "+(124-167) to Accuracy Rating", + ["affix"] = "Consistent", + ["group"] = "LocalAccuracyRating", + ["level"] = 36, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(124-167) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy6"] = { + "+(168-236) to Accuracy Rating", + ["affix"] = "Steady", + ["group"] = "LocalAccuracyRating", + ["level"] = 48, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(168-236) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy7"] = { + "+(237-346) to Accuracy Rating", + ["affix"] = "Hunter's", + ["group"] = "LocalAccuracyRating", + ["level"] = 58, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(237-346) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy8"] = { + "+(347-450) to Accuracy Rating", + ["affix"] = "Ranger's", + ["group"] = "LocalAccuracyRating", + ["level"] = 67, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(347-450) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAccuracy9_"] = { + "+(451-550) to Accuracy Rating", + ["affix"] = "Amazon's", + ["group"] = "LocalAccuracyRating", + ["level"] = 76, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(451-550) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase1"] = { + "+(5-9) to Armour", + "(6-13)% increased Armour", + ["affix"] = "Abalone's", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(6-13)% increased Armour", + }, + [3484657501] = { + "+(5-9) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase2"] = { + "+(10-29) to Armour", + "(14-20)% increased Armour", + ["affix"] = "Snail's", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(14-20)% increased Armour", + }, + [3484657501] = { + "+(10-29) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase3"] = { + "+(30-41) to Armour", + "(21-26)% increased Armour", + ["affix"] = "Tortoise's", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(21-26)% increased Armour", + }, + [3484657501] = { + "+(30-41) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase4"] = { + "+(42-57) to Armour", + "(27-32)% increased Armour", + ["affix"] = "Pangolin's", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(27-32)% increased Armour", + }, + [3484657501] = { + "+(42-57) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase5"] = { + "+(58-75) to Armour", + "(33-38)% increased Armour", + ["affix"] = "Shelled", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(33-38)% increased Armour", + }, + [3484657501] = { + "+(58-75) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndBase6"] = { + "+(76-95) to Armour", + "(39-42)% increased Armour", + ["affix"] = "Hardened", + ["group"] = "LocalIncreasedArmourAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(39-42)% increased Armour", + }, + [3484657501] = { + "+(76-95) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield1"] = { + "(15-26)% increased Armour and Energy Shield", + ["affix"] = "Infixed", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 2, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(15-26)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield2"] = { + "(27-42)% increased Armour and Energy Shield", + ["affix"] = "Ingrained", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(27-42)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield3"] = { + "(43-55)% increased Armour and Energy Shield", + ["affix"] = "Instilled", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(43-55)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield4"] = { + "(56-67)% increased Armour and Energy Shield", + ["affix"] = "Infused", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(56-67)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield5"] = { + "(68-79)% increased Armour and Energy Shield", + ["affix"] = "Inculcated", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(68-79)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield6"] = { + "(80-91)% increased Armour and Energy Shield", + ["affix"] = "Interpolated", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-91)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield7"] = { + "(92-100)% increased Armour and Energy Shield", + ["affix"] = "Inspired", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(92-100)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShield8"] = { + "(101-110)% increased Armour and Energy Shield", + ["affix"] = "Interpermeated", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(101-110)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { + "+(3-5) to Armour", + "+(2-4) to maximum Energy Shield", + "(6-13)% increased Armour and Energy Shield", + ["affix"] = "Faithful", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(6-13)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(3-5) to Armour", + }, + [4052037485] = { + "+(2-4) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { + "+(6-16) to Armour", + "+(5-6) to maximum Energy Shield", + "(14-20)% increased Armour and Energy Shield", + ["affix"] = "Noble's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(14-20)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(6-16) to Armour", + }, + [4052037485] = { + "+(5-6) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { + "+(17-23) to Armour", + "+(7-8) to maximum Energy Shield", + "(21-26)% increased Armour and Energy Shield", + ["affix"] = "Inquisitor's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(21-26)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(17-23) to Armour", + }, + [4052037485] = { + "+(7-8) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { + "+(24-32) to Armour", + "+(9-10) to maximum Energy Shield", + "(27-32)% increased Armour and Energy Shield", + ["affix"] = "Crusader's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(27-32)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(24-32) to Armour", + }, + [4052037485] = { + "+(9-10) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { + "+(33-41) to Armour", + "+(11-12) to maximum Energy Shield", + "(33-38)% increased Armour and Energy Shield", + ["affix"] = "Paladin's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(33-38)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(33-41) to Armour", + }, + [4052037485] = { + "+(11-12) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { + "+(42-52) to Armour", + "+(13-15) to maximum Energy Shield", + "(39-42)% increased Armour and Energy Shield", + ["affix"] = "Grand", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 840, + 843, + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(39-42)% increased Armour and Energy Shield", + }, + [3484657501] = { + "+(42-52) to Armour", + }, + [4052037485] = { + "+(13-15) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { + "(6-13)% increased Armour and Energy Shield", + "+(7-10) to maximum Life", + ["affix"] = "Augur's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(7-10) to maximum Life", + }, + [3321629045] = { + "(6-13)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { + "(14-20)% increased Armour and Energy Shield", + "+(11-19) to maximum Life", + ["affix"] = "Auspex's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(11-19) to maximum Life", + }, + [3321629045] = { + "(14-20)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { + "(21-26)% increased Armour and Energy Shield", + "+(20-25) to maximum Life", + ["affix"] = "Druid's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(20-25) to maximum Life", + }, + [3321629045] = { + "(21-26)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { + "(27-32)% increased Armour and Energy Shield", + "+(26-32) to maximum Life", + ["affix"] = "Haruspex's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(26-32) to maximum Life", + }, + [3321629045] = { + "(27-32)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { + "(33-38)% increased Armour and Energy Shield", + "+(33-41) to maximum Life", + ["affix"] = "Visionary's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(33-41) to maximum Life", + }, + [3321629045] = { + "(33-38)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { + "(39-42)% increased Armour and Energy Shield", + "+(42-49) to maximum Life", + ["affix"] = "Prophet's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(42-49) to maximum Life", + }, + [3321629045] = { + "(39-42)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { + "(6-13)% increased Armour and Energy Shield", + "+(6-8) to maximum Mana", + ["affix"] = "Coelacanth's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [3321629045] = { + "(6-13)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { + "(14-20)% increased Armour and Energy Shield", + "+(9-16) to maximum Mana", + ["affix"] = "Swordfish's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [3321629045] = { + "(14-20)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { + "(21-26)% increased Armour and Energy Shield", + "+(17-20) to maximum Mana", + ["affix"] = "Shark's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [3321629045] = { + "(21-26)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { + "(27-32)% increased Armour and Energy Shield", + "+(21-26) to maximum Mana", + ["affix"] = "Dolphin's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [3321629045] = { + "(27-32)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { + "(33-38)% increased Armour and Energy Shield", + "+(27-32) to maximum Mana", + ["affix"] = "Orca's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [3321629045] = { + "(33-38)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { + "(39-42)% increased Armour and Energy Shield", + "+(33-39) to maximum Mana", + ["affix"] = "Whale's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [3321629045] = { + "(39-42)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion1"] = { + "(15-26)% increased Armour and Evasion", + ["affix"] = "Scrapper's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 2, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(15-26)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion2"] = { + "(27-42)% increased Armour and Evasion", + ["affix"] = "Brawler's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(27-42)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion3"] = { + "(43-55)% increased Armour and Evasion", + ["affix"] = "Fencer's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(43-55)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion4"] = { + "(56-67)% increased Armour and Evasion", + ["affix"] = "Gladiator's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(56-67)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion5"] = { + "(68-79)% increased Armour and Evasion", + ["affix"] = "Duelist's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(68-79)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion6"] = { + "(80-91)% increased Armour and Evasion", + ["affix"] = "Hero's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(80-91)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion7"] = { + "(92-100)% increased Armour and Evasion", + ["affix"] = "Legend's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(92-100)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasion8"] = { + "(101-110)% increased Armour and Evasion", + ["affix"] = "Victor's", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(101-110)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase1"] = { + "+(3-5) to Armour", + "+(2-3) to Evasion Rating", + "(6-13)% increased Armour and Evasion", + ["affix"] = "Swordsman's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(6-13)% increased Armour and Evasion", + }, + [3484657501] = { + "+(3-5) to Armour", + }, + [53045048] = { + "+(2-3) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase2"] = { + "+(6-16) to Armour", + "+(4-14) to Evasion Rating", + "(14-20)% increased Armour and Evasion", + ["affix"] = "Fighter's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(14-20)% increased Armour and Evasion", + }, + [3484657501] = { + "+(6-16) to Armour", + }, + [53045048] = { + "+(4-14) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase3"] = { + "+(17-23) to Armour", + "+(15-21) to Evasion Rating", + "(21-26)% increased Armour and Evasion", + ["affix"] = "Veteran's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(21-26)% increased Armour and Evasion", + }, + [3484657501] = { + "+(17-23) to Armour", + }, + [53045048] = { + "+(15-21) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase4"] = { + "+(24-32) to Armour", + "+(22-29) to Evasion Rating", + "(27-32)% increased Armour and Evasion", + ["affix"] = "Warrior's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(27-32)% increased Armour and Evasion", + }, + [3484657501] = { + "+(24-32) to Armour", + }, + [53045048] = { + "+(22-29) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase5"] = { + "+(33-41) to Armour", + "+(30-39) to Evasion Rating", + "(33-38)% increased Armour and Evasion", + ["affix"] = "Knight's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(33-38)% increased Armour and Evasion", + }, + [3484657501] = { + "+(33-41) to Armour", + }, + [53045048] = { + "+(30-39) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndBase6"] = { + "+(42-52) to Armour", + "+(40-50) to Evasion Rating", + "(39-42)% increased Armour and Evasion", + ["affix"] = "Centurion's", + ["group"] = "LocalIncreasedArmourAndEvasionAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 840, + 841, + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(39-42)% increased Armour and Evasion", + }, + [3484657501] = { + "+(42-52) to Armour", + }, + [53045048] = { + "+(40-50) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { + "(15-26)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Shadowy", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 2, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(15-26)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { + "(27-42)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Ethereal", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(27-42)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { + "(43-55)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Unworldly", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(43-55)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { + "(56-67)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Ephemeral", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(56-67)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { + "(68-79)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Evanescent", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(68-79)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { + "(80-91)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Unreal", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(80-91)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { + "(92-100)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Incorporeal", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(92-100)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { + "(101-110)% increased Armour, Evasion and Energy Shield", + ["affix"] = "Ascendant", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(101-110)% increased Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife1"] = { + "(6-13)% increased Armour and Evasion", + "+(7-10) to maximum Life", + ["affix"] = "Bully's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(6-13)% increased Armour and Evasion", + }, + [3299347043] = { + "+(7-10) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife2"] = { + "(14-20)% increased Armour and Evasion", + "+(11-19) to maximum Life", + ["affix"] = "Thug's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(14-20)% increased Armour and Evasion", + }, + [3299347043] = { + "+(11-19) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife3"] = { + "(21-26)% increased Armour and Evasion", + "+(20-25) to maximum Life", + ["affix"] = "Brute's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(21-26)% increased Armour and Evasion", + }, + [3299347043] = { + "+(20-25) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife4"] = { + "(27-32)% increased Armour and Evasion", + "+(26-32) to maximum Life", + ["affix"] = "Assailant's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(27-32)% increased Armour and Evasion", + }, + [3299347043] = { + "+(26-32) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife5"] = { + "(33-38)% increased Armour and Evasion", + "+(33-41) to maximum Life", + ["affix"] = "Aggressor's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(33-38)% increased Armour and Evasion", + }, + [3299347043] = { + "+(33-41) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndLife6"] = { + "(39-42)% increased Armour and Evasion", + "+(42-49) to maximum Life", + ["affix"] = "Predator's", + ["group"] = "LocalIncreasedArmourAndEvasionAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 887, + }, + ["tradeHashes"] = { + [2451402625] = { + "(39-42)% increased Armour and Evasion", + }, + [3299347043] = { + "+(42-49) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana1"] = { + "(6-13)% increased Armour and Evasion", + "+(6-8) to maximum Mana", + ["affix"] = "Rhoa's", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [2451402625] = { + "(6-13)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana2"] = { + "(14-20)% increased Armour and Evasion", + "+(9-16) to maximum Mana", + ["affix"] = "Rhex's", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [2451402625] = { + "(14-20)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana3"] = { + "(21-26)% increased Armour and Evasion", + "+(17-20) to maximum Mana", + ["affix"] = "Chimeral's", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [2451402625] = { + "(21-26)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana4"] = { + "(27-32)% increased Armour and Evasion", + "+(21-26) to maximum Mana", + ["affix"] = "Bull's", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [2451402625] = { + "(27-32)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana5"] = { + "(33-38)% increased Armour and Evasion", + "+(27-32) to maximum Mana", + ["affix"] = "Minotaur's", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [2451402625] = { + "(33-38)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndEvasionAndMana6"] = { + "(39-42)% increased Armour and Evasion", + "+(33-39) to maximum Mana", + ["affix"] = "Cerberus'", + ["group"] = "LocalIncreasedArmourAndEvasionAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [2451402625] = { + "(39-42)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife1"] = { + "(6-13)% increased Armour", + "+(7-10) to maximum Life", + ["affix"] = "Oyster's", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(6-13)% increased Armour", + }, + [3299347043] = { + "+(7-10) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife2"] = { + "(14-20)% increased Armour", + "+(11-19) to maximum Life", + ["affix"] = "Lobster's", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(14-20)% increased Armour", + }, + [3299347043] = { + "+(11-19) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife3"] = { + "(21-26)% increased Armour", + "+(20-25) to maximum Life", + ["affix"] = "Urchin's", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(21-26)% increased Armour", + }, + [3299347043] = { + "+(20-25) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife4"] = { + "(27-32)% increased Armour", + "+(26-32) to maximum Life", + ["affix"] = "Nautilus'", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(27-32)% increased Armour", + }, + [3299347043] = { + "+(26-32) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife5"] = { + "(33-38)% increased Armour", + "+(33-41) to maximum Life", + ["affix"] = "Octopus'", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(33-38)% increased Armour", + }, + [3299347043] = { + "+(33-41) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndLife6"] = { + "(39-42)% increased Armour", + "+(42-49) to maximum Life", + ["affix"] = "Crocodile's", + ["group"] = "LocalIncreasedArmourAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "armour", + }, + ["statOrder"] = { + 846, + 887, + }, + ["tradeHashes"] = { + [1062208444] = { + "(39-42)% increased Armour", + }, + [3299347043] = { + "+(42-49) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana1"] = { + "(6-13)% increased Armour", + "+(6-8) to maximum Mana", + ["affix"] = "Imposing", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [1062208444] = { + "(6-13)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana2"] = { + "(14-20)% increased Armour", + "+(9-16) to maximum Mana", + ["affix"] = "Venerable", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [1062208444] = { + "(14-20)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana3"] = { + "(21-26)% increased Armour", + "+(17-20) to maximum Mana", + ["affix"] = "Regal", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [1062208444] = { + "(21-26)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana4"] = { + "(27-32)% increased Armour", + "+(21-26) to maximum Mana", + ["affix"] = "Colossal", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [1062208444] = { + "(27-32)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana5"] = { + "(33-38)% increased Armour", + "+(27-32) to maximum Mana", + ["affix"] = "Chieftain's", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [1062208444] = { + "(33-38)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedArmourAndMana6"] = { + "(39-42)% increased Armour", + "+(33-39) to maximum Mana", + ["affix"] = "Ancestral", + ["group"] = "LocalIncreasedArmourAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [1062208444] = { + "(39-42)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "str_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed1"] = { + "(5-7)% increased Attack Speed", + ["affix"] = "of Skill", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(5-7)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed2"] = { + "(8-10)% increased Attack Speed", + ["affix"] = "of Ease", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 11, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(8-10)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed3"] = { + "(11-13)% increased Attack Speed", + ["affix"] = "of Mastery", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 22, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(11-13)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed4"] = { + "(14-16)% increased Attack Speed", + ["affix"] = "of Renown", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 30, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(14-16)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed5"] = { + "(17-19)% increased Attack Speed", + ["affix"] = "of Acclaim", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 37, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(17-19)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed6"] = { + "(20-22)% increased Attack Speed", + ["affix"] = "of Fame", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 45, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(20-22)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed7"] = { + "(23-25)% increased Attack Speed", + ["affix"] = "of Infamy", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 60, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(23-25)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalIncreasedAttackSpeed8"] = { + "(26-28)% increased Attack Speed", + ["affix"] = "of Celebration", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 77, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(26-28)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield1"] = { + "+(10-17) to maximum Energy Shield", + ["affix"] = "Shining", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(10-17) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield10"] = { + "+(81-90) to maximum Energy Shield", + ["affix"] = "Incandescent", + ["group"] = "LocalEnergyShield", + ["level"] = 70, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(81-90) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield11"] = { + "+(91-96) to maximum Energy Shield", + ["affix"] = "Resplendent", + ["group"] = "LocalEnergyShield", + ["level"] = 79, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(91-96) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "shield", + "helmet", + "gloves", + "boots", + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield2"] = { + "+(18-24) to maximum Energy Shield", + ["affix"] = "Glimmering", + ["group"] = "LocalEnergyShield", + ["level"] = 8, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(18-24) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield3"] = { + "+(25-30) to maximum Energy Shield", + ["affix"] = "Glittering", + ["group"] = "LocalEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(25-30) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield4"] = { + "+(31-35) to maximum Energy Shield", + ["affix"] = "Glowing", + ["group"] = "LocalEnergyShield", + ["level"] = 25, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(31-35) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield5"] = { + "+(36-41) to maximum Energy Shield", + ["affix"] = "Radiating", + ["group"] = "LocalEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(36-41) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield6"] = { + "+(42-47) to maximum Energy Shield", + ["affix"] = "Pulsing", + ["group"] = "LocalEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(42-47) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield7"] = { + "+(48-60) to maximum Energy Shield", + ["affix"] = "Blazing", + ["group"] = "LocalEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(48-60) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield8"] = { + "+(61-73) to maximum Energy Shield", + ["affix"] = "Dazzling", + ["group"] = "LocalEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(61-73) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "boots", + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShield9"] = { + "+(74-80) to maximum Energy Shield", + ["affix"] = "Scintillating", + ["group"] = "LocalEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(74-80) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "int_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase1"] = { + "+(4-7) to maximum Energy Shield", + "(6-13)% increased Energy Shield", + ["affix"] = "Deacon's", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(6-13)% increased Energy Shield", + }, + [4052037485] = { + "+(4-7) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase2"] = { + "+(8-13) to maximum Energy Shield", + "(14-20)% increased Energy Shield", + ["affix"] = "Cardinal's", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(14-20)% increased Energy Shield", + }, + [4052037485] = { + "+(8-13) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase3"] = { + "+(14-16) to maximum Energy Shield", + "(21-26)% increased Energy Shield", + ["affix"] = "Priest's", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(21-26)% increased Energy Shield", + }, + [4052037485] = { + "+(14-16) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase4"] = { + "+(17-20) to maximum Energy Shield", + "(27-32)% increased Energy Shield", + ["affix"] = "High Priest's", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(27-32)% increased Energy Shield", + }, + [4052037485] = { + "+(17-20) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase5"] = { + "+(21-25) to maximum Energy Shield", + "(33-38)% increased Energy Shield", + ["affix"] = "Archon's", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(33-38)% increased Energy Shield", + }, + [4052037485] = { + "+(21-25) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndBase6"] = { + "+(26-30) to maximum Energy Shield", + "(39-42)% increased Energy Shield", + ["affix"] = "Divine", + ["group"] = "LocalIncreasedEnergyShieldAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(39-42)% increased Energy Shield", + }, + [4052037485] = { + "+(26-30) to maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife1"] = { + "(6-13)% increased Energy Shield", + "+(7-10) to maximum Life", + ["affix"] = "Monk's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(7-10) to maximum Life", + }, + [4015621042] = { + "(6-13)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife2"] = { + "(14-20)% increased Energy Shield", + "+(11-19) to maximum Life", + ["affix"] = "Prior's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(11-19) to maximum Life", + }, + [4015621042] = { + "(14-20)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife3"] = { + "(21-26)% increased Energy Shield", + "+(20-25) to maximum Life", + ["affix"] = "Abbot's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(20-25) to maximum Life", + }, + [4015621042] = { + "(21-26)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife4"] = { + "(27-32)% increased Energy Shield", + "+(26-32) to maximum Life", + ["affix"] = "Bishop's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(26-32) to maximum Life", + }, + [4015621042] = { + "(27-32)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife5"] = { + "(33-38)% increased Energy Shield", + "+(33-41) to maximum Life", + ["affix"] = "Exarch's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(33-41) to maximum Life", + }, + [4015621042] = { + "(33-38)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndLife6"] = { + "(39-42)% increased Energy Shield", + "+(42-49) to maximum Life", + ["affix"] = "Pope's", + ["group"] = "LocalIncreasedEnergyShieldAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 849, + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(42-49) to maximum Life", + }, + [4015621042] = { + "(39-42)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "focus", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana1"] = { + "(6-13)% increased Energy Shield", + "+(6-8) to maximum Mana", + ["affix"] = "Imbued", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [4015621042] = { + "(6-13)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana2"] = { + "(14-20)% increased Energy Shield", + "+(9-16) to maximum Mana", + ["affix"] = "Serene", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [4015621042] = { + "(14-20)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana3"] = { + "(21-26)% increased Energy Shield", + "+(17-20) to maximum Mana", + ["affix"] = "Sacred", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [4015621042] = { + "(21-26)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana4"] = { + "(27-32)% increased Energy Shield", + "+(21-26) to maximum Mana", + ["affix"] = "Celestial", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [4015621042] = { + "(27-32)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana5"] = { + "(33-38)% increased Energy Shield", + "+(27-32) to maximum Mana", + ["affix"] = "Heavenly", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [4015621042] = { + "(33-38)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldAndMana6"] = { + "(39-42)% increased Energy Shield", + "+(33-39) to maximum Mana", + ["affix"] = "Angel's", + ["group"] = "LocalIncreasedEnergyShieldAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [4015621042] = { + "(39-42)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent1"] = { + "(15-26)% increased Energy Shield", + ["affix"] = "Protective", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(15-26)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent2"] = { + "(27-42)% increased Energy Shield", + ["affix"] = "Strong-Willed", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(27-42)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent3"] = { + "(43-55)% increased Energy Shield", + ["affix"] = "Resolute", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 33, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(43-55)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent4"] = { + "(56-67)% increased Energy Shield", + ["affix"] = "Fearless", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(56-67)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent5"] = { + "(68-79)% increased Energy Shield", + ["affix"] = "Dauntless", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(68-79)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent6"] = { + "(80-91)% increased Energy Shield", + ["affix"] = "Indomitable", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 60, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(80-91)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent7_"] = { + "(92-100)% increased Energy Shield", + ["affix"] = "Unassailable", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 65, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(92-100)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEnergyShieldPercent8"] = { + "(101-110)% increased Energy Shield", + ["affix"] = "Unfaltering", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(101-110)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase1"] = { + "+(4-6) to Evasion Rating", + "(6-13)% increased Evasion Rating", + ["affix"] = "Impala's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(6-13)% increased Evasion Rating", + }, + [53045048] = { + "+(4-6) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase2"] = { + "+(7-26) to Evasion Rating", + "(14-20)% increased Evasion Rating", + ["affix"] = "Buck's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(14-20)% increased Evasion Rating", + }, + [53045048] = { + "+(7-26) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase3"] = { + "+(27-38) to Evasion Rating", + "(21-26)% increased Evasion Rating", + ["affix"] = "Moose's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(21-26)% increased Evasion Rating", + }, + [53045048] = { + "+(27-38) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase4"] = { + "+(39-53) to Evasion Rating", + "(27-32)% increased Evasion Rating", + ["affix"] = "Deer's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(27-32)% increased Evasion Rating", + }, + [53045048] = { + "+(39-53) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase5"] = { + "+(54-70) to Evasion Rating", + "(33-38)% increased Evasion Rating", + ["affix"] = "Caribou's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(33-38)% increased Evasion Rating", + }, + [53045048] = { + "+(54-70) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndBase6"] = { + "+(71-90) to Evasion Rating", + "(39-42)% increased Evasion Rating", + ["affix"] = "Antelope's", + ["group"] = "LocalIncreasedEvasionAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(39-42)% increased Evasion Rating", + }, + [53045048] = { + "+(71-90) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { + "(15-26)% increased Evasion and Energy Shield", + ["affix"] = "Shadowy", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 2, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(15-26)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { + "(27-42)% increased Evasion and Energy Shield", + ["affix"] = "Ethereal", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(27-42)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { + "(43-55)% increased Evasion and Energy Shield", + ["affix"] = "Unworldly", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(43-55)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { + "(56-67)% increased Evasion and Energy Shield", + ["affix"] = "Ephemeral", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(56-67)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { + "(68-79)% increased Evasion and Energy Shield", + ["affix"] = "Evanescent", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(68-79)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { + "(80-91)% increased Evasion and Energy Shield", + ["affix"] = "Unreal", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(80-91)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { + "(92-100)% increased Evasion and Energy Shield", + ["affix"] = "Illusory", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(92-100)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { + "(101-110)% increased Evasion and Energy Shield", + ["affix"] = "Incorporeal", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(101-110)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { + "+(2-3) to Evasion Rating", + "+(2-4) to maximum Energy Shield", + "(6-13)% increased Evasion and Energy Shield", + ["affix"] = "Pursuer's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 8, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(6-13)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(2-4) to maximum Energy Shield", + }, + [53045048] = { + "+(2-3) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { + "+(4-14) to Evasion Rating", + "+(5-6) to maximum Energy Shield", + "(14-20)% increased Evasion and Energy Shield", + ["affix"] = "Tracker's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(14-20)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(5-6) to maximum Energy Shield", + }, + [53045048] = { + "+(4-14) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { + "+(15-21) to Evasion Rating", + "+(7-8) to maximum Energy Shield", + "(21-26)% increased Evasion and Energy Shield", + ["affix"] = "Chaser's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(21-26)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(7-8) to maximum Energy Shield", + }, + [53045048] = { + "+(15-21) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { + "+(22-29) to Evasion Rating", + "+(9-10) to maximum Energy Shield", + "(27-32)% increased Evasion and Energy Shield", + ["affix"] = "Phantom's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(27-32)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(9-10) to maximum Energy Shield", + }, + [53045048] = { + "+(22-29) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { + "+(30-39) to Evasion Rating", + "+(11-12) to maximum Energy Shield", + "(33-38)% increased Evasion and Energy Shield", + ["affix"] = "Rogue's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(33-38)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(11-12) to maximum Energy Shield", + }, + [53045048] = { + "+(30-39) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { + "+(40-50) to Evasion Rating", + "+(13-15) to maximum Energy Shield", + "(39-42)% increased Evasion and Energy Shield", + ["affix"] = "Stalker's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndBase", + ["level"] = 78, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(39-42)% increased Evasion and Energy Shield", + }, + [4052037485] = { + "+(13-15) to maximum Energy Shield", + }, + [53045048] = { + "+(40-50) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { + "(6-13)% increased Evasion and Energy Shield", + "+(7-10) to maximum Life", + ["affix"] = "Poet's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(6-13)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(7-10) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { + "(14-20)% increased Evasion and Energy Shield", + "+(11-19) to maximum Life", + ["affix"] = "Musician's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(14-20)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(11-19) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { + "(21-26)% increased Evasion and Energy Shield", + "+(20-25) to maximum Life", + ["affix"] = "Troubadour's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(21-26)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(20-25) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { + "(27-32)% increased Evasion and Energy Shield", + "+(26-32) to maximum Life", + ["affix"] = "Bard's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(27-32)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(26-32) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { + "(33-38)% increased Evasion and Energy Shield", + "+(33-41) to maximum Life", + ["affix"] = "Minstrel's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(33-38)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(33-41) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { + "(39-42)% increased Evasion and Energy Shield", + "+(42-49) to maximum Life", + ["affix"] = "Maestro's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 887, + }, + ["tradeHashes"] = { + [1999113824] = { + "(39-42)% increased Evasion and Energy Shield", + }, + [3299347043] = { + "+(42-49) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { + "(6-13)% increased Evasion and Energy Shield", + "+(6-8) to maximum Mana", + ["affix"] = "Vulture's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [1999113824] = { + "(6-13)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { + "(14-20)% increased Evasion and Energy Shield", + "+(9-16) to maximum Mana", + ["affix"] = "Kingfisher's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [1999113824] = { + "(14-20)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { + "(21-26)% increased Evasion and Energy Shield", + "+(17-20) to maximum Mana", + ["affix"] = "Owl's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [1999113824] = { + "(21-26)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { + "(27-32)% increased Evasion and Energy Shield", + "+(21-26) to maximum Mana", + ["affix"] = "Hawk's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [1999113824] = { + "(27-32)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { + "(33-38)% increased Evasion and Energy Shield", + "+(27-32) to maximum Mana", + ["affix"] = "Eagle's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [1999113824] = { + "(33-38)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { + "(39-42)% increased Evasion and Energy Shield", + "+(33-39) to maximum Mana", + ["affix"] = "Falcon's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [1999113824] = { + "(39-42)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife1"] = { + "(6-13)% increased Evasion Rating", + "+(7-10) to maximum Life", + ["affix"] = "Flea's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(6-13)% increased Evasion Rating", + }, + [3299347043] = { + "+(7-10) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife2"] = { + "(14-20)% increased Evasion Rating", + "+(11-19) to maximum Life", + ["affix"] = "Fawn's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(14-20)% increased Evasion Rating", + }, + [3299347043] = { + "+(11-19) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife3"] = { + "(21-26)% increased Evasion Rating", + "+(20-25) to maximum Life", + ["affix"] = "Mouflon's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(21-26)% increased Evasion Rating", + }, + [3299347043] = { + "+(20-25) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife4"] = { + "(27-32)% increased Evasion Rating", + "+(26-32) to maximum Life", + ["affix"] = "Ram's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(27-32)% increased Evasion Rating", + }, + [3299347043] = { + "+(26-32) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife5"] = { + "(33-38)% increased Evasion Rating", + "+(33-41) to maximum Life", + ["affix"] = "Ibex's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(33-38)% increased Evasion Rating", + }, + [3299347043] = { + "+(33-41) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndLife6"] = { + "(39-42)% increased Evasion Rating", + "+(42-49) to maximum Life", + ["affix"] = "Stag's", + ["group"] = "LocalIncreasedEvasionAndLife", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "life", + "evasion", + }, + ["statOrder"] = { + 848, + 887, + }, + ["tradeHashes"] = { + [124859000] = { + "(39-42)% increased Evasion Rating", + }, + [3299347043] = { + "+(42-49) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "shield", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana1"] = { + "(6-13)% increased Evasion Rating", + "+(6-8) to maximum Mana", + ["affix"] = "Nomad's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 8, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(6-8) to maximum Mana", + }, + [124859000] = { + "(6-13)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana2"] = { + "(14-20)% increased Evasion Rating", + "+(9-16) to maximum Mana", + ["affix"] = "Drifter's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 16, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(9-16) to maximum Mana", + }, + [124859000] = { + "(14-20)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana3"] = { + "(21-26)% increased Evasion Rating", + "+(17-20) to maximum Mana", + ["affix"] = "Traveller's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 33, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [124859000] = { + "(21-26)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana4"] = { + "(27-32)% increased Evasion Rating", + "+(21-26) to maximum Mana", + ["affix"] = "Explorer's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 46, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-26) to maximum Mana", + }, + [124859000] = { + "(27-32)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana5"] = { + "(33-38)% increased Evasion Rating", + "+(27-32) to maximum Mana", + ["affix"] = "Wayfarer's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 60, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(27-32) to maximum Mana", + }, + [124859000] = { + "(33-38)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionAndMana6"] = { + "(39-42)% increased Evasion Rating", + "+(33-39) to maximum Mana", + ["affix"] = "Wanderer's", + ["group"] = "LocalIncreasedEvasionAndMana", + ["level"] = 78, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(33-39) to maximum Mana", + }, + [124859000] = { + "(39-42)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "body_armour", + "shield", + "gloves", + "boots", + "dex_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating1"] = { + "+(11-18) to Evasion Rating", + ["affix"] = "Agile", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(11-18) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating10"] = { + "+(235-261) to Evasion Rating", + ["affix"] = "Lissome", + ["group"] = "LocalEvasionRating", + ["level"] = 75, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(235-261) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating11"] = { + "+(262-300) to Evasion Rating", + ["affix"] = "Fugitive", + ["group"] = "LocalEvasionRating", + ["level"] = 79, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(262-300) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "helmet", + "gloves", + "boots", + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating2"] = { + "+(19-46) to Evasion Rating", + ["affix"] = "Dancer's", + ["group"] = "LocalEvasionRating", + ["level"] = 8, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(19-46) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating3"] = { + "+(47-66) to Evasion Rating", + ["affix"] = "Acrobat's", + ["group"] = "LocalEvasionRating", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(47-66) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating4"] = { + "+(67-87) to Evasion Rating", + ["affix"] = "Fleet", + ["group"] = "LocalEvasionRating", + ["level"] = 25, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(67-87) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating5"] = { + "+(88-116) to Evasion Rating", + ["affix"] = "Blurred", + ["group"] = "LocalEvasionRating", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(88-116) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating6"] = { + "+(117-146) to Evasion Rating", + ["affix"] = "Phased", + ["group"] = "LocalEvasionRating", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(117-146) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating7_"] = { + "+(147-176) to Evasion Rating", + ["affix"] = "Vaporous", + ["group"] = "LocalEvasionRating", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(147-176) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating8"] = { + "+(177-207) to Evasion Rating", + ["affix"] = "Elusory", + ["group"] = "LocalEvasionRating", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(177-207) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "boots", + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRating9___"] = { + "+(208-234) to Evasion Rating", + ["affix"] = "Adroit", + ["group"] = "LocalEvasionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(208-234) to Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "dex_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent1"] = { + "(15-26)% increased Evasion Rating", + ["affix"] = "Shade's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(15-26)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent2"] = { + "(27-42)% increased Evasion Rating", + ["affix"] = "Ghost's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(27-42)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent3"] = { + "(43-55)% increased Evasion Rating", + ["affix"] = "Spectre's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 33, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(43-55)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent4"] = { + "(56-67)% increased Evasion Rating", + ["affix"] = "Wraith's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(56-67)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent5"] = { + "(68-79)% increased Evasion Rating", + ["affix"] = "Phantasm's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(68-79)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent6"] = { + "(80-91)% increased Evasion Rating", + ["affix"] = "Nightmare's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 60, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(80-91)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent7"] = { + "(92-100)% increased Evasion Rating", + ["affix"] = "Mirage's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(92-100)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedEvasionRatingPercent8"] = { + "(101-110)% increased Evasion Rating", + ["affix"] = "Illusion's", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(101-110)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { + "+1 to Weapon Range", + ["affix"] = "of the Essence", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 58, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+1 to Weapon Range", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { + "+2 to Weapon Range", + ["affix"] = "of the Essence", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 74, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { + "+3 to Weapon Range", + ["affix"] = "of the Essence", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 82, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+3 to Weapon Range", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent1"] = { + "(40-49)% increased Physical Damage", + ["affix"] = "Heavy", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(40-49)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent2"] = { + "(50-64)% increased Physical Damage", + ["affix"] = "Serrated", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(50-64)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent3"] = { + "(65-84)% increased Physical Damage", + ["affix"] = "Wicked", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(65-84)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent4"] = { + "(85-109)% increased Physical Damage", + ["affix"] = "Vicious", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(85-109)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent5"] = { + "(110-134)% increased Physical Damage", + ["affix"] = "Bloodthirsty", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(110-134)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent6"] = { + "(135-154)% increased Physical Damage", + ["affix"] = "Cruel", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(135-154)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent7"] = { + "(155-169)% increased Physical Damage", + ["affix"] = "Tyrannical", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 75, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(155-169)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercent8"] = { + "(170-179)% increased Physical Damage", + ["affix"] = "Merciless", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 82, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(170-179)% increased Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { + "(15-19)% increased Physical Damage", + "+(16-20) to Accuracy Rating", + ["affix"] = "Squire's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(15-19)% increased Physical Damage", + }, + [691932474] = { + "+(16-20) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { + "(20-24)% increased Physical Damage", + "+(21-46) to Accuracy Rating", + ["affix"] = "Journeyman's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 14, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(20-24)% increased Physical Damage", + }, + [691932474] = { + "+(21-46) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { + "(25-34)% increased Physical Damage", + "+(47-72) to Accuracy Rating", + ["affix"] = "Reaver's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 23, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(25-34)% increased Physical Damage", + }, + [691932474] = { + "+(47-72) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { + "(35-44)% increased Physical Damage", + "+(73-97) to Accuracy Rating", + ["affix"] = "Mercenary's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 38, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(35-44)% increased Physical Damage", + }, + [691932474] = { + "+(73-97) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { + "(45-54)% increased Physical Damage", + "+(98-123) to Accuracy Rating", + ["affix"] = "Champion's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(45-54)% increased Physical Damage", + }, + [691932474] = { + "+(98-123) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { + "(55-64)% increased Physical Damage", + "+(124-149) to Accuracy Rating", + ["affix"] = "Conqueror's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(55-64)% increased Physical Damage", + }, + [691932474] = { + "+(124-149) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { + "(65-74)% increased Physical Damage", + "+(150-174) to Accuracy Rating", + ["affix"] = "Emperor's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 70, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(65-74)% increased Physical Damage", + }, + [691932474] = { + "+(150-174) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { + "(75-79)% increased Physical Damage", + "+(175-200) to Accuracy Rating", + ["affix"] = "Dictator's", + ["group"] = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", + ["level"] = 81, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + 835, + }, + ["tradeHashes"] = { + [1509134228] = { + "(75-79)% increased Physical Damage", + }, + [691932474] = { + "+(175-200) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { + "+(16-27) to Armour", + ["affix"] = "Lacquered", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(16-27) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { + "+(249-277) to Armour", + ["affix"] = "Unmoving", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(249-277) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { + "+(278-310) to Armour", + ["affix"] = "Impervious", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 79, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(278-310) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "shield", + "helmet", + "gloves", + "boots", + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { + "+(28-56) to Armour", + ["affix"] = "Studded", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 8, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(28-56) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { + "+(57-77) to Armour", + ["affix"] = "Ribbed", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(57-77) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { + "+(78-98) to Armour", + ["affix"] = "Fortified", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 25, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(78-98) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { + "+(99-127) to Armour", + ["affix"] = "Plated", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 33, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(99-127) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { + "+(128-159) to Armour", + ["affix"] = "Carapaced", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(128-159) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { + "+(160-190) to Armour", + ["affix"] = "Encased", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(160-190) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { + "+(191-221) to Armour", + ["affix"] = "Enveloped", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(191-221) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "gloves", + "boots", + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { + "+(222-248) to Armour", + ["affix"] = "Abating", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(222-248) to Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "helmet", + "gloves", + "boots", + "str_armour", + "str_dex_int_armour", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(15-26)% increased Armour", + ["affix"] = "Reinforced", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 2, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(15-26)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { + "(27-42)% increased Armour", + ["affix"] = "Layered", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 16, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(27-42)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { + "(43-55)% increased Armour", + ["affix"] = "Lobstered", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 35, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(43-55)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { + "(56-67)% increased Armour", + ["affix"] = "Buttressed", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 46, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(56-67)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { + "(68-79)% increased Armour", + ["affix"] = "Thickened", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 54, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(68-79)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { + "(80-91)% increased Armour", + ["affix"] = "Girded", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 60, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(80-91)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { + "(92-100)% increased Armour", + ["affix"] = "Impregnable", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(92-100)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { + "(101-110)% increased Armour", + ["affix"] = "Impenetrable", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(101-110)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["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, + 1, + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana1"] = { + "(10-14)% increased Spirit", + "+(17-20) to maximum Mana", + ["affix"] = "Advisor's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 2, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [3984865854] = { + "(10-14)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana2"] = { + "(15-18)% increased Spirit", + "+(21-24) to maximum Mana", + ["affix"] = "Counselor's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 11, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-24) to maximum Mana", + }, + [3984865854] = { + "(15-18)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana3"] = { + "(19-22)% increased Spirit", + "+(25-28) to maximum Mana", + ["affix"] = "Emissary's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 26, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(25-28) to maximum Mana", + }, + [3984865854] = { + "(19-22)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana4"] = { + "(23-26)% increased Spirit", + "+(29-33) to maximum Mana", + ["affix"] = "Minister's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 36, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(29-33) to maximum Mana", + }, + [3984865854] = { + "(23-26)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana5"] = { + "(27-30)% increased Spirit", + "+(34-37) to maximum Mana", + ["affix"] = "Envoy's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(34-37) to maximum Mana", + }, + [3984865854] = { + "(27-30)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana6"] = { + "(31-34)% increased Spirit", + "+(38-41) to maximum Mana", + ["affix"] = "Diplomat's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(38-41) to maximum Mana", + }, + [3984865854] = { + "(31-34)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritAndMana7"] = { + "(35-38)% increased Spirit", + "+(42-45) to maximum Mana", + ["affix"] = "Chancellor's", + ["group"] = "LocalIncreasedSpiritAndMana", + ["level"] = 70, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(42-45) to maximum Mana", + }, + [3984865854] = { + "(35-38)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent1"] = { + "(20-26)% increased Spirit", + ["affix"] = "Lord's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(20-26)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent2"] = { + "(27-32)% increased Spirit", + ["affix"] = "Baron's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 8, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(27-32)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent3"] = { + "(33-38)% increased Spirit", + ["affix"] = "Viscount's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 16, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(33-38)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent4"] = { + "(39-44)% increased Spirit", + ["affix"] = "Marquess'", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 33, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(39-44)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent5"] = { + "(45-50)% increased Spirit", + ["affix"] = "Count's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 46, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(45-50)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent6"] = { + "(51-55)% increased Spirit", + ["affix"] = "Duke's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(51-55)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent7"] = { + "(56-60)% increased Spirit", + ["affix"] = "Prince's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(56-60)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalIncreasedSpiritPercent8"] = { + "(61-65)% increased Spirit", + ["affix"] = "King's", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(61-65)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalLightRadiusAndAccuracy1"] = { + "+(10-20) to Accuracy Rating", + "5% increased Light Radius", + ["affix"] = "of Shining", + ["group"] = "LocalLightRadiusAndAccuracy", + ["level"] = 8, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "5% increased Light Radius", + }, + [691932474] = { + "+(10-20) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalLightRadiusAndAccuracy2"] = { + "+(21-40) to Accuracy Rating", + "10% increased Light Radius", + ["affix"] = "of Light", + ["group"] = "LocalLightRadiusAndAccuracy", + ["level"] = 15, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "10% increased Light Radius", + }, + [691932474] = { + "+(21-40) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["LocalLightRadiusAndAccuracy3"] = { + "+(41-60) to Accuracy Rating", + "15% increased Light Radius", + ["affix"] = "of Radiance", + ["group"] = "LocalLightRadiusAndAccuracy", + ["level"] = 30, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "15% increased Light Radius", + }, + [691932474] = { + "+(41-60) to Accuracy Rating", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath1"] = { + "Gain (2-3) Mana per enemy killed", + ["affix"] = "of Absorption", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (2-3) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath2"] = { + "Gain (4-5) Mana per enemy killed", + ["affix"] = "of Osmosis", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 12, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (4-5) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath3"] = { + "Gain (6-9) Mana per enemy killed", + ["affix"] = "of Infusion", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 23, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (6-9) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath4"] = { + "Gain (10-14) Mana per enemy killed", + ["affix"] = "of Enveloping", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 34, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (10-14) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath5"] = { + "Gain (15-20) Mana per enemy killed", + ["affix"] = "of Consumption", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 45, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (15-20) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath6"] = { + "Gain (21-27) Mana per enemy killed", + ["affix"] = "of Siphoning", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 56, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (21-27) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "ring", + "gloves", + "quiver", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath7"] = { + "Gain (28-35) Mana per enemy killed", + ["affix"] = "of Devouring", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 67, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (28-35) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "gloves", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedFromEnemyDeath8"] = { + "Gain (36-45) Mana per enemy killed", + ["affix"] = "of Assimilation", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 78, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (36-45) Mana per enemy killed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "gloves", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaGainedOnBlockEssence1"] = { + "Recover 5% of your maximum Mana when you Block", + ["affix"] = "of the Essence", + ["group"] = "ManaGainedOnBlock", + ["level"] = 63, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 7991, + }, + ["tradeHashes"] = { + [3041288981] = { + "Recover 5% of your maximum Mana when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ManaLeech1"] = { + "Leech (4-4.9)% of Physical Attack Damage as Mana", + ["affix"] = "of the Thirsty", + ["group"] = "ManaLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (4-4.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + }, + }, + ["ManaLeech2"] = { + "Leech (5-5.9)% of Physical Attack Damage as Mana", + ["affix"] = "of the Parched", + ["group"] = "ManaLeechPermyriad", + ["level"] = 21, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (5-5.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ManaLeech3"] = { + "Leech (6-6.9)% of Physical Attack Damage as Mana", + ["affix"] = "of the Arid", + ["group"] = "ManaLeechPermyriad", + ["level"] = 38, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (6-6.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["ManaLeech4"] = { + "Leech (7-7.9)% of Physical Attack Damage as Mana", + ["affix"] = "of the Drought", + ["group"] = "ManaLeechPermyriad", + ["level"] = 54, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (7-7.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaLeech5"] = { + "Leech (8-8.9)% of Physical Attack Damage as Mana", + ["affix"] = "of the Desperate", + ["group"] = "ManaLeechPermyriad", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (8-8.9)% of Physical Attack Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaLeechLocal1"] = { + "Leeches (4-4.9)% of Physical Damage as Mana", + ["affix"] = "of the Thirsty", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (4-4.9)% of Physical Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["ManaLeechLocal2"] = { + "Leeches (5-5.9)% of Physical Damage as Mana", + ["affix"] = "of the Parched", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 21, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (5-5.9)% of Physical Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaLeechLocal3"] = { + "Leeches (6-6.9)% of Physical Damage as Mana", + ["affix"] = "of the Arid", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 38, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (6-6.9)% of Physical Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaLeechLocal4"] = { + "Leeches (7-7.9)% of Physical Damage as Mana", + ["affix"] = "of the Drought", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 54, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (7-7.9)% of Physical Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaLeechLocal5"] = { + "Leeches (8-8.9)% of Physical Damage as Mana", + ["affix"] = "of the Desperate", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (8-8.9)% of Physical Damage as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegeneration1"] = { + "(10-19)% increased Mana Regeneration Rate", + ["affix"] = "of Excitement", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(10-19)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegeneration2"] = { + "(20-29)% increased Mana Regeneration Rate", + ["affix"] = "of Joy", + ["group"] = "ManaRegeneration", + ["level"] = 18, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-29)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegeneration3"] = { + "(30-39)% increased Mana Regeneration Rate", + ["affix"] = "of Elation", + ["group"] = "ManaRegeneration", + ["level"] = 29, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-39)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegeneration4"] = { + "(40-49)% increased Mana Regeneration Rate", + ["affix"] = "of Bliss", + ["group"] = "ManaRegeneration", + ["level"] = 42, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(40-49)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegeneration5"] = { + "(50-59)% increased Mana Regeneration Rate", + ["affix"] = "of Euphoria", + ["group"] = "ManaRegeneration", + ["level"] = 55, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(50-59)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegeneration6"] = { + "(60-69)% increased Mana Regeneration Rate", + ["affix"] = "of Nirvana", + ["group"] = "ManaRegeneration", + ["level"] = 79, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(60-69)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "focus", + "sceptre", + "wand", + "trap", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand1"] = { + "(15-29)% increased Mana Regeneration Rate", + ["affix"] = "of Excitement", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(15-29)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand2"] = { + "(30-44)% increased Mana Regeneration Rate", + ["affix"] = "of Joy", + ["group"] = "ManaRegeneration", + ["level"] = 18, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-44)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand3"] = { + "(45-59)% increased Mana Regeneration Rate", + ["affix"] = "of Elation", + ["group"] = "ManaRegeneration", + ["level"] = 29, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(45-59)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand4"] = { + "(60-74)% increased Mana Regeneration Rate", + ["affix"] = "of Bliss", + ["group"] = "ManaRegeneration", + ["level"] = 42, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(60-74)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand5"] = { + "(75-89)% increased Mana Regeneration Rate", + ["affix"] = "of Euphoria", + ["group"] = "ManaRegeneration", + ["level"] = 55, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(75-89)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationTwoHand6"] = { + "(90-104)% increased Mana Regeneration Rate", + ["affix"] = "of Nirvana", + ["group"] = "ManaRegeneration", + ["level"] = 79, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(90-104)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ManaRegenerationWhileShockedEssence1"] = { + "70% increased Mana Regeneration Rate while Shocked", + ["affix"] = "of the Essence", + ["group"] = "ManaRegenerationWhileShocked", + ["level"] = 63, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2288, + }, + ["tradeHashes"] = { + [2076519255] = { + "70% increased Mana Regeneration Rate while Shocked", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ManaReservationEfficiencyEssence4"] = { + "(3-4)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ManaReservationEfficiency", + ["level"] = 42, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(3-4)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ManaReservationEfficiencyEssence5__"] = { + "(5-6)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ManaReservationEfficiency", + ["level"] = 58, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(5-6)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ManaReservationEfficiencyEssence6_"] = { + "(7-8)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ManaReservationEfficiency", + ["level"] = 74, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(7-8)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ManaReservationEfficiencyEssence7"] = { + "(9-10)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ManaReservationEfficiency", + ["level"] = 82, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(9-10)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["MarkEffectEssence1"] = { + "25% increased Effect of your Mark Skills", + ["affix"] = "of the Essence", + ["group"] = "MarkEffect", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "25% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["MarksmanInfluenceChainToChainOffTerrain1"] = { + "Projectiles have (10-19)% chance to Chain an additional time from terrain", + ["affix"] = "of the Hunt", + ["group"] = "ChainFromTerrain", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (10-19)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceChainToChainOffTerrain2"] = { + "Projectiles have (20-32)% chance to Chain an additional time from terrain", + ["affix"] = "of the Hunt", + ["group"] = "ChainFromTerrain", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (20-32)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { + "Projectiles have (25-50)% chance for an additional Projectile when Forking", + ["affix"] = "of the Hunt", + ["group"] = "ForkingProjectiles", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have (25-50)% chance for an additional Projectile when Forking", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { + "Projectiles have (51-100)% chance for an additional Projectile when Forking", + ["affix"] = "of the Hunt", + ["group"] = "ForkingProjectiles", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have (51-100)% chance for an additional Projectile when Forking", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceChanceToPierce1"] = { + "(25-50)% chance to Pierce an Enemy", + ["affix"] = "of the Hunt", + ["group"] = "ChanceToPierce", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(25-50)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceChanceToPierce2"] = { + "(51-100)% chance to Pierce an Enemy", + ["affix"] = "of the Hunt", + ["group"] = "ChanceToPierce", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(51-100)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceCriticalHitChance1"] = { + "(16-21)% increased Critical Hit Chance", + ["affix"] = "of the Hunt", + ["group"] = "CriticalStrikeChance", + ["level"] = 45, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(16-21)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceCriticalHitChance2"] = { + "(22-27)% increased Critical Hit Chance", + ["affix"] = "of the Hunt", + ["group"] = "CriticalStrikeChance", + ["level"] = 65, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(22-27)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceCriticalHitChance3"] = { + "(28-34)% increased Critical Hit Chance", + ["affix"] = "of the Hunt", + ["group"] = "CriticalStrikeChance", + ["level"] = 75, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(28-34)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceIncreasedMarkDuration1"] = { + "Mark Skills have (50-74)% increased Skill Effect Duration", + ["affix"] = "of the Hunt", + ["group"] = "MarkDuration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 8822, + }, + ["tradeHashes"] = { + [2594634307] = { + "Mark Skills have (50-74)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceIncreasedMarkDuration2"] = { + "Mark Skills have (75-100)% increased Skill Effect Duration", + ["affix"] = "of the Hunt", + ["group"] = "MarkDuration", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 8822, + }, + ["tradeHashes"] = { + [2594634307] = { + "Mark Skills have (75-100)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkEffect1"] = { + "(15-24)% increased Effect of your Mark Skills", + ["affix"] = "Kolr's", + ["group"] = "MarkEffect", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "(15-24)% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkEffect2"] = { + "(25-39)% increased Effect of your Mark Skills", + ["affix"] = "Kolr's", + ["group"] = "MarkEffect", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "(25-39)% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkSkillLevels1"] = { + "+(1-2) to Level of all Mark Skills", + ["affix"] = "of the Hunt", + ["group"] = "MarkSkillGemLevels", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 8823, + }, + ["tradeHashes"] = { + [1992191903] = { + "+(1-2) to Level of all Mark Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkSkillLevels2"] = { + "+(3-4) to Level of all Mark Skills", + ["affix"] = "of the Hunt", + ["group"] = "MarkSkillGemLevels", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 8823, + }, + ["tradeHashes"] = { + [1992191903] = { + "+(3-4) to Level of all Mark Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkSkillUseSpeed1"] = { + "Mark Skills have (13-23)% increased Use Speed", + ["affix"] = "of the Hunt", + ["group"] = "MarkUseSpeed", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 1946, + }, + ["tradeHashes"] = { + [1714971114] = { + "Mark Skills have (13-23)% increased Use Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceMarkSkillUseSpeed2"] = { + "Mark Skills have (24-39)% increased Use Speed", + ["affix"] = "of the Hunt", + ["group"] = "MarkUseSpeed", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 1946, + }, + ["tradeHashes"] = { + [1714971114] = { + "Mark Skills have (24-39)% increased Use Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileDamage1"] = { + "(11-20)% increased Projectile Damage", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamage", + ["level"] = 45, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "(11-20)% increased Projectile Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileDamage2"] = { + "(21-30)% increased Projectile Damage", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamage", + ["level"] = 65, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "(21-30)% increased Projectile Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileDamage3"] = { + "(31-40)% increased Projectile Damage", + ["affix"] = "Kolr's", + ["group"] = "ProjectileDamage", + ["level"] = 75, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "(31-40)% increased Projectile Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileSkills1"] = { + "+1 to Level of all Projectile Skills", + ["affix"] = "of the Hunt", + ["group"] = "GlobalIncreaseProjectileSkillGemLevel", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+1 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileSkills2"] = { + "+2 to Level of all Projectile Skills", + ["affix"] = "of the Hunt", + ["group"] = "GlobalIncreaseProjectileSkillGemLevel", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+2 to Level of all Projectile Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileSpeed1"] = { + "(11-20)% increased Projectile Speed", + ["affix"] = "Kolr's", + ["group"] = "ProjectileSpeed", + ["level"] = 45, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(11-20)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileSpeed2"] = { + "(21-30)% increased Projectile Speed", + ["affix"] = "Kolr's", + ["group"] = "ProjectileSpeed", + ["level"] = 65, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(21-30)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceProjectileSpeed3"] = { + "(31-40)% increased Projectile Speed", + ["affix"] = "Kolr's", + ["group"] = "ProjectileSpeed", + ["level"] = 75, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(31-40)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { + "+(23-36)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Hunt", + ["group"] = "AdditionalProjectileChance", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(23-36)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { + "+(37-50)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Hunt", + ["group"] = "AdditionalProjectileChance", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(37-50)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { + "+(51-66)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of the Hunt", + ["group"] = "AdditionalProjectileChance", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(51-66)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "marksman", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumChaosResist1"] = { + "+1% to Maximum Chaos Resistance", + ["affix"] = "of Regularity", + ["group"] = "MaximumChaosResistance", + ["level"] = 68, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumChaosResist2_"] = { + "+2% to Maximum Chaos Resistance", + ["affix"] = "of Concord", + ["group"] = "MaximumChaosResistance", + ["level"] = 75, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+2% to Maximum Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumChaosResist3"] = { + "+3% to Maximum Chaos Resistance", + ["affix"] = "of Harmony", + ["group"] = "MaximumChaosResistance", + ["level"] = 81, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+3% to Maximum Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumColdResist1"] = { + "+1% to Maximum Cold Resistance", + ["affix"] = "of Furs", + ["group"] = "MaximumColdResist", + ["level"] = 68, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumColdResist2"] = { + "+2% to Maximum Cold Resistance", + ["affix"] = "of the Tundra", + ["group"] = "MaximumColdResist", + ["level"] = 75, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumColdResist3"] = { + "+3% to Maximum Cold Resistance", + ["affix"] = "of the Mammoth", + ["group"] = "MaximumColdResist", + ["level"] = 81, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+3% to Maximum Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumDoomAmuletEssence1"] = { + "10% increased Curse Magnitudes", + ["affix"] = "of the Essence", + ["group"] = "CurseEffectiveness", + ["level"] = 63, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "10% increased Curse Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["MaximumDoomEssence1__"] = { + "5% increased Curse Magnitudes", + ["affix"] = "of the Essence", + ["group"] = "CurseEffectiveness", + ["level"] = 63, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "5% increased Curse Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["MaximumElementalResistance1"] = { + "+1% to all Maximum Elemental Resistances", + ["affix"] = "of the Deathless", + ["group"] = "MaximumElementalResistance", + ["level"] = 75, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+1% to all Maximum Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumElementalResistance2"] = { + "+2% to all Maximum Elemental Resistances", + ["affix"] = "of the Everlasting", + ["group"] = "MaximumElementalResistance", + ["level"] = 81, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+2% to all Maximum Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumFireResist1"] = { + "+1% to Maximum Fire Resistance", + ["affix"] = "of the Bushfire", + ["group"] = "MaximumFireResist", + ["level"] = 68, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumFireResist2_"] = { + "+2% to Maximum Fire Resistance", + ["affix"] = "of the Molten Core", + ["group"] = "MaximumFireResist", + ["level"] = 75, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumFireResist3"] = { + "+3% to Maximum Fire Resistance", + ["affix"] = "of the Solar Storm", + ["group"] = "MaximumFireResist", + ["level"] = 81, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+3% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLifeIncrease1"] = { + "(3-4)% increased maximum Life", + ["affix"] = "Hopeful", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 33, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(3-4)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLifeIncrease2"] = { + "(5-6)% increased maximum Life", + ["affix"] = "Optimistic", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 60, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-6)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLifeIncrease3"] = { + "(7-8)% increased maximum Life", + ["affix"] = "Confident", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 75, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(7-8)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLightningResist1"] = { + "+1% to Maximum Lightning Resistance", + ["affix"] = "of Impedance", + ["group"] = "MaximumLightningResistance", + ["level"] = 68, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLightningResist2___"] = { + "+2% to Maximum Lightning Resistance", + ["affix"] = "of Shockproofing", + ["group"] = "MaximumLightningResistance", + ["level"] = 75, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumLightningResist3"] = { + "+3% to Maximum Lightning Resistance", + ["affix"] = "of the Lightning Rod", + ["group"] = "MaximumLightningResistance", + ["level"] = 81, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+3% to Maximum Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumManaIncrease1"] = { + "(3-4)% increased maximum Mana", + ["affix"] = "Cognizant", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 33, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(3-4)% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumManaIncrease2"] = { + "(5-6)% increased maximum Mana", + ["affix"] = "Perceptive", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 60, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(5-6)% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MaximumManaIncrease3"] = { + "(7-8)% increased maximum Mana", + ["affix"] = "Mnemonic", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 75, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(7-8)% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionAreaOfEffect1"] = { + "Minions have (5-8)% increased Area of Effect", + ["affix"] = "of Scurrying", + ["group"] = "MinionAreaOfEffect", + ["level"] = 23, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (5-8)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAreaOfEffect2"] = { + "Minions have (9-12)% increased Area of Effect", + ["affix"] = "of Bustling", + ["group"] = "MinionAreaOfEffect", + ["level"] = 36, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (9-12)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAreaOfEffect3"] = { + "Minions have (13-16)% increased Area of Effect", + ["affix"] = "of Trampling", + ["group"] = "MinionAreaOfEffect", + ["level"] = 49, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (13-16)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAreaOfEffect4"] = { + "Minions have (17-20)% increased Area of Effect", + ["affix"] = "of Storming", + ["group"] = "MinionAreaOfEffect", + ["level"] = 61, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (17-20)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAreaOfEffect5"] = { + "Minions have (21-24)% increased Area of Effect", + ["affix"] = "of Stampeding", + ["group"] = "MinionAreaOfEffect", + ["level"] = 73, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (21-24)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAttackSpeedAndCastSpeed1"] = { + "Minions have (3-4)% increased Attack and Cast Speed", + ["affix"] = "of Guidance", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 31, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (3-4)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAttackSpeedAndCastSpeed2"] = { + "Minions have (5-6)% increased Attack and Cast Speed", + ["affix"] = "of Direction", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 53, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (5-6)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAttackSpeedAndCastSpeed3"] = { + "Minions have (7-8)% increased Attack and Cast Speed", + ["affix"] = "of Management", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 69, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (7-8)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionAttackSpeedAndCastSpeed4"] = { + "Minions have (9-10)% increased Attack and Cast Speed", + ["affix"] = "of Control", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 80, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (9-10)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage1"] = { + "Minions deal (13-20)% increased Damage with Command Skills", + ["affix"] = "Guide's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 18, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (13-20)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage2"] = { + "Minions deal (21-28)% increased Damage with Command Skills", + ["affix"] = "Lookout's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 35, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (21-28)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage3"] = { + "Minions deal (29-36)% increased Damage with Command Skills", + ["affix"] = "Watcher's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 44, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (29-36)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage4"] = { + "Minions deal (37-44)% increased Damage with Command Skills", + ["affix"] = "Sentry's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 52, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (37-44)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage5"] = { + "Minions deal (45-52)% increased Damage with Command Skills", + ["affix"] = "Shepherd's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 63, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (45-52)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCommandSkillDamage6"] = { + "Minions deal (53-61)% increased Damage with Command Skills", + ["affix"] = "Custodian's", + ["group"] = "MinionCommandSkillDamage", + ["level"] = 81, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9027, + }, + ["tradeHashes"] = { + [3742865955] = { + "Minions deal (53-61)% increased Damage with Command Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing1"] = { + "Minions have (5-12)% increased Critical Hit Chance", + ["affix"] = "of Pricking", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 18, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (5-12)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing2"] = { + "Minions have (13-20)% increased Critical Hit Chance", + ["affix"] = "of Stinging", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 32, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (13-20)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing3"] = { + "Minions have (21-28)% increased Critical Hit Chance", + ["affix"] = "of Gouging", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 45, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (21-28)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing4"] = { + "Minions have (29-36)% increased Critical Hit Chance", + ["affix"] = "of Puncturing", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 58, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (29-36)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing5"] = { + "Minions have (37-44)% increased Critical Hit Chance", + ["affix"] = "of Lacinating", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 70, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (37-44)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeChanceRing6"] = { + "Minions have (45-52)% increased Critical Hit Chance", + ["affix"] = "of Piercing", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 81, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (45-52)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing1"] = { + "Minions have (6-10)% increased Critical Damage Bonus", + ["affix"] = "of Quashing", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 17, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (6-10)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing2"] = { + "Minions have (11-15)% increased Critical Damage Bonus", + ["affix"] = "of Purging", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (11-15)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing3"] = { + "Minions have (16-20)% increased Critical Damage Bonus", + ["affix"] = "of Elimination", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (16-20)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing4"] = { + "Minions have (21-25)% increased Critical Damage Bonus", + ["affix"] = "of Devastation", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 57, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (21-25)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing5"] = { + "Minions have (26-30)% increased Critical Damage Bonus", + ["affix"] = "of Eradication", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 69, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (26-30)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionCriticalStrikeMultiplierRing6"] = { + "Minions have (31-35)% increased Critical Damage Bonus", + ["affix"] = "of Extinction", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 80, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (31-35)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage1"] = { + "Minions deal (7-9)% increased Damage", + ["affix"] = "Hustler's", + ["group"] = "MinionDamage", + ["level"] = 13, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (7-9)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage2"] = { + "Minions deal (10-12)% increased Damage", + ["affix"] = "Conniver's", + ["group"] = "MinionDamage", + ["level"] = 26, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (10-12)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage3"] = { + "Minions deal (13-15)% increased Damage", + ["affix"] = "Schemer's", + ["group"] = "MinionDamage", + ["level"] = 33, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (13-15)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage4"] = { + "Minions deal (16-18)% increased Damage", + ["affix"] = "Plotter's", + ["group"] = "MinionDamage", + ["level"] = 46, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (16-18)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage5"] = { + "Minions deal (19-21)% increased Damage", + ["affix"] = "Conspirator's", + ["group"] = "MinionDamage", + ["level"] = 54, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (19-21)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage6"] = { + "Minions deal (22-24)% increased Damage", + ["affix"] = "Exploiter's", + ["group"] = "MinionDamage", + ["level"] = 65, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (22-24)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage7"] = { + "Minions deal (25-27)% increased Damage", + ["affix"] = "Manipulator's", + ["group"] = "MinionDamage", + ["level"] = 70, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (25-27)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionDamage8"] = { + "Minions deal (28-31)% increased Damage", + ["affix"] = "Puppeteer's", + ["group"] = "MinionDamage", + ["level"] = 82, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (28-31)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance1"] = { + "Minions have +(7-9)% to all Elemental Resistances", + ["affix"] = "of Numbness", + ["group"] = "MinionElementalResistance", + ["level"] = 22, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(7-9)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance2"] = { + "Minions have +(10-12)% to all Elemental Resistances", + ["affix"] = "of Dullness", + ["group"] = "MinionElementalResistance", + ["level"] = 38, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(10-12)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance3"] = { + "Minions have +(14-16)% to all Elemental Resistances", + ["affix"] = "of Desensitisation", + ["group"] = "MinionElementalResistance", + ["level"] = 49, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(14-16)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance4"] = { + "Minions have +(17-19)% to all Elemental Resistances", + ["affix"] = "of Conditioning", + ["group"] = "MinionElementalResistance", + ["level"] = 57, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(17-19)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance5"] = { + "Minions have +(20-22)% to all Elemental Resistances", + ["affix"] = "of Acclimatisation", + ["group"] = "MinionElementalResistance", + ["level"] = 66, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(20-22)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionElementalResistance6"] = { + "Minions have +(23-25)% to all Elemental Resistances", + ["affix"] = "of Adaptation", + ["group"] = "MinionElementalResistance", + ["level"] = 73, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(23-25)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionGemLevelBelt1"] = { + "+1 to Level of all Minion Skills", + ["affix"] = "of the Taskmaster", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 36, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+1 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionGemLevelBelt2"] = { + "+2 to Level of all Minion Skills", + ["affix"] = "of the Despot", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 64, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+2 to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup1"] = { + "Minions have (20-25)% increased Immobilisation buildup", + ["affix"] = "of Clutching", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 16, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (20-25)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup2"] = { + "Minions have (26-31)% increased Immobilisation buildup", + ["affix"] = "of Grasping", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 34, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (26-31)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup3"] = { + "Minions have (32-37)% increased Immobilisation buildup", + ["affix"] = "of Gripping", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 48, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (32-37)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup4"] = { + "Minions have (38-43)% increased Immobilisation buildup", + ["affix"] = "of Snaring", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 56, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (38-43)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup5"] = { + "Minions have (44-49)% increased Immobilisation buildup", + ["affix"] = "of Grappling", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 65, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (44-49)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionImmobilisationBuildup6"] = { + "Minions have (50-55)% increased Immobilisation buildup", + ["affix"] = "of Seizing", + ["group"] = "MinionImmobilisationBuildup", + ["level"] = 74, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9058, + }, + ["tradeHashes"] = { + [1485480327] = { + "Minions have (50-55)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionLife1"] = { + "Minions have (21-25)% increased maximum Life", + ["affix"] = "of the Mentor", + ["group"] = "MinionLife", + ["level"] = 2, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (21-25)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLife2"] = { + "Minions have (26-30)% increased maximum Life", + ["affix"] = "of the Tutor", + ["group"] = "MinionLife", + ["level"] = 16, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (26-30)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLife3"] = { + "Minions have (31-35)% increased maximum Life", + ["affix"] = "of the Director", + ["group"] = "MinionLife", + ["level"] = 32, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (31-35)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLife4"] = { + "Minions have (36-40)% increased maximum Life", + ["affix"] = "of the Headmaster", + ["group"] = "MinionLife", + ["level"] = 48, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (36-40)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLife5"] = { + "Minions have (41-45)% increased maximum Life", + ["affix"] = "of the Administrator", + ["group"] = "MinionLife", + ["level"] = 64, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (41-45)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLife6"] = { + "Minions have (46-50)% increased maximum Life", + ["affix"] = "of the Rector", + ["group"] = "MinionLife", + ["level"] = 80, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (46-50)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing1"] = { + "Minions have (7-10)% increased maximum Life", + ["affix"] = "Bearing", + ["group"] = "MinionLife", + ["level"] = 18, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (7-10)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing2"] = { + "Minions have (11-14)% increased maximum Life", + ["affix"] = "Bracing", + ["group"] = "MinionLife", + ["level"] = 29, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (11-14)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing3"] = { + "Minions have (15-18)% increased maximum Life", + ["affix"] = "Toughening", + ["group"] = "MinionLife", + ["level"] = 41, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (15-18)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing4"] = { + "Minions have (19-22)% increased maximum Life", + ["affix"] = "Reinforcing", + ["group"] = "MinionLife", + ["level"] = 52, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (19-22)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing5"] = { + "Minions have (23-26)% increased maximum Life", + ["affix"] = "Bolstering", + ["group"] = "MinionLife", + ["level"] = 67, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (23-26)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionLifeRing6"] = { + "Minions have (27-30)% increased maximum Life", + ["affix"] = "Fortifying", + ["group"] = "MinionLife", + ["level"] = 75, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (27-30)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinionMovementSpeed1"] = { + "Minions have (5-7)% increased Movement Speed", + ["affix"] = "of Persuasion", + ["group"] = "MinionMovementSpeed", + ["level"] = 27, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 1528, + }, + ["tradeHashes"] = { + [174664100] = { + "Minions have (5-7)% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionMovementSpeed2"] = { + "Minions have (8-10)% increased Movement Speed", + ["affix"] = "of Pressure", + ["group"] = "MinionMovementSpeed", + ["level"] = 48, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 1528, + }, + ["tradeHashes"] = { + [174664100] = { + "Minions have (8-10)% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionMovementSpeed3"] = { + "Minions have (11-13)% increased Movement Speed", + ["affix"] = "of Coercion", + ["group"] = "MinionMovementSpeed", + ["level"] = 68, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 1528, + }, + ["tradeHashes"] = { + [174664100] = { + "Minions have (11-13)% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionMovementSpeed4"] = { + "Minions have (14-16)% increased Movement Speed", + ["affix"] = "of Compulsion", + ["group"] = "MinionMovementSpeed", + ["level"] = 77, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 1528, + }, + ["tradeHashes"] = { + [174664100] = { + "Minions have (14-16)% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionReviveSpeed1"] = { + "Minions Revive (1-2)% faster", + ["affix"] = "Stirring", + ["group"] = "MinionReviveSpeed", + ["level"] = 24, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (1-2)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionReviveSpeed2"] = { + "Minions Revive (3-5)% faster", + ["affix"] = "Rousing", + ["group"] = "MinionReviveSpeed", + ["level"] = 45, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (3-5)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionReviveSpeed3"] = { + "Minions Revive (7-9)% faster", + ["affix"] = "Waking", + ["group"] = "MinionReviveSpeed", + ["level"] = 63, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (7-9)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MinionReviveSpeed4"] = { + "Minions Revive (10-12)% faster", + ["affix"] = "Restless", + ["group"] = "MinionReviveSpeed", + ["level"] = 76, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (10-12)% faster", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { + "12% increased Movement speed while on Burning, Chilled or Shocked ground", + ["affix"] = "of the Essence", + ["group"] = "MovementSpeedOnBurningChilledShockedGround", + ["level"] = 63, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9178, + }, + ["tradeHashes"] = { + [1521863824] = { + "12% increased Movement speed while on Burning, Chilled or Shocked ground", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["MovementVelocity1"] = { + "10% increased Movement Speed", + ["affix"] = "Runner's", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocity2"] = { + "15% increased Movement Speed", + ["affix"] = "Sprinter's", + ["group"] = "MovementVelocity", + ["level"] = 16, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "15% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocity3"] = { + "20% increased Movement Speed", + ["affix"] = "Stallion's", + ["group"] = "MovementVelocity", + ["level"] = 33, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocity4"] = { + "25% increased Movement Speed", + ["affix"] = "Gazelle's", + ["group"] = "MovementVelocity", + ["level"] = 46, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "25% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocity5"] = { + "30% increased Movement Speed", + ["affix"] = "Cheetah's", + ["group"] = "MovementVelocity", + ["level"] = 65, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "30% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocity6"] = { + "35% increased Movement Speed", + ["affix"] = "Hellion's", + ["group"] = "MovementVelocity", + ["level"] = 82, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "35% increased Movement Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { + "10% increased Movement Speed during any Flask Effect", + ["affix"] = "of the Essence", + ["group"] = "MovementSpeedDuringFlaskEffect", + ["level"] = 63, + ["modTags"] = { + "flask", + "speed", + }, + ["statOrder"] = { + 2905, + }, + ["tradeHashes"] = { + [304970526] = { + "10% increased Movement Speed during any Flask Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["NearbyAlliesAddedColdDamage1"] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", + ["affix"] = "Frosted", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage2"] = { + "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", + ["affix"] = "Chilled", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage3"] = { + "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", + ["affix"] = "Icy", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage4"] = { + "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", + ["affix"] = "Frigid", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage5"] = { + "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", + ["affix"] = "Freezing", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage6"] = { + "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", + ["affix"] = "Frozen", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage7"] = { + "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", + ["affix"] = "Glaciated", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage8"] = { + "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", + ["affix"] = "Polar", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedColdDamage9"] = { + "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", + ["affix"] = "Entombing", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage1"] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", + ["affix"] = "Heated", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage2"] = { + "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", + ["affix"] = "Smouldering", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage3"] = { + "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", + ["affix"] = "Smoking", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage4"] = { + "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", + ["affix"] = "Burning", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage5"] = { + "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", + ["affix"] = "Flaming", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage6"] = { + "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", + ["affix"] = "Scorching", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage7"] = { + "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", + ["affix"] = "Incinerating", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage8"] = { + "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", + ["affix"] = "Blasting", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedFireDamage9"] = { + "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", + ["affix"] = "Cremating", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage1"] = { + "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", + ["affix"] = "Humming", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage2"] = { + "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", + ["affix"] = "Buzzing", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 8, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage3"] = { + "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", + ["affix"] = "Snapping", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage4"] = { + "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", + ["affix"] = "Crackling", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage5"] = { + "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", + ["affix"] = "Sparking", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage6"] = { + "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", + ["affix"] = "Arcing", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 54, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage7"] = { + "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", + ["affix"] = "Shocking", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage8"] = { + "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", + ["affix"] = "Discharging", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedLightningDamage9"] = { + "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", + ["affix"] = "Electrocuting", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 75, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage1"] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", + ["affix"] = "Glinting", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage2"] = { + "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", + ["affix"] = "Burnished", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage3"] = { + "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", + ["affix"] = "Polished", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage4"] = { + "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", + ["affix"] = "Honed", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage5"] = { + "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", + ["affix"] = "Gleaming", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage6"] = { + "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", + ["affix"] = "Annealed", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage7"] = { + "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", + ["affix"] = "Razor-sharp", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage8"] = { + "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", + ["affix"] = "Tempered", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAddedPhysicalDamage9"] = { + "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", + ["affix"] = "Flaring", + ["group"] = "AlliesInPresenceAddedPhysicalDamage", + ["level"] = 75, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 907, + }, + ["tradeHashes"] = { + [1574590649] = { + "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage1"] = { + "Allies in your Presence deal (25-34)% increased Damage", + ["affix"] = "Coercive", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (25-34)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage2"] = { + "Allies in your Presence deal (35-44)% increased Damage", + ["affix"] = "Agitative", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 8, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (35-44)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage3"] = { + "Allies in your Presence deal (45-54)% increased Damage", + ["affix"] = "Instigative", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 16, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (45-54)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage4"] = { + "Allies in your Presence deal (55-64)% increased Damage", + ["affix"] = "Provocative", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 33, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (55-64)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage5"] = { + "Allies in your Presence deal (65-74)% increased Damage", + ["affix"] = "Persuasive", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 46, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (65-74)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage6"] = { + "Allies in your Presence deal (75-89)% increased Damage", + ["affix"] = "Motivating", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 60, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (75-89)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage7"] = { + "Allies in your Presence deal (90-104)% increased Damage", + ["affix"] = "Inspirational", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 70, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (90-104)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllDamage8"] = { + "Allies in your Presence deal (105-119)% increased Damage", + ["affix"] = "Empowering", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 82, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (105-119)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances1"] = { + "Allies in your Presence have +(3-5)% to all Elemental Resistances", + ["affix"] = "of Adjustment", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 12, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(3-5)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances2"] = { + "Allies in your Presence have +(6-8)% to all Elemental Resistances", + ["affix"] = "of Acclimatisation", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 26, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(6-8)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances3"] = { + "Allies in your Presence have +(9-11)% to all Elemental Resistances", + ["affix"] = "of Adaptation", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 40, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(9-11)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances4"] = { + "Allies in your Presence have +(12-14)% to all Elemental Resistances", + ["affix"] = "of Evolution", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 54, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(12-14)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances5"] = { + "Allies in your Presence have +(15-16)% to all Elemental Resistances", + ["affix"] = "of Progression", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 68, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(15-16)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesAllResistances6"] = { + "Allies in your Presence have +(17-18)% to all Elemental Resistances", + ["affix"] = "of Metamorphosis", + ["group"] = "AlliesInPresenceAllResistances", + ["level"] = 80, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(17-18)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier1"] = { + "Allies in your Presence have (10-14)% increased Critical Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (10-14)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier2"] = { + "Allies in your Presence have (15-19)% increased Critical Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (15-19)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier3"] = { + "Allies in your Presence have (20-24)% increased Critical Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (20-24)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier4"] = { + "Allies in your Presence have (25-29)% increased Critical Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (25-29)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier5"] = { + "Allies in your Presence have (30-34)% increased Critical Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (30-34)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalMultiplier6"] = { + "Allies in your Presence have (35-39)% increased Critical Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 73, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (35-39)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance1"] = { + "Allies in your Presence have (10-14)% increased Critical Hit Chance", + ["affix"] = "of Menace", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 11, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (10-14)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance2"] = { + "Allies in your Presence have (15-19)% increased Critical Hit Chance", + ["affix"] = "of Havoc", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 21, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (15-19)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance3"] = { + "Allies in your Presence have (20-24)% increased Critical Hit Chance", + ["affix"] = "of Disaster", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 28, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (20-24)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance4"] = { + "Allies in your Presence have (25-29)% increased Critical Hit Chance", + ["affix"] = "of Calamity", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 41, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (25-29)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance5"] = { + "Allies in your Presence have (30-34)% increased Critical Hit Chance", + ["affix"] = "of Ruin", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 59, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (30-34)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesCriticalStrikeChance6"] = { + "Allies in your Presence have (35-38)% increased Critical Hit Chance", + ["affix"] = "of Unmaking", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 76, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (35-38)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy1"] = { + "Allies in your Presence have +(11-32) to Accuracy Rating", + ["affix"] = "Precise", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(11-32) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy2"] = { + "Allies in your Presence have +(33-60) to Accuracy Rating", + ["affix"] = "Reliable", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 11, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(33-60) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy3"] = { + "Allies in your Presence have +(61-84) to Accuracy Rating", + ["affix"] = "Focused", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 18, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(61-84) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy4"] = { + "Allies in your Presence have +(85-123) to Accuracy Rating", + ["affix"] = "Deliberate", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 26, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(85-123) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy5"] = { + "Allies in your Presence have +(124-167) to Accuracy Rating", + ["affix"] = "Consistent", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 36, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(124-167) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy6"] = { + "Allies in your Presence have +(168-236) to Accuracy Rating", + ["affix"] = "Steady", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 48, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(168-236) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy7"] = { + "Allies in your Presence have +(237-346) to Accuracy Rating", + ["affix"] = "Hunter's", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 58, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(237-346) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAccuracy8"] = { + "Allies in your Presence have +(347-450) to Accuracy Rating", + ["affix"] = "Ranger's", + ["group"] = "AlliesInPresenceIncreasedAccuracy", + ["level"] = 67, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 915, + }, + ["tradeHashes"] = { + [3169585282] = { + "Allies in your Presence have +(347-450) to Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["NearbyAlliesIncreasedAttackSpeed1"] = { + "Allies in your Presence have (5-7)% increased Attack Speed", + ["affix"] = "of Skill", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 5, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (5-7)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedAttackSpeed2"] = { + "Allies in your Presence have (8-10)% increased Attack Speed", + ["affix"] = "of Ease", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 20, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (8-10)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedAttackSpeed3"] = { + "Allies in your Presence have (11-13)% increased Attack Speed", + ["affix"] = "of Mastery", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 35, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (11-13)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedAttackSpeed4"] = { + "Allies in your Presence have (14-16)% increased Attack Speed", + ["affix"] = "of Renown", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 55, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (14-16)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedCastSpeed1"] = { + "Allies in your Presence have (5-8)% increased Cast Speed", + ["affix"] = "of Talent", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 6, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (5-8)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedCastSpeed2"] = { + "Allies in your Presence have (9-12)% increased Cast Speed", + ["affix"] = "of Nimbleness", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 21, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (9-12)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedCastSpeed3"] = { + "Allies in your Presence have (13-16)% increased Cast Speed", + ["affix"] = "of Expertise", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 36, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (13-16)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesIncreasedCastSpeed4"] = { + "Allies in your Presence have (17-20)% increased Cast Speed", + ["affix"] = "of Sortilege", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 56, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (17-20)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration1"] = { + "Allies in your Presence Regenerate (1-2) Life per second", + ["affix"] = "of the Newt", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (1-2) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration10"] = { + "Allies in your Presence Regenerate (29.1-33) Life per second", + ["affix"] = "of Immortality", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 75, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (29.1-33) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration2"] = { + "Allies in your Presence Regenerate (2.1-3) Life per second", + ["affix"] = "of the Lizard", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 5, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (2.1-3) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration3"] = { + "Allies in your Presence Regenerate (3.1-4) Life per second", + ["affix"] = "of the Flatworm", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 11, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (3.1-4) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration4"] = { + "Allies in your Presence Regenerate (4.1-6) Life per second", + ["affix"] = "of the Starfish", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 17, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (4.1-6) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration5"] = { + "Allies in your Presence Regenerate (6.1-9) Life per second", + ["affix"] = "of the Hydra", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 26, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (6.1-9) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration6"] = { + "Allies in your Presence Regenerate (9.1-13) Life per second", + ["affix"] = "of the Troll", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 35, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (9.1-13) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration7"] = { + "Allies in your Presence Regenerate (13.1-18) Life per second", + ["affix"] = "of Convalescence", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 47, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (13.1-18) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration8"] = { + "Allies in your Presence Regenerate (18.1-23) Life per second", + ["affix"] = "of Recuperation", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 58, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (18.1-23) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyAlliesLifeRegeneration9"] = { + "Allies in your Presence Regenerate (23.1-29) Life per second", + ["affix"] = "of Resurgence", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 68, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (23.1-29) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { + "Chill Nearby Enemies when you Block", + ["affix"] = "of the Essence", + ["group"] = "NearbyEnemiesChilledOnBlock", + ["level"] = 63, + ["modTags"] = { + "block", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 3916, + }, + ["tradeHashes"] = { + [583277599] = { + "Chill Nearby Enemies when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["OfferingDuration1"] = { + "Offering Skills have (6-15)% increased Duration", + ["affix"] = "of Tradition", + ["group"] = "OfferingDuration", + ["level"] = 15, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (6-15)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["OfferingDuration2"] = { + "Offering Skills have (16-25)% increased Duration", + ["affix"] = "of Observance", + ["group"] = "OfferingDuration", + ["level"] = 29, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (16-25)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["OfferingDuration3"] = { + "Offering Skills have (26-35)% increased Duration", + ["affix"] = "of the Rite", + ["group"] = "OfferingDuration", + ["level"] = 47, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (26-35)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["OfferingDuration4"] = { + "Offering Skills have (36-45)% increased Duration", + ["affix"] = "of Ceremony", + ["group"] = "OfferingDuration", + ["level"] = 68, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (36-45)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["OfferingDuration5"] = { + "Offering Skills have (46-55)% increased Duration", + ["affix"] = "of Liturgy", + ["group"] = "OfferingDuration", + ["level"] = 79, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (46-55)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_minion", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["OnslaughtWhenHitEssence1"] = { + "Gain Onslaught for 3 seconds when Hit", + ["affix"] = "of the Essence", + ["group"] = "OnslaughtWhenHitChance", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 6823, + }, + ["tradeHashes"] = { + [3049760680] = { + "Gain Onslaught for 3 seconds when Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["OnslaughtWhenHitNewEssence1"] = { + "You gain Onslaught for 6 seconds when Hit", + ["affix"] = "of the Essence", + ["group"] = "OnslaughtWhenHitForDuration", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 2583, + }, + ["tradeHashes"] = { + [2764164760] = { + "You gain Onslaught for 6 seconds when Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { + "+(11-15)% to Physical Damage over Time Multiplier", + ["affix"] = "of the Elder", + ["group"] = "PhysicalDamageOverTimeMultiplier", + ["level"] = 68, + ["modTags"] = { + "dot_multi", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1197, + }, + ["tradeHashes"] = { + [1314617696] = { + "+(11-15)% to Physical Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_elder", + "amulet_elder", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { + "+(16-20)% to Physical Damage over Time Multiplier", + ["affix"] = "of the Elder", + ["group"] = "PhysicalDamageOverTimeMultiplier", + ["level"] = 80, + ["modTags"] = { + "dot_multi", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1197, + }, + ["tradeHashes"] = { + [1314617696] = { + "+(16-20)% to Physical Damage over Time Multiplier", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves_elder", + "amulet_elder", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { + "(50-68)% increased Spell Physical Damage", + ["affix"] = "Punishing", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(50-68)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { + "(69-88)% increased Spell Physical Damage", + ["affix"] = "Unforgiving", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(69-88)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { + "(89-108)% increased Spell Physical Damage", + ["affix"] = "Vengeful", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(89-108)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { + "(109-128)% increased Spell Physical Damage", + ["affix"] = "Sadistic", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(109-128)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { + "(129-148)% increased Spell Physical Damage", + ["affix"] = "Pitiless", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(129-148)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { + "(149-188)% increased Spell Physical Damage", + ["affix"] = "Agonising", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(149-188)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { + "(189-208)% increased Spell Physical Damage", + ["affix"] = "Oppressor's", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(189-208)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { + "(209-238)% increased Spell Physical Damage", + ["affix"] = "Torturer's", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(209-238)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "staff", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon1"] = { + "(25-34)% increased Spell Physical Damage", + ["affix"] = "Punishing", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 2, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(25-34)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon2"] = { + "(35-44)% increased Spell Physical Damage", + ["affix"] = "Unforgiving", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 8, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(35-44)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon3"] = { + "(45-54)% increased Spell Physical Damage", + ["affix"] = "Vengeful", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 16, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(45-54)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon4"] = { + "(55-64)% increased Spell Physical Damage", + ["affix"] = "Sadistic", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(55-64)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon5"] = { + "(65-74)% increased Spell Physical Damage", + ["affix"] = "Pitiless", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 46, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(65-74)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon6"] = { + "(75-89)% increased Spell Physical Damage", + ["affix"] = "Agonising", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 60, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(75-89)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon7"] = { + "(90-104)% increased Spell Physical Damage", + ["affix"] = "Oppressor's", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 70, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(90-104)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamagePrefixOnWeapon8"] = { + "(105-119)% increased Spell Physical Damage", + ["affix"] = "Torturer's", + ["group"] = "PhysicalSpellDamageWeaponPrefix", + ["level"] = 81, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2768835289] = { + "(105-119)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "no_physical_spell_mods", + "wand", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + }, + }, + ["PhysicalDamageTakenAsColdEssence1"] = { + "15% of Physical Damage from Hits taken as Cold Damage", + ["affix"] = "Essences", + ["group"] = "PhysicalDamageTakenAsCold", + ["level"] = 63, + ["modTags"] = { + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 2206, + }, + ["tradeHashes"] = { + [1871056256] = { + "15% of Physical Damage from Hits taken as Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { + "10% of Physical Damage from Hits taken as Fire Damage", + ["affix"] = "Redblade", + ["group"] = "PhysicalDamageTakenAsFirePercent", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2197, + }, + ["tradeHashes"] = { + [3342989455] = { + "10% of Physical Damage from Hits taken as Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PoisonDuration1"] = { + "(8-12)% increased Poison Duration", + ["affix"] = "of Rot", + ["group"] = "PoisonDuration", + ["level"] = 30, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(8-12)% increased Poison Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PoisonDuration2"] = { + "(13-18)% increased Poison Duration", + ["affix"] = "of Putrefaction", + ["group"] = "PoisonDuration", + ["level"] = 60, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(13-18)% increased Poison Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PoisonDurationEnhancedMod"] = { + "(26-30)% increased Chaos Damage", + "(13-18)% increased Poison Duration", + ["affix"] = "of Tacati", + ["group"] = "PoisonDurationChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "poison", + "damage", + "chaos", + "ailment", + }, + ["statOrder"] = { + 876, + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(13-18)% increased Poison Duration", + }, + [736967255] = { + "(26-30)% increased Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PowerChargeOnBlockEssence1"] = { + "25% chance to gain a Power Charge when you Block", + ["affix"] = "of the Essence", + ["group"] = "PowerChargeOnBlock", + ["level"] = 63, + ["modTags"] = { + "block", + "power_charge", + }, + ["statOrder"] = { + 3915, + }, + ["tradeHashes"] = { + [3945147290] = { + "25% chance to gain a Power Charge when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { + "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", + ["affix"] = "of the Essence", + ["group"] = "PowerFrenzyOrEnduranceChargeOnKill", + ["level"] = 63, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 3293, + }, + ["tradeHashes"] = { + [498214257] = { + "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["PresenceRadius1"] = { + "(36-45)% increased Presence Area of Effect", + ["affix"] = "of Direction", + ["group"] = "PresenceRadius", + ["level"] = 23, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(36-45)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["PresenceRadius2"] = { + "(46-55)% increased Presence Area of Effect", + ["affix"] = "of Outreach", + ["group"] = "PresenceRadius", + ["level"] = 40, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(46-55)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["PresenceRadius3"] = { + "(56-65)% increased Presence Area of Effect", + ["affix"] = "of Guidance", + ["group"] = "PresenceRadius", + ["level"] = 56, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(56-65)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["PresenceRadius4"] = { + "(66-80)% increased Presence Area of Effect", + ["affix"] = "of Influence", + ["group"] = "PresenceRadius", + ["level"] = 72, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(66-80)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ProjectileSpeed1"] = { + "(10-17)% increased Projectile Speed", + ["affix"] = "Darting", + ["group"] = "ProjectileSpeed", + ["level"] = 14, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(10-17)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ProjectileSpeed2"] = { + "(18-25)% increased Projectile Speed", + ["affix"] = "Brisk", + ["group"] = "ProjectileSpeed", + ["level"] = 27, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(18-25)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ProjectileSpeed3"] = { + "(26-33)% increased Projectile Speed", + ["affix"] = "Quick", + ["group"] = "ProjectileSpeed", + ["level"] = 41, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(26-33)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ProjectileSpeed4"] = { + "(34-41)% increased Projectile Speed", + ["affix"] = "Rapid", + ["group"] = "ProjectileSpeed", + ["level"] = 55, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(34-41)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ProjectileSpeed5"] = { + "(42-46)% increased Projectile Speed", + ["affix"] = "Nimble", + ["group"] = "ProjectileSpeed", + ["level"] = 82, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(42-46)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["QuiverAddedChaosEssence1_"] = { + "Adds (11-15) to (27-33) Chaos Damage to Attacks", + ["affix"] = "Essences", + ["group"] = "ChaosDamage", + ["level"] = 62, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (11-15) to (27-33) Chaos Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["QuiverAddedChaosEssence2_"] = { + "Adds (17-21) to (37-43) Chaos Damage to Attacks", + ["affix"] = "Essences", + ["group"] = "ChaosDamage", + ["level"] = 74, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (17-21) to (37-43) Chaos Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["QuiverAddedChaosEssence3__"] = { + "Adds (23-37) to (49-61) Chaos Damage to Attacks", + ["affix"] = "Essences", + ["group"] = "ChaosDamage", + ["level"] = 82, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (23-37) to (49-61) Chaos Damage to Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ReducedBleedDuration1"] = { + "(36-40)% reduced Duration of Bleeding on You", + ["affix"] = "of Sealing", + ["group"] = "ReducedBleedDuration", + ["level"] = 21, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(36-40)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBleedDuration2"] = { + "(41-45)% reduced Duration of Bleeding on You", + ["affix"] = "of Alleviation", + ["group"] = "ReducedBleedDuration", + ["level"] = 37, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(41-45)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBleedDuration3"] = { + "(46-50)% reduced Duration of Bleeding on You", + ["affix"] = "of Allaying", + ["group"] = "ReducedBleedDuration", + ["level"] = 50, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(46-50)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBleedDuration4"] = { + "(51-55)% reduced Duration of Bleeding on You", + ["affix"] = "of Assuaging", + ["group"] = "ReducedBleedDuration", + ["level"] = 64, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(51-55)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBleedDuration5"] = { + "(56-60)% reduced Duration of Bleeding on You", + ["affix"] = "of Staunching", + ["group"] = "ReducedBleedDuration", + ["level"] = 76, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(56-60)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBurnDuration1"] = { + "(36-40)% reduced Ignite Duration on you", + ["affix"] = "of Damping", + ["group"] = "ReducedBurnDuration", + ["level"] = 21, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(36-40)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBurnDuration2"] = { + "(41-45)% reduced Ignite Duration on you", + ["affix"] = "of Quashing", + ["group"] = "ReducedBurnDuration", + ["level"] = 37, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(41-45)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBurnDuration3"] = { + "(46-50)% reduced Ignite Duration on you", + ["affix"] = "of Quelling", + ["group"] = "ReducedBurnDuration", + ["level"] = 50, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(46-50)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBurnDuration4"] = { + "(51-55)% reduced Ignite Duration on you", + ["affix"] = "of Quenching", + ["group"] = "ReducedBurnDuration", + ["level"] = 64, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(51-55)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedBurnDuration5"] = { + "(56-60)% reduced Ignite Duration on you", + ["affix"] = "of Dousing", + ["group"] = "ReducedBurnDuration", + ["level"] = 76, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(56-60)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedChillDuration1"] = { + "(36-40)% reduced Chill Duration on you", + ["affix"] = "of Convection", + ["group"] = "ReducedChillDuration", + ["level"] = 20, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(36-40)% reduced Chill Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedChillDuration2"] = { + "(41-45)% reduced Chill Duration on you", + ["affix"] = "of Fluidity", + ["group"] = "ReducedChillDuration", + ["level"] = 36, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(41-45)% reduced Chill Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedChillDuration3"] = { + "(46-50)% reduced Chill Duration on you", + ["affix"] = "of Entropy", + ["group"] = "ReducedChillDuration", + ["level"] = 49, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(46-50)% reduced Chill Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedChillDuration4"] = { + "(51-55)% reduced Chill Duration on you", + ["affix"] = "of Dissipation", + ["group"] = "ReducedChillDuration", + ["level"] = 63, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(51-55)% reduced Chill Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedChillDuration5"] = { + "(56-60)% reduced Chill Duration on you", + ["affix"] = "of the Reversal", + ["group"] = "ReducedChillDuration", + ["level"] = 75, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(56-60)% reduced Chill Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedExtraDamageFromCrits1___"] = { + "Hits against you have (21-27)% reduced Critical Damage Bonus", + ["affix"] = "of Dulling", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 33, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (21-27)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedExtraDamageFromCrits2__"] = { + "Hits against you have (28-34)% reduced Critical Damage Bonus", + ["affix"] = "of Deadening", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 45, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (28-34)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedExtraDamageFromCrits3"] = { + "Hits against you have (35-41)% reduced Critical Damage Bonus", + ["affix"] = "of Interference", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 58, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (35-41)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedExtraDamageFromCrits4__"] = { + "Hits against you have (42-47)% reduced Critical Damage Bonus", + ["affix"] = "of Obstruction", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 69, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (42-47)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedExtraDamageFromCrits5"] = { + "Hits against you have (48-54)% reduced Critical Damage Bonus", + ["affix"] = "of the Bastion", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 81, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (48-54)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_dex_shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedFreezeDuration1"] = { + "(36-40)% reduced Freeze Duration on you", + ["affix"] = "of Heating", + ["group"] = "ReducedFreezeDuration", + ["level"] = 20, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(36-40)% reduced Freeze Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedFreezeDuration2"] = { + "(41-45)% reduced Freeze Duration on you", + ["affix"] = "of Unfreezing", + ["group"] = "ReducedFreezeDuration", + ["level"] = 36, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(41-45)% reduced Freeze Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedFreezeDuration3"] = { + "(46-50)% reduced Freeze Duration on you", + ["affix"] = "of Defrosting", + ["group"] = "ReducedFreezeDuration", + ["level"] = 49, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(46-50)% reduced Freeze Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedFreezeDuration4"] = { + "(51-55)% reduced Freeze Duration on you", + ["affix"] = "of the Temperate", + ["group"] = "ReducedFreezeDuration", + ["level"] = 63, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(51-55)% reduced Freeze Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedFreezeDuration5"] = { + "(56-60)% reduced Freeze Duration on you", + ["affix"] = "of Thawing", + ["group"] = "ReducedFreezeDuration", + ["level"] = 75, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(56-60)% reduced Freeze Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedLocalAttributeRequirements1"] = { + "15% reduced Attribute Requirements", + ["affix"] = "of the Worthy", + ["group"] = "LocalAttributeRequirements", + ["level"] = 24, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "15% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "sceptre", + "body_armour", + "helmet", + "shield", + "focus", + "gloves", + "boots", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ReducedLocalAttributeRequirements2"] = { + "20% reduced Attribute Requirements", + ["affix"] = "of the Apt", + ["group"] = "LocalAttributeRequirements", + ["level"] = 32, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "20% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "sceptre", + "body_armour", + "helmet", + "shield", + "focus", + "gloves", + "boots", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ReducedLocalAttributeRequirements3"] = { + "25% reduced Attribute Requirements", + ["affix"] = "of the Talented", + ["group"] = "LocalAttributeRequirements", + ["level"] = 40, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "25% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "sceptre", + "body_armour", + "helmet", + "shield", + "focus", + "gloves", + "boots", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ReducedLocalAttributeRequirements4"] = { + "30% reduced Attribute Requirements", + ["affix"] = "of the Skilled", + ["group"] = "LocalAttributeRequirements", + ["level"] = 52, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "30% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "sceptre", + "body_armour", + "helmet", + "shield", + "focus", + "gloves", + "boots", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ReducedLocalAttributeRequirements5"] = { + "35% reduced Attribute Requirements", + ["affix"] = "of the Proficient", + ["group"] = "LocalAttributeRequirements", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "35% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "wand", + "staff", + "sceptre", + "body_armour", + "helmet", + "shield", + "focus", + "gloves", + "boots", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["ReducedManaReservationCostEssence4"] = { + "4% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ReducedReservation", + ["level"] = 42, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "4% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ReducedManaReservationCostEssence5"] = { + "6% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ReducedReservation", + ["level"] = 58, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "6% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ReducedManaReservationCostEssence6"] = { + "8% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ReducedReservation", + ["level"] = 74, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "8% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ReducedManaReservationCostEssence7"] = { + "10% increased Mana Reservation Efficiency of Skills", + ["affix"] = "of the Essence", + ["group"] = "ReducedReservation", + ["level"] = 82, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "10% increased Mana Reservation Efficiency of Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["ReducedPoisonDuration1"] = { + "(36-40)% reduced Poison Duration on you", + ["affix"] = "of the Antitoxin", + ["group"] = "ReducedPoisonDuration", + ["level"] = 21, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(36-40)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedPoisonDuration2"] = { + "(41-45)% reduced Poison Duration on you", + ["affix"] = "of the Remedy", + ["group"] = "ReducedPoisonDuration", + ["level"] = 37, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(41-45)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedPoisonDuration3"] = { + "(46-50)% reduced Poison Duration on you", + ["affix"] = "of the Cure", + ["group"] = "ReducedPoisonDuration", + ["level"] = 50, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(46-50)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedPoisonDuration4"] = { + "(51-55)% reduced Poison Duration on you", + ["affix"] = "of the Panacea", + ["group"] = "ReducedPoisonDuration", + ["level"] = 64, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(51-55)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedPoisonDuration5"] = { + "(56-60)% reduced Poison Duration on you", + ["affix"] = "of the Antidote", + ["group"] = "ReducedPoisonDuration", + ["level"] = 76, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(56-60)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedShockDuration1"] = { + "(36-40)% reduced Shock duration on you", + ["affix"] = "of Earthing", + ["group"] = "ReducedShockDuration", + ["level"] = 20, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(36-40)% reduced Shock duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedShockDuration2"] = { + "(41-45)% reduced Shock duration on you", + ["affix"] = "of Insulation", + ["group"] = "ReducedShockDuration", + ["level"] = 36, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(41-45)% reduced Shock duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedShockDuration3"] = { + "(46-50)% reduced Shock duration on you", + ["affix"] = "of the Impedance", + ["group"] = "ReducedShockDuration", + ["level"] = 49, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(46-50)% reduced Shock duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedShockDuration4"] = { + "(51-55)% reduced Shock duration on you", + ["affix"] = "of the Dielectric", + ["group"] = "ReducedShockDuration", + ["level"] = 63, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(51-55)% reduced Shock duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReducedShockDuration5"] = { + "(56-60)% reduced Shock duration on you", + ["affix"] = "of Grounding", + ["group"] = "ReducedShockDuration", + ["level"] = 75, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(56-60)% reduced Shock duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["ReflectDamageTakenEssence1"] = { + "You and your Minions take 40% reduced Reflected Damage", + ["affix"] = "of the Essence", + ["group"] = "ReflectDamageTaken", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 9714, + }, + ["tradeHashes"] = { + [3577248251] = { + "You and your Minions take 40% reduced Reflected Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["RemnantGrantEffectTwiceChance1"] = { + "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of Accumulation", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 24, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantGrantEffectTwiceChance2"] = { + "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of Proliferation", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 37, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantGrantEffectTwiceChance3"] = { + "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of Expansion", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 49, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantGrantEffectTwiceChance4"] = { + "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of Magnification", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 61, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantGrantEffectTwiceChance5"] = { + "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", + ["affix"] = "of Multiplication", + ["group"] = "RemnantGrantEffectTwiceChance", + ["level"] = 73, + ["modTags"] = { + }, + ["statOrder"] = { + 5804, + }, + ["tradeHashes"] = { + [3422093970] = { + "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantPickupRadiusIncrease1"] = { + "Remnants can be collected from (12-19)% further away", + ["affix"] = "of Receiving", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 26, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (12-19)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantPickupRadiusIncrease2"] = { + "Remnants can be collected from (20-27)% further away", + ["affix"] = "of Collecting", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (20-27)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantPickupRadiusIncrease3"] = { + "Remnants can be collected from (28-35)% further away", + ["affix"] = "of Amassing", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 51, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (28-35)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantPickupRadiusIncrease4"] = { + "Remnants can be collected from (36-43)% further away", + ["affix"] = "of Absorbing", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 64, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (36-43)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["RemnantPickupRadiusIncrease5"] = { + "Remnants can be collected from (44-51)% further away", + ["affix"] = "of Engulfing", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 76, + ["modTags"] = { + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (44-51)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["ShockChanceIncrease1"] = { + "(51-60)% increased chance to Shock", + ["affix"] = "of Shocking", + ["group"] = "ShockChanceIncrease", + ["level"] = 15, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(51-60)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["ShockChanceIncrease2"] = { + "(61-70)% increased chance to Shock", + ["affix"] = "of Zapping", + ["group"] = "ShockChanceIncrease", + ["level"] = 30, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(61-70)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["ShockChanceIncrease3"] = { + "(71-80)% increased chance to Shock", + ["affix"] = "of Electrocution", + ["group"] = "ShockChanceIncrease", + ["level"] = 45, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(71-80)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["ShockChanceIncrease4"] = { + "(81-90)% increased chance to Shock", + ["affix"] = "of Voltages", + ["group"] = "ShockChanceIncrease", + ["level"] = 60, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(81-90)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["ShockChanceIncrease5"] = { + "(91-100)% increased chance to Shock", + ["affix"] = "of the Thunderbolt", + ["group"] = "ShockChanceIncrease", + ["level"] = 75, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(91-100)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "no_lightning_spell_mods", + "wand", + "staff", + "trap", + "default", + }, + ["weightVal"] = { + 0, + 1, + 1, + 1, + 0, + }, + }, + ["SocketedAuraGemLevelsEssence1"] = { + "+2 to Level of Socketed Aura Gems", + ["affix"] = "of the Essence", + ["group"] = "LocalIncreaseSocketedAuraLevel", + ["level"] = 63, + ["modTags"] = { + "aura", + "gem", + }, + ["statOrder"] = { + 141, + }, + ["tradeHashes"] = { + [2452998583] = { + "+2 to Level of Socketed Aura Gems", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { + "Socketed Gems deal 175 to 225 Added Fire Damage", + ["affix"] = "of the Essence", + ["group"] = "SocketedGemsDealAdditionalFireDamage", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "skill", + "damage", + "elemental", + "fire", + "gem", + }, + ["statOrder"] = { + 414, + }, + ["tradeHashes"] = { + [1289910726] = { + "Socketed Gems deal 175 to 225 Added Fire Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { + "Socketed Gems deal 30% more Elemental Damage", + ["affix"] = "of the Essence", + ["group"] = "SocketedGemsDealMoreElementalDamage", + ["level"] = 63, + ["modTags"] = { + "elemental_damage", + "skill", + "damage", + "elemental", + "gem", + }, + ["statOrder"] = { + 411, + }, + ["tradeHashes"] = { + [3835899275] = { + "Socketed Gems deal 30% more Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { + "Socketed Gems have 20% more Attack and Cast Speed", + ["affix"] = "", + ["group"] = "SocketedGemsHaveMoreAttackAndCastSpeed", + ["level"] = 63, + ["modTags"] = { + "caster_speed", + "skill", + "attack", + "caster", + "speed", + "gem", + }, + ["statOrder"] = { + 408, + }, + ["tradeHashes"] = { + [346351023] = { + "Socketed Gems have 20% more Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { + "Socketed Gems have 16% more Attack and Cast Speed", + ["affix"] = "of the Essence", + ["group"] = "SocketedGemsHaveMoreAttackAndCastSpeed", + ["level"] = 63, + ["modTags"] = { + "caster_speed", + "skill", + "attack", + "caster", + "speed", + "gem", + }, + ["statOrder"] = { + 408, + }, + ["tradeHashes"] = { + [346351023] = { + "Socketed Gems have 16% more Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { + "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", + ["affix"] = "", + ["group"] = "SocketedGemsNonCurseAuraEffect", + ["level"] = 63, + ["modTags"] = { + "skill", + "aura", + "gem", + }, + ["statOrder"] = { + 444, + }, + ["tradeHashes"] = { + [223595318] = { + "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { + "Socketed Gems deal 30% more Damage while on Low Life", + ["affix"] = "of the Essence", + ["group"] = "DisplaySupportedSkillsDealDamageOnLowLife", + ["level"] = 63, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 410, + }, + ["tradeHashes"] = { + [1235873320] = { + "Socketed Gems deal 30% more Damage while on Low Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SocketedSkillsCriticalChanceEssence1"] = { + "Socketed Gems have +3.5% Critical Hit Chance", + ["affix"] = "of the Essence", + ["group"] = "SocketedSkillsCriticalChance", + ["level"] = 63, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 400, + }, + ["tradeHashes"] = { + [1681904129] = { + "Socketed Gems have +3.5% Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SoulInfluenceColdAndChaosResistance"] = { + "+(3-31)% to Cold and Chaos Resistances", + ["affix"] = "of the Soul", + ["group"] = "ColdAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5674, + }, + ["tradeHashes"] = { + [3393628375] = { + "+(3-31)% to Cold and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceConvertedChaosAndChaosResistance"] = { + "+(5-47)% to Chaos Resistance", + ["affix"] = "of the Soul", + ["group"] = "ChaosResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(5-47)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SoulInfluenceFireAndChaosResistance"] = { + "+(3-31)% to Fire and Chaos Resistances", + ["affix"] = "of the Soul", + ["group"] = "FireAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "chaos", + "resistance", + }, + ["statOrder"] = { + 6553, + }, + ["tradeHashes"] = { + [378817135] = { + "+(3-31)% to Fire and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceIncreasedLifeAndMana"] = { + "+(19-189) to maximum Life", + "+(19-189) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "BaseLifeAndMana", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 887, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(19-189) to maximum Mana", + }, + [3299347043] = { + "+(19-189) to maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceIncreasedLifePercent"] = { + "(1-20)% increased maximum Life", + ["affix"] = "Medved's", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(1-20)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceIncreasedManaPercent"] = { + "(1-20)% increased maximum Mana", + ["affix"] = "Medved's", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 65, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(1-20)% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceIncreasedSpiritPercent"] = { + "(1-20)% increased Spirit", + ["affix"] = "Medved's", + ["group"] = "MaximumSpiritPercentageAllowBaseSpirit", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 1417, + }, + ["tradeHashes"] = { + [1416406066] = { + "(1-20)% increased Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceLightningAndChaosResistance"] = { + "+(3-31)% to Lightning and Chaos Resistances", + ["affix"] = "of the Soul", + ["group"] = "LightningAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "chaos", + "resistance", + }, + ["statOrder"] = { + 7537, + }, + ["tradeHashes"] = { + [3465022881] = { + "+(3-31)% to Lightning and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridArmour"] = { + "(6-52)% increased Armour", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + }, + ["statOrder"] = { + 846, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [1062208444] = { + "(6-52)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridArmourEnergyShield"] = { + "(6-52)% increased Armour and Energy Shield", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [3321629045] = { + "(6-52)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { + "(6-52)% increased Armour and Evasion", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndEvasionAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [2451402625] = { + "(6-52)% increased Armour and Evasion", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridEnergyShield"] = { + "(6-52)% increased Energy Shield", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEnergyShieldAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 849, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [4015621042] = { + "(6-52)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridEvasion"] = { + "(6-52)% increased Evasion Rating", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEvasionAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + }, + ["statOrder"] = { + 848, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [124859000] = { + "(6-52)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "str_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceManaDefencesHybridEvasionEnergyShield"] = { + "(6-52)% increased Evasion and Energy Shield", + "+(7-57) to maximum Mana", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndManaNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "mana", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(7-57) to maximum Mana", + }, + [1999113824] = { + "(6-52)% increased Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { + "(5-50)% reduced Duration of Ailments on You", + ["affix"] = "of the Soul", + ["group"] = "AilmentDurationOnYou", + ["level"] = 65, + ["modTags"] = { + "bleed", + "poison", + "physical", + "elemental", + "fire", + "cold", + "lightning", + "chaos", + "ailment", + }, + ["statOrder"] = { + 4644, + }, + ["tradeHashes"] = { + [548070846] = { + "(5-50)% reduced Duration of Ailments on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { + "Hits against you have (10-99)% reduced Critical Damage Bonus", + ["affix"] = "of the Soul", + ["group"] = "ReducedCriticalStrikeDamageTaken", + ["level"] = 65, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (10-99)% reduced Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "soul", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridArmour"] = { + "(6-52)% increased Armour", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + 895, + }, + ["tradeHashes"] = { + [1062208444] = { + "(6-52)% increased Armour", + }, + [2704225257] = { + "+(1-24) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { + "(6-52)% increased Armour and Energy Shield", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + 895, + }, + ["tradeHashes"] = { + [2704225257] = { + "+(1-24) to Spirit", + }, + [3321629045] = { + "(6-52)% increased Armour and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { + "(6-52)% increased Armour and Evasion", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + 895, + }, + ["tradeHashes"] = { + [2451402625] = { + "(6-52)% increased Armour and Evasion", + }, + [2704225257] = { + "+(1-24) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_int_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { + "(6-52)% increased Energy Shield", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEnergyShieldAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + 895, + }, + ["tradeHashes"] = { + [2704225257] = { + "+(1-24) to Spirit", + }, + [4015621042] = { + "(6-52)% increased Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "str_armour", + "dex_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridEvasion"] = { + "(6-52)% increased Evasion Rating", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEvasionAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + 895, + }, + ["tradeHashes"] = { + [124859000] = { + "(6-52)% increased Evasion Rating", + }, + [2704225257] = { + "+(1-24) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "dex_int_armour", + "str_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { + "(6-52)% increased Evasion and Energy Shield", + "+(1-24) to Spirit", + ["affix"] = "Medved's", + ["group"] = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", + ["level"] = 65, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + 895, + }, + ["tradeHashes"] = { + [1999113824] = { + "(6-52)% increased Evasion and Energy Shield", + }, + [2704225257] = { + "+(1-24) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_dex_armour", + "str_int_armour", + "str_armour", + "dex_armour", + "int_armour", + "soul", + "default", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["SpellAddedColdDamage1"] = { + "Adds 1 to (2-3) Cold Damage to Spells", + ["affix"] = "Frosted", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds 1 to (2-3) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage2"] = { + "Adds (5-7) to (10-12) Cold Damage to Spells", + ["affix"] = "Chilled", + ["group"] = "SpellAddedColdDamage", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (5-7) to (10-12) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage3"] = { + "Adds (8-10) to (16-18) Cold Damage to Spells", + ["affix"] = "Icy", + ["group"] = "SpellAddedColdDamage", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (8-10) to (16-18) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage4"] = { + "Adds (11-15) to (22-25) Cold Damage to Spells", + ["affix"] = "Frigid", + ["group"] = "SpellAddedColdDamage", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (11-15) to (22-25) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage5"] = { + "Adds (16-20) to (30-36) Cold Damage to Spells", + ["affix"] = "Freezing", + ["group"] = "SpellAddedColdDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (16-20) to (30-36) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage6_"] = { + "Adds (21-26) to (40-46) Cold Damage to Spells", + ["affix"] = "Frozen", + ["group"] = "SpellAddedColdDamage", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (21-26) to (40-46) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage7"] = { + "Adds (27-35) to (51-60) Cold Damage to Spells", + ["affix"] = "Glaciated", + ["group"] = "SpellAddedColdDamage", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (27-35) to (51-60) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage8"] = { + "Adds (36-43) to (64-75) Cold Damage to Spells", + ["affix"] = "Polar", + ["group"] = "SpellAddedColdDamage", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (36-43) to (64-75) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamage9"] = { + "Adds (44-54) to (81-93) Cold Damage to Spells", + ["affix"] = "Entombing", + ["group"] = "SpellAddedColdDamage", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (44-54) to (81-93) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageEssence7"] = { + "Adds (35-45) to (66-74) Cold Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedColdDamage", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (35-45) to (66-74) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand1_"] = { + "Adds (1-2) to (3-4) Cold Damage to Spells", + ["affix"] = "Frosted", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (1-2) to (3-4) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand2"] = { + "Adds (8-10) to (15-18) Cold Damage to Spells", + ["affix"] = "Chilled", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (8-10) to (15-18) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand3"] = { + "Adds (12-15) to (23-28) Cold Damage to Spells", + ["affix"] = "Icy", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (12-15) to (23-28) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand4"] = { + "Adds (16-22) to (33-38) Cold Damage to Spells", + ["affix"] = "Frigid", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (16-22) to (33-38) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand5"] = { + "Adds (24-30) to (45-53) Cold Damage to Spells", + ["affix"] = "Freezing", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (24-30) to (45-53) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand6"] = { + "Adds (32-40) to (59-69) Cold Damage to Spells", + ["affix"] = "Frozen", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (32-40) to (59-69) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand7"] = { + "Adds (42-52) to (77-90) Cold Damage to Spells", + ["affix"] = "Glaciated", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (42-52) to (77-90) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand8"] = { + "Adds (54-64) to (96-113) Cold Damage to Spells", + ["affix"] = "Polar", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (54-64) to (96-113) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHand9"] = { + "Adds (66-82) to (120-140) Cold Damage to Spells", + ["affix"] = "Entombing", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (66-82) to (120-140) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedColdDamageTwoHandEssence7"] = { + "Adds (57-66) to (100-111) Cold Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedColdDamageTwoHand", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (57-66) to (100-111) Cold Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage1"] = { + "Adds (1-2) to (3-4) Fire Damage to Spells", + ["affix"] = "Heated", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (1-2) to (3-4) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage2_"] = { + "Adds (6-8) to (12-14) Fire Damage to Spells", + ["affix"] = "Smouldering", + ["group"] = "SpellAddedFireDamage", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (6-8) to (12-14) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage3"] = { + "Adds (10-12) to (19-23) Fire Damage to Spells", + ["affix"] = "Smoking", + ["group"] = "SpellAddedFireDamage", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (10-12) to (19-23) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage4"] = { + "Adds (13-18) to (27-31) Fire Damage to Spells", + ["affix"] = "Burning", + ["group"] = "SpellAddedFireDamage", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (13-18) to (27-31) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage5"] = { + "Adds (19-25) to (37-44) Fire Damage to Spells", + ["affix"] = "Flaming", + ["group"] = "SpellAddedFireDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (19-25) to (37-44) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage6"] = { + "Adds (26-33) to (48-57) Fire Damage to Spells", + ["affix"] = "Scorching", + ["group"] = "SpellAddedFireDamage", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (26-33) to (48-57) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage7"] = { + "Adds (34-42) to (64-73) Fire Damage to Spells", + ["affix"] = "Incinerating", + ["group"] = "SpellAddedFireDamage", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (34-42) to (64-73) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage8"] = { + "Adds (43-52) to (79-91) Fire Damage to Spells", + ["affix"] = "Blasting", + ["group"] = "SpellAddedFireDamage", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (43-52) to (79-91) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamage9"] = { + "Adds (53-66) to (98-115) Fire Damage to Spells", + ["affix"] = "Cremating", + ["group"] = "SpellAddedFireDamage", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (53-66) to (98-115) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageEssence7"] = { + "Adds 67 to (80-90) Fire Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedFireDamage", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds 67 to (80-90) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand1"] = { + "Adds (1-2) to (4-5) Fire Damage to Spells", + ["affix"] = "Heated", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (1-2) to (4-5) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand2"] = { + "Adds (8-11) to (17-19) Fire Damage to Spells", + ["affix"] = "Smouldering", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (8-11) to (17-19) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand3"] = { + "Adds (13-17) to (26-29) Fire Damage to Spells", + ["affix"] = "Smoking", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (13-17) to (26-29) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand4"] = { + "Adds (18-23) to (36-42) Fire Damage to Spells", + ["affix"] = "Burning", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (18-23) to (36-42) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand5"] = { + "Adds (25-33) to (50-59) Fire Damage to Spells", + ["affix"] = "Flaming", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (25-33) to (50-59) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand6_"] = { + "Adds (34-44) to (65-76) Fire Damage to Spells", + ["affix"] = "Scorching", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (34-44) to (65-76) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand7"] = { + "Adds (45-56) to (85-99) Fire Damage to Spells", + ["affix"] = "Incinerating", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (45-56) to (85-99) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand8"] = { + "Adds (57-70) to (107-123) Fire Damage to Spells", + ["affix"] = "Blasting", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (57-70) to (107-123) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHand9"] = { + "Adds (71-88) to (132-155) Fire Damage to Spells", + ["affix"] = "Cremating", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (71-88) to (132-155) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { + "Adds (67-81) to (120-135) Fire Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedFireDamageTwoHand", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (67-81) to (120-135) Fire Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage1"] = { + "Adds 1 to (4-5) Lightning Damage to Spells", + ["affix"] = "Humming", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 1 to (4-5) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage2"] = { + "Adds (1-2) to (21-22) Lightning Damage to Spells", + ["affix"] = "Buzzing", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-2) to (21-22) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage3"] = { + "Adds (1-2) to (33-35) Lightning Damage to Spells", + ["affix"] = "Snapping", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-2) to (33-35) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage4"] = { + "Adds (1-4) to (46-48) Lightning Damage to Spells", + ["affix"] = "Crackling", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-4) to (46-48) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage5"] = { + "Adds (2-5) to (49-68) Lightning Damage to Spells", + ["affix"] = "Sparking", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (2-5) to (49-68) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage6"] = { + "Adds (2-7) to (69-88) Lightning Damage to Spells", + ["affix"] = "Arcing", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (2-7) to (69-88) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage7"] = { + "Adds (2-9) to (89-115) Lightning Damage to Spells", + ["affix"] = "Shocking", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (2-9) to (89-115) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage8"] = { + "Adds (4-11) to (116-144) Lightning Damage to Spells", + ["affix"] = "Discharging", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (4-11) to (116-144) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamage9"] = { + "Adds (4-14) to (145-179) Lightning Damage to Spells", + ["affix"] = "Electrocuting", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (4-14) to (145-179) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageEssence7"] = { + "Adds (4-11) to (134-144) Lightning Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (4-11) to (134-144) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand1"] = { + "Adds 1 to (6-7) Lightning Damage to Spells", + ["affix"] = "Humming", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 1 to (6-7) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand2"] = { + "Adds (1-3) to (32-34) Lightning Damage to Spells", + ["affix"] = "Buzzing", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-3) to (32-34) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand3"] = { + "Adds (1-4) to (49-52) Lightning Damage to Spells", + ["affix"] = "Snapping", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 18, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-4) to (49-52) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand4"] = { + "Adds (2-5) to (69-73) Lightning Damage to Spells", + ["affix"] = "Crackling", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (2-5) to (69-73) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand5"] = { + "Adds (2-8) to (97-102) Lightning Damage to Spells", + ["affix"] = "Sparking", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (2-8) to (97-102) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand6"] = { + "Adds (3-10) to (126-133) Lightning Damage to Spells", + ["affix"] = "Arcing", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 42, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (3-10) to (126-133) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand7"] = { + "Adds (5-12) to (164-173) Lightning Damage to Spells", + ["affix"] = "Shocking", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 51, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (5-12) to (164-173) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand8"] = { + "Adds (5-17) to (204-216) Lightning Damage to Spells", + ["affix"] = "Discharging", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 62, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (5-17) to (204-216) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHand9_"] = { + "Adds (7-20) to (255-270) Lightning Damage to Spells", + ["affix"] = "Electrocuting", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 74, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (7-20) to (255-270) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { + "Adds (6-16) to (201-216) Lightning Damage to Spells", + ["affix"] = "Essences", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (6-16) to (201-216) Lightning Damage to Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SpellAreaOfEffectPercent1"] = { + "Spell Skills have (6-8)% increased Area of Effect", + ["affix"] = "of Analysis", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 23, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (6-8)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellAreaOfEffectPercent2"] = { + "Spell Skills have (9-11)% increased Area of Effect", + ["affix"] = "of Experimentation", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 48, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (9-11)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellAreaOfEffectPercent3"] = { + "Spell Skills have (12-14)% increased Area of Effect", + ["affix"] = "of Understanding", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 69, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (12-14)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCooldownRecovery1"] = { + "Spells have (2-4)% increased Cooldown Recovery Rate", + ["affix"] = "Imagninative", + ["group"] = "SpellCooldownRecovery", + ["level"] = 12, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4748, + }, + ["tradeHashes"] = { + [1493485657] = { + "Spells have (2-4)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCooldownRecovery2"] = { + "Spells have (6-10)% increased Cooldown Recovery Rate", + ["affix"] = "Inventive", + ["group"] = "SpellCooldownRecovery", + ["level"] = 28, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4748, + }, + ["tradeHashes"] = { + [1493485657] = { + "Spells have (6-10)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCooldownRecovery3"] = { + "Spells have (11-15)% increased Cooldown Recovery Rate", + ["affix"] = "Pioneering", + ["group"] = "SpellCooldownRecovery", + ["level"] = 41, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4748, + }, + ["tradeHashes"] = { + [1493485657] = { + "Spells have (11-15)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCooldownRecovery4"] = { + "Spells have (16-20)% increased Cooldown Recovery Rate", + ["affix"] = "Trailblazing", + ["group"] = "SpellCooldownRecovery", + ["level"] = 59, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4748, + }, + ["tradeHashes"] = { + [1493485657] = { + "Spells have (16-20)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCooldownRecovery5"] = { + "Spells have (21-25)% increased Cooldown Recovery Rate", + ["affix"] = "Ingenious", + ["group"] = "SpellCooldownRecovery", + ["level"] = 74, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4748, + }, + ["tradeHashes"] = { + [1493485657] = { + "Spells have (21-25)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency1"] = { + "(7-9)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Thoughtful", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 12, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(7-9)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency2"] = { + "(10-12)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Considerate", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 29, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(10-12)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency3"] = { + "(13-15)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Prudent", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 42, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(13-15)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency4"] = { + "(16-18)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Astute", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 53, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(16-18)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency5"] = { + "(19-22)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Sagacious", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 64, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(19-22)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCostEfficiency6"] = { + "(23-26)% increased Mana Cost Efficiency of Spells", + ["affix"] = "Calculating", + ["group"] = "SpellManaCostEfficiency", + ["level"] = 77, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 4751, + }, + ["tradeHashes"] = { + [2653231923] = { + "(23-26)% increased Mana Cost Efficiency of Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance1"] = { + "(27-33)% increased Critical Hit Chance for Spells", + ["affix"] = "of Menace", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 11, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(27-33)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance2"] = { + "(34-39)% increased Critical Hit Chance for Spells", + ["affix"] = "of Havoc", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 21, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(34-39)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance3"] = { + "(40-46)% increased Critical Hit Chance for Spells", + ["affix"] = "of Disaster", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 28, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(40-46)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance4"] = { + "(47-53)% increased Critical Hit Chance for Spells", + ["affix"] = "of Calamity", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 41, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(47-53)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance5"] = { + "(54-59)% increased Critical Hit Chance for Spells", + ["affix"] = "of Ruin", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 59, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(54-59)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChance6_"] = { + "(60-73)% increased Critical Hit Chance for Spells", + ["affix"] = "of Unmaking", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 76, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(60-73)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing1"] = { + "(7-9)% increased Critical Hit Chance for Spells", + ["affix"] = "of Menace", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 18, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(7-9)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing2"] = { + "(10-12)% increased Critical Hit Chance for Spells", + ["affix"] = "of Havoc", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 32, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(10-12)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing3"] = { + "(13-15)% increased Critical Hit Chance for Spells", + ["affix"] = "of Disaster", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 45, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(13-15)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing4"] = { + "(16-18)% increased Critical Hit Chance for Spells", + ["affix"] = "of Calamity", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 58, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(16-18)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing5"] = { + "(19-21)% increased Critical Hit Chance for Spells", + ["affix"] = "of Ruin", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 70, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(19-21)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceRing6"] = { + "(22-25)% increased Critical Hit Chance for Spells", + ["affix"] = "of Unmaking", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 81, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(22-25)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand1"] = { + "(40-49)% increased Critical Hit Chance for Spells", + ["affix"] = "of Menace", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 11, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(40-49)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand2"] = { + "(50-59)% increased Critical Hit Chance for Spells", + ["affix"] = "of Havoc", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 21, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(50-59)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand3"] = { + "(60-69)% increased Critical Hit Chance for Spells", + ["affix"] = "of Disaster", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 28, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(60-69)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand4"] = { + "(70-79)% increased Critical Hit Chance for Spells", + ["affix"] = "of Calamity", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 41, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(70-79)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand5"] = { + "(80-89)% increased Critical Hit Chance for Spells", + ["affix"] = "of Ruin", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 59, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(80-89)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeChanceTwoHand6"] = { + "(90-109)% increased Critical Hit Chance for Spells", + ["affix"] = "of Unmaking", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 76, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(90-109)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier1"] = { + "(10-14)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(10-14)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier2"] = { + "(15-19)% increased Critical Spell Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(15-19)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier3"] = { + "(20-24)% increased Critical Spell Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(20-24)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier4"] = { + "(25-29)% increased Critical Spell Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(25-29)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier5"] = { + "(30-34)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(30-34)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplier6"] = { + "(35-39)% increased Critical Spell Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 73, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(35-39)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing1"] = { + "(8-10)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 17, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(8-10)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing2"] = { + "(11-13)% increased Critical Spell Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(11-13)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing3"] = { + "(14-17)% increased Critical Spell Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(14-17)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing4"] = { + "(18-21)% increased Critical Spell Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 57, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(18-21)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing5"] = { + "(22-25)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 69, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(22-25)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierRing6"] = { + "(26-29)% increased Critical Spell Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 80, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(26-29)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand1"] = { + "(15-21)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ire", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(15-21)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand2"] = { + "(23-29)% increased Critical Spell Damage Bonus", + ["affix"] = "of Anger", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(23-29)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand3"] = { + "(30-36)% increased Critical Spell Damage Bonus", + ["affix"] = "of Rage", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(30-36)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand4"] = { + "(38-44)% increased Critical Spell Damage Bonus", + ["affix"] = "of Fury", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(38-44)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand5"] = { + "(45-51)% increased Critical Spell Damage Bonus", + ["affix"] = "of Ferocity", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(45-51)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellCriticalStrikeMultiplierTwoHand6"] = { + "(53-59)% increased Critical Spell Damage Bonus", + ["affix"] = "of Destruction", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 73, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(53-59)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage1"] = { + "(3-7)% increased Spell Damage", + ["affix"] = "Apprentice's", + ["group"] = "SpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(3-7)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage2"] = { + "(8-12)% increased Spell Damage", + ["affix"] = "Adept's", + ["group"] = "SpellDamage", + ["level"] = 16, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(8-12)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage3"] = { + "(13-17)% increased Spell Damage", + ["affix"] = "Scholar's", + ["group"] = "SpellDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(13-17)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage4"] = { + "(18-22)% increased Spell Damage", + ["affix"] = "Professor's", + ["group"] = "SpellDamage", + ["level"] = 46, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(18-22)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage5"] = { + "(23-26)% increased Spell Damage", + ["affix"] = "Occultist's", + ["group"] = "SpellDamage", + ["level"] = 60, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(23-26)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamage6"] = { + "(27-30)% increased Spell Damage", + ["affix"] = "Incanter's", + ["group"] = "SpellDamage", + ["level"] = 75, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(27-30)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { + "(30-38)% increased Spell Damage", + "+(34-40) to maximum Mana", + ["affix"] = "Caster's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 2, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(34-40) to maximum Mana", + }, + [2974417149] = { + "(30-38)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { + "(39-48)% increased Spell Damage", + "+(41-48) to maximum Mana", + ["affix"] = "Conjuror's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(41-48) to maximum Mana", + }, + [2974417149] = { + "(39-48)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { + "(49-58)% increased Spell Damage", + "+(49-56) to maximum Mana", + ["affix"] = "Wizard's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 23, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(49-56) to maximum Mana", + }, + [2974417149] = { + "(49-58)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { + "(59-68)% increased Spell Damage", + "+(57-66) to maximum Mana", + ["affix"] = "Warlock's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 38, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(57-66) to maximum Mana", + }, + [2974417149] = { + "(59-68)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { + "(69-78)% increased Spell Damage", + "+(67-74) to maximum Mana", + ["affix"] = "Mage's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 48, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(67-74) to maximum Mana", + }, + [2974417149] = { + "(69-78)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { + "(79-88)% increased Spell Damage", + "+(75-82) to maximum Mana", + ["affix"] = "Archmage's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 63, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(75-82) to maximum Mana", + }, + [2974417149] = { + "(79-88)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { + "(89-98)% increased Spell Damage", + "+(83-90) to maximum Mana", + ["affix"] = "Lich's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 79, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(83-90) to maximum Mana", + }, + [2974417149] = { + "(89-98)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon1"] = { + "(15-19)% increased Spell Damage", + "+(17-20) to maximum Mana", + ["affix"] = "Caster's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 2, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [2974417149] = { + "(15-19)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon2"] = { + "(20-24)% increased Spell Damage", + "+(21-24) to maximum Mana", + ["affix"] = "Conjuror's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 11, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-24) to maximum Mana", + }, + [2974417149] = { + "(20-24)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon3"] = { + "(25-29)% increased Spell Damage", + "+(25-28) to maximum Mana", + ["affix"] = "Wizard's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 23, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(25-28) to maximum Mana", + }, + [2974417149] = { + "(25-29)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon4"] = { + "(30-34)% increased Spell Damage", + "+(29-33) to maximum Mana", + ["affix"] = "Warlock's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 38, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(29-33) to maximum Mana", + }, + [2974417149] = { + "(30-34)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon5"] = { + "(35-39)% increased Spell Damage", + "+(34-37) to maximum Mana", + ["affix"] = "Mage's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 46, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(34-37) to maximum Mana", + }, + [2974417149] = { + "(35-39)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon6"] = { + "(40-44)% increased Spell Damage", + "+(38-41) to maximum Mana", + ["affix"] = "Archmage's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 60, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(38-41) to maximum Mana", + }, + [2974417149] = { + "(40-44)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageAndManaOnWeapon7"] = { + "(45-49)% increased Spell Damage", + "+(42-45) to maximum Mana", + ["affix"] = "Lich's", + ["group"] = "WeaponSpellDamageAndMana", + ["level"] = 80, + ["modTags"] = { + "caster_damage", + "resource", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(42-45) to maximum Mana", + }, + [2974417149] = { + "(45-49)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect1"] = { + "(20-25)% increased Spell Damage during any Flask Effect", + ["affix"] = "Activating", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 12, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(20-25)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect2"] = { + "(26-31)% increased Spell Damage during any Flask Effect", + ["affix"] = "Stimulating", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 26, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(26-31)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect3"] = { + "(32-37)% increased Spell Damage during any Flask Effect", + ["affix"] = "Awakening", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 39, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(32-37)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect4"] = { + "(38-43)% increased Spell Damage during any Flask Effect", + ["affix"] = "Elevating", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 53, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(38-43)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect5"] = { + "(44-49)% increased Spell Damage during any Flask Effect", + ["affix"] = "Energising", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 67, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(44-49)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageDuringManaFlaskEffect6"] = { + "(50-55)% increased Spell Damage during any Flask Effect", + ["affix"] = "Exhilarating", + ["group"] = "SpellDamageDuringManaFlaskEffect", + ["level"] = 80, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9999, + }, + ["tradeHashes"] = { + [1014398896] = { + "(50-55)% increased Spell Damage during any Flask Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold1"] = { + "Gain (13-15)% of Damage as Extra Cold Damage", + ["affix"] = "Malignant", + ["group"] = "DamageGainedAsCold", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (13-15)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold2"] = { + "Gain (16-18)% of Damage as Extra Cold Damage", + ["affix"] = "Pernicious", + ["group"] = "DamageGainedAsCold", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (16-18)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold3"] = { + "Gain (19-21)% of Damage as Extra Cold Damage", + ["affix"] = "Destructive", + ["group"] = "DamageGainedAsCold", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (19-21)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold4"] = { + "Gain (22-24)% of Damage as Extra Cold Damage", + ["affix"] = "Malicious", + ["group"] = "DamageGainedAsCold", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (22-24)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold5"] = { + "Gain (25-27)% of Damage as Extra Cold Damage", + ["affix"] = "Ruthless", + ["group"] = "DamageGainedAsCold", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (25-27)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsCold6"] = { + "Gain (28-30)% of Damage as Extra Cold Damage", + ["affix"] = "Frostbound", + ["group"] = "DamageGainedAsCold", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (28-30)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand1"] = { + "Gain (26-30)% of Damage as Extra Cold Damage", + ["affix"] = "Malignant", + ["group"] = "DamageGainedAsCold", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (26-30)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand2"] = { + "Gain (31-36)% of Damage as Extra Cold Damage", + ["affix"] = "Pernicious", + ["group"] = "DamageGainedAsCold", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (31-36)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand3"] = { + "Gain (37-42)% of Damage as Extra Cold Damage", + ["affix"] = "Destructive", + ["group"] = "DamageGainedAsCold", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (37-42)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand4"] = { + "Gain (43-48)% of Damage as Extra Cold Damage", + ["affix"] = "Malicious", + ["group"] = "DamageGainedAsCold", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (43-48)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand5"] = { + "Gain (49-54)% of Damage as Extra Cold Damage", + ["affix"] = "Ruthless", + ["group"] = "DamageGainedAsCold", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (49-54)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsColdTwoHand6"] = { + "Gain (55-60)% of Damage as Extra Cold Damage", + ["affix"] = "Frostbound", + ["group"] = "DamageGainedAsCold", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (55-60)% of Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire1"] = { + "Gain (13-15)% of Damage as Extra Fire Damage", + ["affix"] = "Fervent", + ["group"] = "DamageGainedAsFire", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (13-15)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire2"] = { + "Gain (16-18)% of Damage as Extra Fire Damage", + ["affix"] = "Ardent", + ["group"] = "DamageGainedAsFire", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (16-18)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire3"] = { + "Gain (19-21)% of Damage as Extra Fire Damage", + ["affix"] = "Fanatic's", + ["group"] = "DamageGainedAsFire", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (19-21)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire4"] = { + "Gain (22-24)% of Damage as Extra Fire Damage", + ["affix"] = "Zealot's", + ["group"] = "DamageGainedAsFire", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (22-24)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire5"] = { + "Gain (25-27)% of Damage as Extra Fire Damage", + ["affix"] = "Infernal", + ["group"] = "DamageGainedAsFire", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (25-27)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFire6"] = { + "Gain (28-30)% of Damage as Extra Fire Damage", + ["affix"] = "Flamebound", + ["group"] = "DamageGainedAsFire", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (28-30)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand1"] = { + "Gain (26-30)% of Damage as Extra Fire Damage", + ["affix"] = "Fervent", + ["group"] = "DamageGainedAsFire", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (26-30)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand2"] = { + "Gain (31-36)% of Damage as Extra Fire Damage", + ["affix"] = "Ardent", + ["group"] = "DamageGainedAsFire", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (31-36)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand3"] = { + "Gain (37-42)% of Damage as Extra Fire Damage", + ["affix"] = "Fanatic's", + ["group"] = "DamageGainedAsFire", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (37-42)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand4"] = { + "Gain (43-48)% of Damage as Extra Fire Damage", + ["affix"] = "Zealot's", + ["group"] = "DamageGainedAsFire", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (43-48)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand5"] = { + "Gain (49-54)% of Damage as Extra Fire Damage", + ["affix"] = "Infernal", + ["group"] = "DamageGainedAsFire", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (49-54)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsFireTwoHand6"] = { + "Gain (55-60)% of Damage as Extra Fire Damage", + ["affix"] = "Flamebound", + ["group"] = "DamageGainedAsFire", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (55-60)% of Damage as Extra Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning1"] = { + "Gain (13-15)% of Damage as Extra Lightning Damage", + ["affix"] = "Deadly", + ["group"] = "DamageGainedAsLightning", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (13-15)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning2"] = { + "Gain (16-18)% of Damage as Extra Lightning Damage", + ["affix"] = "Lethal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (16-18)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning3"] = { + "Gain (19-21)% of Damage as Extra Lightning Damage", + ["affix"] = "Fatal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (19-21)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning4"] = { + "Gain (22-24)% of Damage as Extra Lightning Damage", + ["affix"] = "Vorpal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (22-24)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning5"] = { + "Gain (25-27)% of Damage as Extra Lightning Damage", + ["affix"] = "Electrifying", + ["group"] = "DamageGainedAsLightning", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (25-27)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightning6"] = { + "Gain (28-30)% of Damage as Extra Lightning Damage", + ["affix"] = "Stormbound", + ["group"] = "DamageGainedAsLightning", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (28-30)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand1"] = { + "Gain (26-30)% of Damage as Extra Lightning Damage", + ["affix"] = "Deadly", + ["group"] = "DamageGainedAsLightning", + ["level"] = 5, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (26-30)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand2"] = { + "Gain (31-36)% of Damage as Extra Lightning Damage", + ["affix"] = "Lethal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (31-36)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand3"] = { + "Gain (37-42)% of Damage as Extra Lightning Damage", + ["affix"] = "Fatal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (37-42)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand4"] = { + "Gain (43-48)% of Damage as Extra Lightning Damage", + ["affix"] = "Vorpal", + ["group"] = "DamageGainedAsLightning", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (43-48)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand5"] = { + "Gain (49-54)% of Damage as Extra Lightning Damage", + ["affix"] = "Electrifying", + ["group"] = "DamageGainedAsLightning", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (49-54)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageGainedAsLightningTwoHand6"] = { + "Gain (55-60)% of Damage as Extra Lightning Damage", + ["affix"] = "Stormbound", + ["group"] = "DamageGainedAsLightning", + ["level"] = 80, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (55-60)% of Damage as Extra Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon1"] = { + "(50-68)% increased Spell Damage", + ["affix"] = "Apprentice's", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(50-68)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon2"] = { + "(69-88)% increased Spell Damage", + ["affix"] = "Adept's", + ["group"] = "WeaponSpellDamage", + ["level"] = 8, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(69-88)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon3"] = { + "(89-108)% increased Spell Damage", + ["affix"] = "Scholar's", + ["group"] = "WeaponSpellDamage", + ["level"] = 16, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(89-108)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon4"] = { + "(109-128)% increased Spell Damage", + ["affix"] = "Professor's", + ["group"] = "WeaponSpellDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(109-128)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon5"] = { + "(129-148)% increased Spell Damage", + ["affix"] = "Occultist's", + ["group"] = "WeaponSpellDamage", + ["level"] = 46, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(129-148)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon6"] = { + "(149-188)% increased Spell Damage", + ["affix"] = "Incanter's", + ["group"] = "WeaponSpellDamage", + ["level"] = 60, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(149-188)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon7"] = { + "(189-208)% increased Spell Damage", + ["affix"] = "Glyphic", + ["group"] = "WeaponSpellDamage", + ["level"] = 70, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(189-208)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnTwoHandWeapon8"] = { + "(209-238)% increased Spell Damage", + ["affix"] = "Runic", + ["group"] = "WeaponSpellDamage", + ["level"] = 80, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(209-238)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnWeapon1"] = { + "(25-34)% increased Spell Damage", + ["affix"] = "Apprentice's", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(25-34)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon2"] = { + "(35-44)% increased Spell Damage", + ["affix"] = "Adept's", + ["group"] = "WeaponSpellDamage", + ["level"] = 8, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(35-44)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon3"] = { + "(45-54)% increased Spell Damage", + ["affix"] = "Scholar's", + ["group"] = "WeaponSpellDamage", + ["level"] = 16, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(45-54)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon4"] = { + "(55-64)% increased Spell Damage", + ["affix"] = "Professor's", + ["group"] = "WeaponSpellDamage", + ["level"] = 33, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(55-64)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon5"] = { + "(65-74)% increased Spell Damage", + ["affix"] = "Occultist's", + ["group"] = "WeaponSpellDamage", + ["level"] = 46, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(65-74)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon6"] = { + "(75-89)% increased Spell Damage", + ["affix"] = "Incanter's", + ["group"] = "WeaponSpellDamage", + ["level"] = 60, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(75-89)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "wand", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["SpellDamageOnWeapon7"] = { + "(90-104)% increased Spell Damage", + ["affix"] = "Glyphic", + ["group"] = "WeaponSpellDamage", + ["level"] = 70, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(90-104)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageOnWeapon8_"] = { + "(105-119)% increased Spell Damage", + ["affix"] = "Runic", + ["group"] = "WeaponSpellDamage", + ["level"] = 80, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(105-119)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["SpellDamageRing1"] = { + "(6-9)% increased Spell Damage", + ["affix"] = "Apprentice's", + ["group"] = "SpellDamage", + ["level"] = 9, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(6-9)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing2"] = { + "(10-13)% increased Spell Damage", + ["affix"] = "Adept's", + ["group"] = "SpellDamage", + ["level"] = 20, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(10-13)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing3"] = { + "(14-17)% increased Spell Damage", + ["affix"] = "Scholar's", + ["group"] = "SpellDamage", + ["level"] = 31, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(14-17)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing4"] = { + "(18-21)% increased Spell Damage", + ["affix"] = "Professor's", + ["group"] = "SpellDamage", + ["level"] = 46, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(18-21)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing5"] = { + "(22-25)% increased Spell Damage", + ["affix"] = "Occultist's", + ["group"] = "SpellDamage", + ["level"] = 55, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(22-25)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing6"] = { + "(26-29)% increased Spell Damage", + ["affix"] = "Incanter's", + ["group"] = "SpellDamage", + ["level"] = 63, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(26-29)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing7"] = { + "(30-34)% increased Spell Damage", + ["affix"] = "Glyphic", + ["group"] = "SpellDamage", + ["level"] = 71, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(30-34)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpellDamageRing8"] = { + "(35-39)% increased Spell Damage", + ["affix"] = "Runic", + ["group"] = "SpellDamage", + ["level"] = 82, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(35-39)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "genesis_tree_caster", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["SpiritMinionEssence1"] = { + "Triggers Level 20 Spectral Spirits when Equipped", + "+3 to maximum number of Spectral Spirits", + ["affix"] = "of the Essence", + ["group"] = "GrantsEssenceMinion", + ["level"] = 63, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 545, + 545.1, + }, + ["tradeHashes"] = { + [470688636] = { + "Triggers Level 20 Spectral Spirits when Equipped", + "+3 to maximum number of Spectral Spirits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["Strength1"] = { + "+(5-8) to Strength", + ["affix"] = "of the Brute", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(5-8) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength2"] = { + "+(9-12) to Strength", + ["affix"] = "of the Wrestler", + ["group"] = "Strength", + ["level"] = 11, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(9-12) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength3"] = { + "+(13-16) to Strength", + ["affix"] = "of the Bear", + ["group"] = "Strength", + ["level"] = 22, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(13-16) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength4"] = { + "+(17-20) to Strength", + ["affix"] = "of the Lion", + ["group"] = "Strength", + ["level"] = 33, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(17-20) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength5"] = { + "+(21-24) to Strength", + ["affix"] = "of the Gorilla", + ["group"] = "Strength", + ["level"] = 44, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(21-24) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength6"] = { + "+(25-27) to Strength", + ["affix"] = "of the Goliath", + ["group"] = "Strength", + ["level"] = 55, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(25-27) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength7"] = { + "+(28-30) to Strength", + ["affix"] = "of the Leviathan", + ["group"] = "Strength", + ["level"] = 66, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(28-30) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength8"] = { + "+(31-33) to Strength", + ["affix"] = "of the Titan", + ["group"] = "Strength", + ["level"] = 74, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(31-33) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "belt", + "str_armour", + "str_dex_armour", + "str_int_armour", + "str_dex_int_armour", + "mace", + "axe", + "sword", + "spear", + "flail", + "crossbow", + "sceptre", + "talisman", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["Strength9"] = { + "+(34-36) to Strength", + ["affix"] = "of the Gods", + ["group"] = "Strength", + ["level"] = 81, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(34-36) to Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["StunAvoidance1"] = { + "(11-13)% chance to Avoid being Stunned", + ["affix"] = "of Composure", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(11-13)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidance2"] = { + "(14-16)% chance to Avoid being Stunned", + ["affix"] = "of Surefootedness", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(14-16)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidance3"] = { + "(17-19)% chance to Avoid being Stunned", + ["affix"] = "of Persistence", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(17-19)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidance4"] = { + "(20-22)% chance to Avoid being Stunned", + ["affix"] = "of Relentlessness", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(20-22)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidanceEssence5"] = { + "(23-26)% chance to Avoid being Stunned", + ["affix"] = "of the Essence", + ["group"] = "AvoidStun", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(23-26)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidanceEssence6"] = { + "(27-30)% chance to Avoid being Stunned", + ["affix"] = "of the Essence", + ["group"] = "AvoidStun", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(27-30)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunAvoidanceEssence7"] = { + "(31-44)% chance to Avoid being Stunned", + ["affix"] = "of the Essence", + ["group"] = "AvoidStun", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(31-44)% chance to Avoid being Stunned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["StunDamageIncrease1"] = { + "Causes (21-30)% increased Stun Buildup", + ["affix"] = "of the Pugilist", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 5, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (21-30)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDamageIncrease2"] = { + "Causes (31-40)% increased Stun Buildup", + ["affix"] = "of the Brawler", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 20, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (31-40)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDamageIncrease3"] = { + "Causes (41-50)% increased Stun Buildup", + ["affix"] = "of the Boxer", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 30, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (41-50)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDamageIncrease4"] = { + "Causes (51-60)% increased Stun Buildup", + ["affix"] = "of the Combatant", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (51-60)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDamageIncrease5"] = { + "Causes (61-70)% increased Stun Buildup", + ["affix"] = "of the Gladiator", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (61-70)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDamageIncrease6"] = { + "Causes (71-80)% increased Stun Buildup", + ["affix"] = "of the Champion", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 74, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (71-80)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration1"] = { + "(11-13)% increased Stun Duration", + ["affix"] = "of Impact", + ["group"] = "LocalStunDuration", + ["level"] = 5, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(11-13)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration2"] = { + "(14-16)% increased Stun Duration", + ["affix"] = "of Dazing", + ["group"] = "LocalStunDuration", + ["level"] = 18, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(14-16)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration3"] = { + "(17-19)% increased Stun Duration", + ["affix"] = "of Stunning", + ["group"] = "LocalStunDuration", + ["level"] = 30, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(17-19)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration4"] = { + "(20-22)% increased Stun Duration", + ["affix"] = "of Slamming", + ["group"] = "LocalStunDuration", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(20-22)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration5"] = { + "(23-26)% increased Stun Duration", + ["affix"] = "of Staggering", + ["group"] = "LocalStunDuration", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(23-26)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunDuration6"] = { + "(27-30)% increased Stun Duration", + ["affix"] = "of the Concussion", + ["group"] = "LocalStunDuration", + ["level"] = 71, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(27-30)% increased Stun Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ranged", + "weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["StunThreshold1"] = { + "+(6-11) to Stun Threshold", + ["affix"] = "of Thick Skin", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(6-11) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold10"] = { + "+(254-304) to Stun Threshold", + ["affix"] = "of Obsidian Skin", + ["group"] = "StunThreshold", + ["level"] = 72, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(254-304) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold11"] = { + "+(305-352) to Stun Threshold", + ["affix"] = "of Titanium Skin", + ["group"] = "StunThreshold", + ["level"] = 80, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(305-352) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["StunThreshold2"] = { + "+(12-29) to Stun Threshold", + ["affix"] = "of Reinforced Skin", + ["group"] = "StunThreshold", + ["level"] = 8, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(12-29) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold3"] = { + "+(30-49) to Stun Threshold", + ["affix"] = "of Stone Skin", + ["group"] = "StunThreshold", + ["level"] = 15, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(30-49) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold4"] = { + "+(50-72) to Stun Threshold", + ["affix"] = "of Iron Skin", + ["group"] = "StunThreshold", + ["level"] = 22, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(50-72) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold5"] = { + "+(73-97) to Stun Threshold", + ["affix"] = "of Steel Skin", + ["group"] = "StunThreshold", + ["level"] = 29, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(73-97) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold6"] = { + "+(98-124) to Stun Threshold", + ["affix"] = "of Granite Skin", + ["group"] = "StunThreshold", + ["level"] = 36, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(98-124) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold7"] = { + "+(125-163) to Stun Threshold", + ["affix"] = "of Platinum Skin", + ["group"] = "StunThreshold", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(125-163) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold8"] = { + "+(164-206) to Stun Threshold", + ["affix"] = "of Adamantite Skin", + ["group"] = "StunThreshold", + ["level"] = 54, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(164-206) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["StunThreshold9"] = { + "+(207-253) to Stun Threshold", + ["affix"] = "of Corundum Skin", + ["group"] = "StunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(207-253) to Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "boots", + "shield", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["SummonTotemCastSpeedEssence1"] = { + "(21-25)% increased Totem Placement speed", + ["affix"] = "of the Essence", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 42, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(21-25)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SummonTotemCastSpeedEssence2"] = { + "(26-30)% increased Totem Placement speed", + ["affix"] = "of the Essence", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 58, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(26-30)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SummonTotemCastSpeedEssence3"] = { + "(31-35)% increased Totem Placement speed", + ["affix"] = "of the Essence", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 74, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(31-35)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SummonTotemCastSpeedEssence4"] = { + "(36-45)% increased Totem Placement speed", + ["affix"] = "of the Essence", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 82, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(36-45)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["SupportDamageOverTimeEssence1"] = { + "Socketed Gems deal 30% more Damage over Time", + ["affix"] = "of the Essence", + ["group"] = "SupportDamageOverTime", + ["level"] = 63, + ["modTags"] = { + "skill", + "damage", + "gem", + }, + ["statOrder"] = { + 442, + }, + ["tradeHashes"] = { + [3846088475] = { + "Socketed Gems deal 30% more Damage over Time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["TimeInfluenceCharges1"] = { + "Skills have (7-10)% chance to not remove Charges but still count as consuming them", + ["affix"] = "of Chronomancy", + ["group"] = "ChargeChanceToNotConsume", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 5603, + }, + ["tradeHashes"] = { + [2942439603] = { + "Skills have (7-10)% chance to not remove Charges but still count as consuming them", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceCharges2"] = { + "Skills have (11-15)% chance to not remove Charges but still count as consuming them", + ["affix"] = "of Chronomancy", + ["group"] = "ChargeChanceToNotConsume", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 5603, + }, + ["tradeHashes"] = { + [2942439603] = { + "Skills have (11-15)% chance to not remove Charges but still count as consuming them", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceCooldownRecovery1"] = { + "(12-17)% increased Cooldown Recovery Rate", + ["affix"] = "of Chronomancy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(12-17)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceCooldownRecovery2"] = { + "(18-23)% increased Cooldown Recovery Rate", + ["affix"] = "of Chronomancy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 55, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(18-23)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceCooldownRecovery3"] = { + "(24-30)% increased Cooldown Recovery Rate", + ["affix"] = "of Chronomancy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(24-30)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceDebuffExpiry1"] = { + "Debuffs on you expire (50-69)% faster", + ["affix"] = "of Chronomancy", + ["group"] = "DebuffTimePassed", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (50-69)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceDebuffExpiry2"] = { + "Debuffs on you expire (70-89)% faster", + ["affix"] = "of Chronomancy", + ["group"] = "DebuffTimePassed", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (70-89)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceDodgeRoll1"] = { + "+(0.3-0.4) metres to Dodge Roll distance", + ["affix"] = "Uhtred's", + ["group"] = "DodgeRollDistance", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 6200, + }, + ["tradeHashes"] = { + [258119672] = { + "+(0.3-0.4) metres to Dodge Roll distance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceDodgeRoll2"] = { + "+(0.4-0.5) metres to Dodge Roll distance", + ["affix"] = "Uhtred's", + ["group"] = "DodgeRollDistance", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 6200, + }, + ["tradeHashes"] = { + [258119672] = { + "+(0.4-0.5) metres to Dodge Roll distance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceIncreasedDuration1"] = { + "(15-19)% increased Skill Effect Duration", + ["affix"] = "of Chronomancy", + ["group"] = "SkillEffectDuration", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(15-19)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceIncreasedDuration2"] = { + "(20-29)% increased Skill Effect Duration", + ["affix"] = "of Chronomancy", + ["group"] = "SkillEffectDuration", + ["level"] = 55, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(20-29)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceIncreasedDuration3"] = { + "(30-40)% increased Skill Effect Duration", + ["affix"] = "of Chronomancy", + ["group"] = "SkillEffectDuration", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(30-40)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceMovementSpeed1"] = { + "(24-26)% increased Movement Speed", + "(10-15)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "Uhtred's", + ["group"] = "MovementVelocitySlowPotencyHybrid", + ["level"] = 65, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + 4747, + }, + ["tradeHashes"] = { + [2250533757] = { + "(24-26)% increased Movement Speed", + }, + [924253255] = { + "(10-15)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceMovementSpeed2"] = { + "(27-29)% increased Movement Speed", + "(16-20)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "Uhtred's", + ["group"] = "MovementVelocitySlowPotencyHybrid", + ["level"] = 70, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + 4747, + }, + ["tradeHashes"] = { + [2250533757] = { + "(27-29)% increased Movement Speed", + }, + [924253255] = { + "(16-20)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceMovementSpeed3"] = { + "(30-32)% increased Movement Speed", + "(21-25)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "Uhtred's", + ["group"] = "MovementVelocitySlowPotencyHybrid", + ["level"] = 78, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + 4747, + }, + ["tradeHashes"] = { + [2250533757] = { + "(30-32)% increased Movement Speed", + }, + [924253255] = { + "(21-25)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceSprintSpeed1"] = { + "(10-14)% increased Movement Speed while Sprinting", + ["affix"] = "Uhtred's", + ["group"] = "MovementVelocityWhileSprinting", + ["level"] = 45, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 10069, + }, + ["tradeHashes"] = { + [3107707789] = { + "(10-14)% increased Movement Speed while Sprinting", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TimeInfluenceSprintSpeed2"] = { + "(17-23)% increased Movement Speed while Sprinting", + ["affix"] = "Uhtred's", + ["group"] = "MovementVelocityWhileSprinting", + ["level"] = 78, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 10069, + }, + ["tradeHashes"] = { + [3107707789] = { + "(17-23)% increased Movement Speed while Sprinting", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "chronomancy", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance1"] = { + "(10-19)% increased Critical Hit Chance with Traps", + ["affix"] = "of Menace", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 11, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(10-19)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance2"] = { + "(20-39)% increased Critical Hit Chance with Traps", + ["affix"] = "of Havoc", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 21, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(20-39)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance3"] = { + "(40-59)% increased Critical Hit Chance with Traps", + ["affix"] = "of Disaster", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 28, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(40-59)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance4"] = { + "(60-79)% increased Critical Hit Chance with Traps", + ["affix"] = "of Calamity", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 41, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(60-79)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance5"] = { + "(80-99)% increased Critical Hit Chance with Traps", + ["affix"] = "of Ruin", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 59, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(80-99)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeChance6"] = { + "(100-109)% increased Critical Hit Chance with Traps", + ["affix"] = "of Unmaking", + ["group"] = "TrapCriticalStrikeChance", + ["level"] = 76, + ["modTags"] = { + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(100-109)% increased Critical Hit Chance with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier1"] = { + "+(10-14)% to Critical Damage Bonus with Traps", + ["affix"] = "of Ire", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 8, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(10-14)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier2"] = { + "+(15-19)% to Critical Damage Bonus with Traps", + ["affix"] = "of Anger", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 21, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(15-19)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier3"] = { + "+(20-24)% to Critical Damage Bonus with Traps", + ["affix"] = "of Rage", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 30, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(20-24)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier4"] = { + "+(25-29)% to Critical Damage Bonus with Traps", + ["affix"] = "of Fury", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(25-29)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier5"] = { + "+(30-34)% to Critical Damage Bonus with Traps", + ["affix"] = "of Ferocity", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 59, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(30-34)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapCriticalStrikeMultiplier6"] = { + "+(35-39)% to Critical Damage Bonus with Traps", + ["affix"] = "of Destruction", + ["group"] = "TrapCriticalStrikeMultiplier", + ["level"] = 73, + ["modTags"] = { + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(35-39)% to Critical Damage Bonus with Traps", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon1"] = { + "(15-19)% increased Trap Damage", + "+(17-20) to maximum Mana", + ["affix"] = "Sapper's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 2, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(17-20) to maximum Mana", + }, + [2941585404] = { + "(15-19)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon2"] = { + "(20-24)% increased Trap Damage", + "+(21-24) to maximum Mana", + ["affix"] = "Saboteur's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 11, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(21-24) to maximum Mana", + }, + [2941585404] = { + "(20-24)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon3"] = { + "(25-29)% increased Trap Damage", + "+(25-28) to maximum Mana", + ["affix"] = "Tinkerer's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 23, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(25-28) to maximum Mana", + }, + [2941585404] = { + "(25-29)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon4"] = { + "(30-34)% increased Trap Damage", + "+(29-33) to maximum Mana", + ["affix"] = "Mechanic's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 35, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(29-33) to maximum Mana", + }, + [2941585404] = { + "(30-34)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon5"] = { + "(35-39)% increased Trap Damage", + "+(34-37) to maximum Mana", + ["affix"] = "Engineer's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(34-37) to maximum Mana", + }, + [2941585404] = { + "(35-39)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon6"] = { + "(40-44)% increased Trap Damage", + "+(38-41) to maximum Mana", + ["affix"] = "Inventor's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(38-41) to maximum Mana", + }, + [2941585404] = { + "(40-44)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageAndManaOnWeapon7"] = { + "(45-49)% increased Trap Damage", + "+(42-45) to maximum Mana", + ["affix"] = "Artificer's", + ["group"] = "WeaponTrapDamageAndMana", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 872, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(42-45) to maximum Mana", + }, + [2941585404] = { + "(45-49)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon1"] = { + "(25-34)% increased Trap Damage", + ["affix"] = "Explosive", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 2, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(25-34)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon2"] = { + "(35-44)% increased Trap Damage", + ["affix"] = "Eviscerating", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 8, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(35-44)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon3"] = { + "(45-54)% increased Trap Damage", + ["affix"] = "Crippling", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 16, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(45-54)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon4"] = { + "(55-64)% increased Trap Damage", + ["affix"] = "Disabling", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 33, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(55-64)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon5"] = { + "(65-74)% increased Trap Damage", + ["affix"] = "Decimating", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 46, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(65-74)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon6"] = { + "(75-89)% increased Trap Damage", + ["affix"] = "Demolishing", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 60, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(75-89)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon7"] = { + "(90-104)% increased Trap Damage", + ["affix"] = "Obliterating", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 70, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(90-104)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageOnWeapon8"] = { + "(105-119)% increased Trap Damage", + ["affix"] = "Shattering", + ["group"] = "TrapDamageOnWeapon", + ["level"] = 81, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(105-119)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "trap", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["WeaponElementalDamage1"] = { + "(19-35)% increased Elemental Damage with Attacks", + ["affix"] = "Catalysing", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 4, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(19-35)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamage2"] = { + "(36-52)% increased Elemental Damage with Attacks", + ["affix"] = "Infusing", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(36-52)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamage3"] = { + "(53-62)% increased Elemental Damage with Attacks", + ["affix"] = "Empowering", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(53-62)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamage4"] = { + "(63-72)% increased Elemental Damage with Attacks", + ["affix"] = "Unleashed", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(63-72)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamage5"] = { + "(73-86)% increased Elemental Damage with Attacks", + ["affix"] = "Overpowering", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(73-86)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamage6_"] = { + "(87-100)% increased Elemental Damage with Attacks", + ["affix"] = "Devastating", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(87-100)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { + "(34-47)% increased Elemental Damage with Attacks", + ["affix"] = "Catalysing", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 4, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(34-47)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { + "(48-71)% increased Elemental Damage with Attacks", + ["affix"] = "Infusing", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 16, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(48-71)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { + "(72-85)% increased Elemental Damage with Attacks", + ["affix"] = "Empowering", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 33, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(72-85)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { + "(86-99)% increased Elemental Damage with Attacks", + ["affix"] = "Unleashed", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 46, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(86-99)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { + "(100-119)% increased Elemental Damage with Attacks", + ["affix"] = "Overpowering", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 60, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(100-119)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { + "(120-139)% increased Elemental Damage with Attacks", + ["affix"] = "Devastating", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(120-139)% increased Elemental Damage with Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, +} diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 3010fb776c..821384bf90 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -1,5500 +1,124008 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 911 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, - ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5404 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, - ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, - ["UniqueNearbyAlliesLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (50-100) Life per second", statOrder = { 921 }, level = 78, group = "AlliesInPresenceLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (50-100) Life per second" }, } }, - ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-40)% increased Critical Hit Chance for Attacks" }, } }, - ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-40)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["UniqueMaximumChaosResist1"] = { affix = "", "+(1-5)% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-5)% to Maximum Chaos Resistance" }, } }, - ["UniqueArmourAppliesToChaosDamage1"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, - ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 1029 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1752419596] = { "Gain Deflection Rating equal to 20% of Armour" }, } }, - ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, - ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, - ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6501 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, - ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, - ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, - ["UniqueFlaskIncreasedRecoverySpeed2"] = { affix = "", "(25-50)% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(25-50)% reduced Recovery rate" }, } }, - ["UniqueFlaskIncreasedRecoverySpeed3"] = { affix = "", "70% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "70% reduced Recovery rate" }, } }, - ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 930 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(70-80)% reduced Amount Recovered" }, } }, - ["UniqueFlaskRecoveryAmount2"] = { affix = "", "(100-150)% increased Amount Recovered", statOrder = { 930 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(100-150)% increased Amount Recovered" }, } }, - ["UniqueFlaskRecoveryAmount3"] = { affix = "", "(200-300)% increased Amount Recovered", statOrder = { 930 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(200-300)% increased Amount Recovered" }, } }, - ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, - ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 859 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire damage to Attacks" }, } }, - ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1040 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1332 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 1051 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(25-40)% increased Stun Buildup" }, } }, - ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2902 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2270 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (20-30)% chance to cause Bleeding" }, } }, - ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 985 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, - ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1068 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "100% chance to Pierce an Enemy" }, } }, - ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1552 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(20-30)% increased Arrow Speed" }, } }, - ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-30)% increased Critical Hit Chance for Attacks" }, } }, - ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2-4) Life Regeneration per second" }, } }, - ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 993 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 885 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 887 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["AmuletImplicitRunicWard1"] = { affix = "", "+(30-40) to maximum Runic Ward", statOrder = { 890 }, level = 23, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-40) to maximum Runic Ward" }, } }, - ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 991 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 896 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 941 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, - ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, - ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed6"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, - ["AmuletImplicitPrefixSuffixAllowed7"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed8"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, - ["AmuletImplicitPrefixSuffixAllowed9"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 62, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7743 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, - ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 880 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(120-160) to Accuracy Rating" }, } }, - ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 987 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, - ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, - ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 941 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 58 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [958696139] = { "Grants 1 additional Skill Slot" }, } }, - ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 614 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["RingImplicitMaximumQualityAdditional1"] = { affix = "", "+20% to Maximum Quality", statOrder = { 615 }, level = 50, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["RingImplicitMaximumQualityAdditional2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 615 }, level = 50, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["RingImplicitMaximumResistance"] = { affix = "", "+1% to all maximum Resistances", statOrder = { 1493 }, level = 65, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["RingImplicitPercentLife"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 889 }, level = 50, group = "IncreasedLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["RingImplicitPercentMana"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 894 }, level = 50, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["RingImplicitPhysicalDamage2"] = { affix = "", "Adds (6-9) to (11-15) Physical Damage to Attacks", statOrder = { 858 }, level = 50, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (11-15) Physical Damage to Attacks" }, } }, - ["RingImplicitChaosDamage"] = { affix = "", "(11-23)% increased Chaos Damage", statOrder = { 876 }, level = 59, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-23)% increased Chaos Damage" }, } }, - ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7742 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, - ["RingImplicitFireColdResistance"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, - ["RingImplicitFireLightningResistance"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, - ["RingImplicitColdLightningResistance"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, - ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, - ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 900 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(15-20)% increased Charm Effect Duration" }, } }, - ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(140-180) to Armour", statOrder = { 881 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(140-180) to Armour" }, } }, - ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5606 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, - ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6646 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, - ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6888 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, - ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7741 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, - ["BeltImplicitCastSpeed1"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 987 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["BeltImplicitStrength1"] = { affix = "", "+(15-20) to Strength", statOrder = { 992 }, level = 40, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, - ["BeltImplicitLightningDamage1"] = { affix = "", "Adds 1 to (20-30) Lightning damage to Attacks", statOrder = { 861 }, level = 40, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning damage to Attacks" }, } }, - ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, - ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, - ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, - ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 689 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1691862754] = { "Used when you become Frozen" }, } }, - ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 687 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3676540188] = { "Used when you start Bleeding" }, } }, - ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 691 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1412682799] = { "Used when you become Poisoned" }, } }, - ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 690 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585126960] = { "Used when you become Ignited" }, } }, - ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 692 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3699444296] = { "Used when you become Shocked" }, } }, - ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 706 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810482573] = { "Used when you become Stunned" }, } }, - ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 693 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2778646494] = { "Used when you are affected by a Slow" }, } }, - ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 697 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854901951] = { "Used when you take Fire damage from a Hit" }, } }, - ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 695 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2994271459] = { "Used when you take Cold damage from a Hit" }, } }, - ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 704 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2016937536] = { "Used when you take Lightning damage from a Hit" }, } }, - ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 694 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310778564] = { "Used when you take Chaos damage from a Hit" }, } }, - ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you kill a Rare or Unique enemy", statOrder = { 703 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010341289] = { "Used when you kill a Rare or Unique enemy" }, } }, - ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 685 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4146282829] = { "Used when you become Cursed" }, } }, - ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(30-40)% increased Stun Threshold" }, } }, - ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-2.5)% of maximum Life per second" }, } }, - ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, - ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-50)% faster start of Energy Shield Recharge" }, } }, - ["BodyArmourImplicitEnergyShieldRate1"] = { affix = "", "(20-25)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-25)% increased Energy Shield Recharge Rate" }, } }, - ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, - ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (15-25)% reduced Critical Damage Bonus" }, } }, - ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(15-25)% of Armour also applies to Elemental Damage" }, } }, - ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-14)% of Damage taken Recouped as Life" }, } }, - ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(10-15)% reduced Elemental Ailment Duration on you" }, } }, - ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 951 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2251279027] = { "+1 to Level of all Corrupted Skill Gems" }, } }, - ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, - ["BodyArmourImplicitLocalMaximumWardUnique1"] = { affix = "", "+(750-1000) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(750-1000) to maximum Runic Ward" }, } }, - ["VerisiumHelmetImplicitIgniteMagnitudeUnique1"] = { affix = "", "(30-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-50)% increased Ignite Magnitude" }, } }, - ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 6% of Physical Damage as Life" }, } }, - ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7922 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, - ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1963 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7652 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, - ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (34-43) Life per enemy killed" }, } }, - ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7637 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, - ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, - ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-40)% increased Stun Buildup" }, } }, - ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, - ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, - ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7700 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, - ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7650 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, - ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10510 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["MaceImplicitWardUnique1"] = { affix = "", "+(100-150) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(100-150) to maximum Runic Ward" }, } }, - ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, - ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1720 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, - ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, - ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, - ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(14-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(14-18)% to Block chance" }, } }, - ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, - ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7815 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, - ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, - ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, - ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6550 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, - ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1041 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "(15-25)% chance to Blind Enemies on hit" }, } }, - ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, - ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1508 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 8 Mana per Enemy Hit" }, } }, - ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches 4% of Physical Damage as Mana" }, } }, - ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7615 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, - ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7624 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, - ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, - ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-18)% to Block chance" }, } }, - ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, - ["QuarterstaffImplicitRunicWard1"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-50) to maximum Runic Ward" }, } }, - ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7603 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, - ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9539 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, - ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1553 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, - ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6945 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7649 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, - ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(20-30)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+16 to Stun Threshold" }, } }, - ["BootsImplicitMovementSpeedVerisium1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["BootsImplicitMovementSpeedVerisium2"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1247628870] = { "Small Passive Skills in Radius also grant 1% increased maximum Mana" }, } }, - ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1809641701] = { "Small Passive Skills in Radius also grant 1% increased maximum Life" }, } }, - ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1316656343] = { "Small Passive Skills in Radius also grant +8 to maximum Life" }, } }, - ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1294464552] = { "Small Passive Skills in Radius also grant +8 to maximum Mana" }, } }, - ["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [3474941090] = { "Small Passive Skills in Radius also grant (4-6)% reduced Ignite Duration on you" }, } }, - ["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [860443350] = { "Small Passive Skills in Radius also grant (4-6)% reduced Freeze Duration on you" }, } }, - ["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 1066 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1627878766] = { "Small Passive Skills in Radius also grant (4-6)% reduced Shock duration on you" }, } }, - ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 1, tradeHashes = { [2948688907] = { "Small Passive Skills in Radius also grant +(2-4)% to Fire Resistance" }, } }, - ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 1, tradeHashes = { [2884937919] = { "Small Passive Skills in Radius also grant +(2-4)% to Cold Resistance" }, } }, - ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 1, tradeHashes = { [3994876825] = { "Small Passive Skills in Radius also grant +(2-4)% to Lightning Resistance" }, } }, - ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 1, tradeHashes = { [2264240911] = { "Small Passive Skills in Radius also grant +(2-3)% to Chaos Resistance" }, } }, - ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [4151994709] = { "Notable Passive Skills in Radius also grant +1% to Maximum Fire Resistance" }, } }, - ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [1862508014] = { "Notable Passive Skills in Radius also grant +1% to Maximum Cold Resistance" }, } }, - ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [2217513089] = { "Notable Passive Skills in Radius also grant +1% to Maximum Lightning Resistance" }, } }, - ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [1731760476] = { "Notable Passive Skills in Radius also grant +1% to Maximum Chaos Resistance" }, } }, - ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [1842384813] = { "Notable Passive Skills in Radius also grant (2-3)% increased Strength" }, } }, - ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [40618390] = { "Notable Passive Skills in Radius also grant (2-3)% increased Intelligence" }, } }, - ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [2717786748] = { "Notable Passive Skills in Radius also grant (2-3)% increased Dexterity" }, } }, - ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 895 }, level = 1, group = "JewelSpirit", weightKey = { }, weightVal = { }, modTags = { }, nodeType = 2, tradeHashes = { [3991877392] = { "Notable Passive Skills in Radius also grant +(8-12) to Spirit" }, } }, - ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHashes = { [338620903] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Fire Damage" }, } }, - ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHashes = { [833138896] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Cold Damage" }, } }, - ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHashes = { [852470634] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHashes = { [2603051299] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7757 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, - ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7750 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, - ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "-(20-10) to Strength" }, } }, - ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-15) to Strength" }, } }, - ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-10) to Strength" }, } }, - ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(0-10) to Strength" }, } }, - ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-30) to Strength" }, } }, - ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, - ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength40"] = { affix = "", "+(8-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-15) to Strength" }, } }, - ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength44"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength45"] = { affix = "", "+(20-30) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength46"] = { affix = "", "+(30-40) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["UniqueStrength47"] = { affix = "", "+(15-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, - ["UniqueStrength48"] = { affix = "", "+(7-14) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(7-14) to Strength" }, } }, - ["UniqueStrength49"] = { affix = "", "+(15-25) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(0-10) to Dexterity" }, } }, - ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-15) to Dexterity" }, } }, - ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity45"] = { affix = "", "+(13-23) to Dexterity", statOrder = { 993 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-23) to Dexterity" }, } }, - ["UniqueDexterity46"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity47"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, - ["UniqueDexterity48"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, - ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(0-10) to Intelligence" }, } }, - ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, - ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence44"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, - ["UniqueIntelligence45"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, - ["UniqueIntelligence46"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence47"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence48"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence49"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence50"] = { affix = "", "+(25-35) to Intelligence", statOrder = { 994 }, level = 69, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-35) to Intelligence" }, } }, - ["UniqueIntelligence51"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 69, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueStrengthAndIntelligence1"] = { affix = "", "+(10-20) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-20) to Strength and Intelligence" }, } }, - ["UniqueStrengthAndIntelligence2"] = { affix = "", "+(20-30) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(20-30) to Strength and Intelligence" }, } }, - ["UniqueStrengthAndIntelligence3"] = { affix = "", "+(15-25) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(15-25) to Strength and Intelligence" }, } }, - ["UniqueStrengthAndIntelligence4"] = { affix = "", "+(10-20) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-20) to Strength and Intelligence" }, } }, - ["UniqueStrengthAndDexterity1"] = { affix = "", "+(10-20) to Strength and Dexterity", statOrder = { 995 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(10-20) to Strength and Dexterity" }, } }, - ["UniqueDexterityAndIntelligence1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 997 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, - ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(50-100) to all Attributes" }, } }, - ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 991 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["UniqueAllAttributes18"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["UniqueAllAttributes19"] = { affix = "", "+(6-12) to all Attributes", statOrder = { 991 }, level = 78, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-12) to all Attributes" }, } }, - ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(20-10)% to Fire Resistance" }, } }, - ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(0-10)% to Fire Resistance" }, } }, - ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(15-10)% to Fire Resistance" }, } }, - ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, - ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-40-40)% to Fire Resistance" }, } }, - ["UniqueFireResist25"] = { affix = "", "+(50-100)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-100)% to Fire Resistance" }, } }, - ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, - ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(20-10)% to Cold Resistance" }, } }, - ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, - ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, - ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, - ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(0-10)% to Cold Resistance" }, } }, - ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, - ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, - ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-40-40)% to Cold Resistance" }, } }, - ["UniqueColdResist21"] = { affix = "", "+(50-100)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-100)% to Cold Resistance" }, } }, - ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(15-10)% to Cold Resistance" }, } }, - ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-10% to Cold Resistance" }, } }, - ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-15% to Cold Resistance" }, } }, - ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, - ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist35"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["UniqueColdResist36"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, - ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(0-10)% to Lightning Resistance" }, } }, - ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(40-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-40-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 1023 }, level = 69, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-100)% to Lightning Resistance" }, } }, - ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, - ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-33)% to Lightning Resistance" }, } }, - ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-30% to all Elemental Resistances" }, } }, - ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-(20-5)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-40)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances27"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances28"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances29"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-37)% to Chaos Resistance" }, } }, - ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(23-3)% to Chaos Resistance" }, } }, - ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-17% to Chaos Resistance" }, } }, - ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+13% to Chaos Resistance" }, } }, - ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, - ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, - ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1500 to maximum Life" }, } }, - ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-30) to maximum Life" }, } }, - ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+300 to maximum Life" }, } }, - ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-150) to maximum Life" }, } }, - ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 887 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-80) to maximum Life" }, } }, - ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife51"] = { affix = "", "+(120-200) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-200) to maximum Life" }, } }, - ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, - ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife55"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife56"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["UniqueIncreasedLife57"] = { affix = "", "+(70-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-120) to maximum Life" }, } }, - ["UniqueIncreasedLife58"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife59"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife62"] = { affix = "", "+(75-125) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-125) to maximum Life" }, } }, - ["UniqueChanceToAvoidProjectiles1"] = { affix = "", "33% chance to avoid Projectiles", statOrder = { 4654 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "33% chance to avoid Projectiles" }, } }, - ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(20-30)% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease4"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 889 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease8"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, - ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["UniqueIncreasedMana2BigRange"] = { affix = "", "+(-10-40) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(-10-40) to maximum Mana" }, } }, - ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(0-20) to maximum Mana" }, } }, - ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-150) to maximum Mana" }, } }, - ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-90) to maximum Mana" }, } }, - ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-45) to maximum Mana" }, } }, - ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, - ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 892 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["UniqueIncreasedMana53"] = { affix = "", "+(300-400) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(300-400) to maximum Mana" }, } }, - ["UniqueIncreasedMana54"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueMaximumManaIncrease1"] = { affix = "", "(10-15)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } }, - ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, - ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, - ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 881 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 881 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 881 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 881 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(150-200) to Armour" }, } }, - ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(75-125) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(40-50) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+100 to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 883 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-600) to Evasion Rating" }, } }, - ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, - ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-50)% increased Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(30-50)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-50)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(0-40) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(40-60) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(15-25) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(50-70) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+20 to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating6"] = { affix = "", "+(100-150) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(50-70) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(0-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(15-25) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+100 to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(0-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 843 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-120) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 843 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield18"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 841, 843 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(60-100) to Evasion Rating" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(20-25) to Evasion Rating" }, [4052037485] = { "+(10-15) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(500-600)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(500-600)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-60)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-50)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(150-200)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(400-500)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-160)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(300-400)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(300-400)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(200-300)% increased Armour", statOrder = { 846 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent31"] = { affix = "", "(350-450)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-450)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent32"] = { affix = "", "(150-200)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "50% reduced Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-140)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(250-300)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(250-300)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(70-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-300)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-200)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent34"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent35"] = { affix = "", "(210-240)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(210-240)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-300)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(30-50)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-200)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(70-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent27"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent28"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(30-50)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(20-30)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-70)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 850 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(300-450)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-450)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "50% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(600-800)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion32"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion33"] = { affix = "", "(150-250)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-250)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion34"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, - ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10669 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-60)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-60)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(333-666)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(240-340)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-340)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield27"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield28"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield29"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield30"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-60)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(50-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(40-60)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-120)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-100)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(50-70)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(1-111)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield20"] = { affix = "", "(200-300)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-300)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(300-400)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(300-400)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(150-200)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(150-200)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(200-250)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(200-250)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements6"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(40-60) to Stun Threshold" }, } }, - ["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(30-50) to Stun Threshold" }, } }, - ["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, - ["UniqueStunThreshold4"] = { affix = "", "+(75-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(75-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold5"] = { affix = "", "+(50-70) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(50-70) to Stun Threshold" }, } }, - ["UniqueStunThreshold6"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, - ["UniqueStunThreshold7"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold8"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold9"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold10"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold11"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold12"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, - ["UniqueStunThreshold13"] = { affix = "", "+2500 to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+2500 to Stun Threshold" }, } }, - ["UniqueStunThreshold14"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, - ["UniqueStunThreshold15"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold16"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, - ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, - ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity17"] = { affix = "", "(15-20)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-30)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity26"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity29"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5315 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, - ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, - ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds (1-4) to (8-12) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-4) to (8-12) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage1BigRange"] = { affix = "", "Adds (0-5) to (6-18) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (0-5) to (6-18) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (8-10) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (5-6) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-16) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (13-17) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage9"] = { affix = "", "Adds (20-28) to (34-42) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (20-28) to (34-42) Physical Damage to Attacks" }, } }, - ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 859 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 860 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-5) to (6-8) Cold damage to Attacks" }, } }, - ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 860 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 860 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (13-20) to (21-31) Cold damage to Attacks" }, } }, - ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 861 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, - ["UniqueAddedLightningDamage2"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 861 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-100) Lightning damage to Attacks" }, } }, - ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 861 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, - ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1288 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (4-6) to (8-10) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1288 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-19) to (20-30) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1288 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-8) to (10-12) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage4"] = { affix = "", "Adds (35-44) to (50-62) Chaos Damage to Attacks", statOrder = { 1288 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (35-44) to (50-62) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage5"] = { affix = "", "Adds (19-23) to (31-37) Chaos Damage to Attacks", statOrder = { 1288 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (19-23) to (31-37) Chaos Damage to Attacks" }, } }, - ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-10) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-18) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (6-8) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-20) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-14) to (16-20) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (8-10) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-15) to (22-25) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (24-28) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-15) to (22-25) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (58-65) to (102-110) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-36) to (75-81) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-48) to (65-72) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (40-50) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-15) to (18-24) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (39-48) to (69-79) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-26) to (25-31) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (22-28) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-26) to (27-32) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-18) to (30-36) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (21-26) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-52) to (71-82) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-30) to (35-55) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-47) to (53-79) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage27"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, - ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (33-41) to (47-53) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (8-10) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-32) to (40-50) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (15-21) to (26-32) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (126-193) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (71-93) to (107-168) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage7"] = { affix = "", "Adds (503-589) to (647-713) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (503-589) to (647-713) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage8"] = { affix = "", "Adds (83-97) to (123-153) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (83-97) to (123-153) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage9"] = { affix = "", "Adds (48-59) to (75-97) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (48-59) to (75-97) Fire Damage" }, } }, - ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (15-18) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (16-20) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-16) to (22-25) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (13-15) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-15) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-18) to (24-29) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage7"] = { affix = "", "Adds (24-31) to (36-46) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (24-31) to (36-46) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage8"] = { affix = "", "Adds (35-53) to (65-80) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-53) to (65-80) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage9"] = { affix = "", "Adds (150-200) to (350-400) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (350-400) Cold Damage" }, } }, - ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (80-120) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-45) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-55) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-80) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (19-29) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (300-500) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (300-500) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (43-67) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (43-67) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage8"] = { affix = "", "Adds 1 to (193-207) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (193-207) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage9"] = { affix = "", "Adds (1-5) to (66-90) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-5) to (66-90) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage10"] = { affix = "", "Adds 1 to (110-115) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (110-115) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage11"] = { affix = "", "Adds 1 to (200-300) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (200-300) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage12"] = { affix = "", "Adds (1-8) to (123-152) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (123-152) Lightning Damage" }, } }, - ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (25-36) to (44-55) Chaos damage" }, } }, - ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (167-201) to (267-333) Chaos damage" }, } }, - ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 908 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage" }, } }, - ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 909 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage" }, } }, - ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 910 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage" }, } }, - ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-20)% increased Global Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-160)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-200)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-240)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(600-700)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(70-100)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(90-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent21"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-250)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent22"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-100)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent23"] = { affix = "", "(60-90)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-90)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent24"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent25"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent26"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent27"] = { affix = "", "(240-300)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(240-300)% increased Physical Damage" }, } }, - ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal 50% increased Damage" }, } }, - ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon9"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon10"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon11"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon12"] = { affix = "", "(71-113)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(71-113)% increased Spell Damage" }, } }, - ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(80-120)% increased Fire Damage" }, } }, - ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(80-120)% increased Cold Damage" }, } }, - ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-120)% increased Lightning Damage" }, } }, - ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-3) to Level of all Spell Skills" }, } }, - ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(1-4) to Level of all Fire Skills" }, } }, - ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 962 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, } }, - ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 962 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+(2-4) to Level of all Lightning Skills" }, } }, - ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 957 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2901213448] = { "+(2-4) to Level of all Elemental Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel3"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, - ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 971 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [805298720] = { "+(1-2) to Level of all Curse Skills" }, } }, - ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, - ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(7-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(0-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(20-25) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-25) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6-10) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(30-60) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(5-10) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(25-35) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-30) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "5 Life Regeneration per second" }, } }, - ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "100% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration8"] = { affix = "", "(50-100)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-100)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% reduced Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "25% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "40% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(-30-30)% reduced Mana Regeneration Rate" }, } }, - ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 5% of Physical Attack Damage as Life" }, } }, - ["UniqueLifeLeech2"] = { affix = "", "Leech 10% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 10% of Physical Attack Damage as Life" }, } }, - ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-8)% of Physical Damage as Life" }, } }, - ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 10% of Physical Damage as Life" }, } }, - ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (10-20)% of Physical Damage as Life" }, } }, - ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-7)% of Physical Damage as Mana" }, } }, - ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 3 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-15) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 30 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-10) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose 10 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (30-50) Life per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Lose 3 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-10) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (12-18) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 5 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 1040 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 25 Life per Enemy Hit with Attacks" }, } }, - ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1040 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1507 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 15 Mana per Enemy Hit with Attacks" }, } }, - ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-6)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-11)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "35% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed15"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed16"] = { affix = "", "(7-17)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-17)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(30-40)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-16)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed24"] = { affix = "", "(7-13)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-13)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed25"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed26"] = { affix = "", "(15-20)% reduced Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed27"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed28"] = { affix = "", "(14-22)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-22)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed29"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed30"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed31"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed32"] = { affix = "", "(12-22)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-22)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed33"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (10-20)% increased Attack Speed" }, } }, - ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed2BigRange"] = { affix = "", "(-15-15)% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(-15-15)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 987 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-8)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-30)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed21"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed22"] = { affix = "", "(8-16)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-16)% increased Cast Speed" }, } }, - ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy1BigRange"] = { affix = "", "+(-200-400) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(-200-400) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(0-60) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(60-100) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-200) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-400) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-600) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-(300-200) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-70) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-100) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 835 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-500) to Accuracy Rating" }, } }, - ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(0-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-35)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(100-200)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance16"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 69, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+15% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-10)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-6)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-7)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance10"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance11"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance12"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-6)% to Critical Hit Chance" }, } }, - ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-40)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 916 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-30)% increased Critical Hit Chance" }, } }, - ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 916 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-15)% increased Critical Damage Bonus" }, } }, - ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-25)% to Critical Damage Bonus" }, } }, - ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-30)% to Critical Damage Bonus" }, } }, - ["UniqueLocalCriticalMultiplier3"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-30)% to Critical Damage Bonus" }, } }, - ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-50)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-30)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-50)% increased Critical Damage Bonus" }, } }, - ["UniqueSpellCriticalStrikeMultiplierPerSpellCritRecently1"] = { affix = "", "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", statOrder = { 983 }, level = 1, group = "SpellCriticalStrikeMultiplierPerSpellCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [2972244965] = { "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, - ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease6BigRange"] = { affix = "", "(-20-20)% reduced Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-20-20)% reduced Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(0-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-25-25)% reduced Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius4"] = { affix = "", "20% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["UniqueLightRadius5"] = { affix = "", "40% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["UniqueLightRadius6"] = { affix = "", "25% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius7"] = { affix = "", "30% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius8"] = { affix = "", "30% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius9"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius10"] = { affix = "", "30% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius11"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius12"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["UniqueLightRadius13"] = { affix = "", "30% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius14"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius15"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius16"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["UniqueLightRadius17"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% reduced Light Radius" }, } }, - ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1070 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "23% reduced Light Radius" }, } }, - ["UniqueLightRadius21"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 1070 }, level = 69, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, - ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(80-100)% increased Block chance" }, } }, - ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-20)% increased Block chance" }, } }, - ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-25)% increased Block chance" }, } }, - ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(30-50)% increased Block chance" }, } }, - ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "30% reduced Block chance" }, } }, - ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueLocalBlockChance15"] = { affix = "", "(10-20)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-20)% increased Block chance" }, } }, - ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, - ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, - ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+30 to Spirit" }, } }, - ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(25-35) to Spirit" }, } }, - ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(0-20) to Spirit" }, } }, - ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-40) to Spirit" }, } }, - ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-40) to Spirit" }, } }, - ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-50) to Spirit" }, } }, - ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-30) to Spirit" }, } }, - ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(100-150) to Spirit" }, } }, - ["UniqueIncreasedSpirit14"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit15"] = { affix = "", "+75 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+75 to Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(25-35)% increased Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent4"] = { affix = "", "(50-75)% increased Spirit", statOrder = { 857 }, level = 78, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(50-75)% increased Spirit" }, } }, - ["UniqueIncreasedMaximumSpiritPercent1"] = { affix = "", "(10-15)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(10-15)% increased Spirit" }, } }, - ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, - ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, - ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 1066 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(30-50)% reduced Shock duration on you" }, } }, - ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% reduced Chill Duration on you" }, } }, - ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(30-50)% reduced Freeze Duration on you" }, } }, - ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "15% additional Physical Damage Reduction" }, } }, - ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, - ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, - ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, - ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to Maximum Lightning Resistance" }, } }, - ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "-(5-1)% to all Maximum Elemental Resistances" }, } }, - ["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-30)% reduced Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate4"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate5"] = { affix = "", "(50-100)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(50-100)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "1000% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate8"] = { affix = "", "(15-30)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-30)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(15-25)% chance to Pierce an Enemy" }, } }, - ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 3 additional Arrows" }, } }, - ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2580 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2720781168] = { "Attack Projectiles Return if they Pierced at least (2-4) times" }, } }, - ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9564 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, - ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9554 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, - ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(30-50)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(40-60)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% reduced Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(-25-25)% reduced Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(15-35)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(40-60)% increased Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(-25-25)% reduced Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "50% increased Flask Charges used" }, } }, - ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, - ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5606 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, - ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5606 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, - ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(0-2) Charm Slot" }, } }, - ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(1-2) Charm Slot" }, } }, - ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "50% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(30-50)% increased Flammability Magnitude" }, } }, - ["UniqueFreezeDamageIncrease1"] = { affix = "", "30% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "30% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(40-50)% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(30-50)% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease4"] = { affix = "", "(20-40)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-40)% increased chance to Shock" }, } }, - ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 1054 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [748522257] = { "(10-20)% increased Stun Duration" }, } }, - ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(30-50)% increased Stun Buildup" }, } }, - ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(20-30)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (150-200)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, - ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8920 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, - ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, - ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, - ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, } }, - ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% reduced Cold Damage" }, } }, - ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(15-30)% increased Elemental Damage" }, } }, - ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "100% increased Elemental Damage" }, } }, - ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(40-60)% increased Projectile Speed" }, } }, - ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(5-30)% of Damage taken Recouped as Life" }, } }, - ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "50% of Damage taken Recouped as Mana" }, } }, - ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-30)% of Damage taken Recouped as Mana" }, } }, - ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 69, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (40-60)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain 25% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (30-50)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain 25% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageGainedAsCold2"] = { affix = "", "Gain (10-20)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (10-20)% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain 25% of Damage as Extra Lightning Damage" }, } }, - ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain 27% of Damage as Extra Chaos Damage" }, } }, - ["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, - ["UniquePresenceRadius4"] = { affix = "", "(30-40)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(30-40)% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius5"] = { affix = "", "(60-80)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(60-80)% increased Presence Area of Effect" }, } }, - ["UniquePresenceRadius6"] = { affix = "", "(20-40)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-40)% reduced Presence Area of Effect" }, } }, - ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 968 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1202301673] = { "+(1-2) to Level of all Projectile Skills" }, } }, - ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(1-2) to Level of all Melee Skills" }, } }, - ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1903 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2609822974] = { "Curses you inflict have infinite Duration" }, } }, - ["UniqueCurseAreaOfEffect1"] = { affix = "", "(20-30)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(20-30)% increased Area of Effect of Curses" }, } }, - ["UniqueReducedCurseEffectOnYou1"] = { affix = "", "(30-50)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(30-50)% reduced effect of Curses on you" }, } }, - ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, - ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 50% reduced maximum Life" }, } }, - ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, - ["UniqueMinionDamage3"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, - ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, - ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1072 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, - ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, - ["UniqueFlaskExtraCharges2"] = { affix = "", "(50-60)% reduced Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(50-60)% reduced Charges" }, } }, - ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1073 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(100-150)% increased Charges per use" }, } }, - ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1073 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-15)% reduced Charges per use" }, } }, - ["UniqueFlaskChargesUsed3"] = { affix = "", "(50-75)% reduced Charges per use", statOrder = { 1073 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(50-75)% reduced Charges per use" }, } }, - ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 936 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "" }, } }, - ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1071 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 618 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1873752457] = { "Gains (0.15-0.2) Charges per Second" }, } }, - ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(15-25)% increased Duration" }, } }, - ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(10-20)% increased Duration" }, } }, - ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-50)% reduced Charm Effect Duration" }, } }, - ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6202 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, - ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, - ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 1% of maximum Life on Kill" }, } }, - ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (2-4)% of maximum Life on Kill" }, } }, - ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 1% of maximum Mana on Kill" }, } }, - ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10259 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, - ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10258 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, - ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 2200 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, - ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7606 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7613 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, - ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, - ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4534 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, - ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10668, 10668.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, - ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3980 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2356156926] = { "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life" }, } }, - ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3981 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [65133983] = { "Drop Shocked Ground while moving, lasting 8 seconds" }, } }, - ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5546 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, - ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10060 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, - ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "25% increased Block chance" }, } }, - ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "(10-15)% increased Block chance" }, } }, - ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+(5-10)% to maximum Block chance" }, } }, - ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-(20-10)% to maximum Block chance" }, } }, - ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7459 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, - ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1552 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(50-100)% increased Arrow Speed" }, } }, - ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2240 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "40% less Attack Damage" }, } }, - ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6449 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, - ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2261 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, - ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["UniqueCursesSpreadOnKill1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6773 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, - ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7186 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, - ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6644 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, - ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7943 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, - ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7940 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, - ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5485 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, - ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10432 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, - ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10433 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, - ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(100-150)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2911 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4112450013] = { "Moving while Bleeding doesn't cause you to take extra damage" }, } }, - ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2572 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6729, 6729.1, 6729.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, - ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9489 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, - ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4141 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, - ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10534 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, - ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["UniqueAdditionalGemQuality1"] = { affix = "", "+(2-5)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(2-5)% to Quality of all Skills" }, } }, - ["UniqueAdditionalGemQuality1BigRange"] = { affix = "", "+(0-7)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(0-7)% to Quality of all Skills" }, } }, - ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (75-80)%" }, } }, - ["UniqueMaximumResistancesOverride1BigRange"] = { affix = "", "Your Maximum Resistances are (50-82)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (50-82)%" }, } }, - ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueLoreweaveBlackheart2"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, - ["UniqueLoreweaveBlackheart2BigRange"] = { affix = "", "+(0-30)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(0-30)% of Armour also applies to Chaos Damage" }, } }, - ["UniqueLoreweaveIcefang1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, - ["UniqueLoreweaveIcefang2"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4279 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, - ["UniqueLoreweaveVenopuncture1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, - ["UniqueLoreweaveVenopuncture2"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4278 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLoreweaveDoedres1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["UniqueLoreweaveCracklecreep1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, - ["UniqueLoreweaveBlisteringBond1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4807 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, - ["UniqueLoreweaveBlisteringBond3"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueLoreweaveDreamFragments1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["UniqueLoreweaveWhisperBrotherhood1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, - ["UniqueLoreweaveCallBrotherhood1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, - ["UniqueLoreweaveMingsHeart1"] = { affix = "", "Gain (10-15)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (10-15)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveMingsHeart1BigRange"] = { affix = "", "Gain (0-25)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (0-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveBlackflameIgniteDealsChaosDamageInstead1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6396 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, - ["UniqueLoreweaveBlackflameWitherAlsoIncreasesFireDamage1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, - ["UniqueLoreweaveDeathRush1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6407 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, - ["UniqueLoreweaveThiefsTorment1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["UniqueLoreweaveThiefsTorment1BigRange"] = { affix = "", "(-100-100)% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "(-100-100)% reduced Duration of Curses on you" }, } }, - ["UniqueLoreweaveEvergrasping1"] = { affix = "", "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveEvergrasping1BigRange"] = { affix = "", "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9567 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, - ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9321 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, - ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9566 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["UniqueLoreweaveHeartbound1"] = { affix = "", "(200-300) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(200-300) Physical Damage taken on Minion Death" }, } }, - ["UniqueLoreweaveHeartbound1BigRange"] = { affix = "", "(1-1000) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(1-1000) Physical Damage taken on Minion Death" }, } }, - ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, - ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6895 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7565 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, - ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6345 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueLoreweaveAndvarius1"] = { affix = "", "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRing"] = { affix = "", "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueLoreweaveAndvarius1BigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRingBigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueLoreweaveBurstingDecay1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, - ["UniqueLoreweaveBurstingDecay1BigRange"] = { affix = "", "Attacks have added Physical damage equal to (0-5)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (0-5)% of maximum Life" }, } }, - ["UniqueLoreweaveKulemak1"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, - ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6745 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6824 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, - ["UniqueLoreweaveVeilpiercer1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6773 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, - ["UniqueLoreweaveVeilpiercer3"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueLoreweaveSekhemasResolveFire1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveFire1BigRange"] = { affix = "", "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveLightning1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1017 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveLightning1BigRange"] = { affix = "", "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1017 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveCold1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1019 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveCold1BigRange"] = { affix = "", "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1019 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, - ["UniqueLoreweaveSekhemasResolveRuby1"] = { affix = "", "You can only Socket 1 Ruby Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionRuby", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Ruby Jewel in this item" }, } }, - ["UniqueLoreweaveSekhemasResolveEmerald1"] = { affix = "", "You can only Socket 1 Emerald Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionEmerald", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Emerald Jewel in this item" }, } }, - ["UniqueLoreweaveSekhemasResolveSapphire1"] = { affix = "", "You can only Socket 1 Sapphire Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionSapphire", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Sapphire Jewel in this item" }, } }, - ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10542, 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, - ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9239 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, - ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, - ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5910 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, - ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4177 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, - ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10398, 10398.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, - ["UniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "1% more Unarmed Damage per 5 Strength", statOrder = { 2188 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3452816629] = { "1% more Unarmed Damage per 5 Strength" }, } }, - ["UniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverride", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1955786041] = { "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken" }, } }, - ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6764 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, - ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, - ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6876 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, - ["UniqueIgniteDuration1"] = { affix = "", "(60-75)% reduced Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(60-75)% reduced Ignite Duration on Enemies" }, } }, - ["UniqueIgniteEffect1"] = { affix = "", "(80-100)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(80-100)% increased Ignite Magnitude" }, } }, - ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, - ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, - ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10757 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, - ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6396 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, - ["UniqueWitherInflictedAlsoIncreasesFireDamageTaken1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, - ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5964 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, - ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-50)% increased Damage" }, } }, - ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4710 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, - ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9361 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, - ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9654 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, - ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5764 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, - ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9945 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, - ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6509 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, - ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1555 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7609 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, - ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7610 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, - ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7608 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, - ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7651 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, - ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2244 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 100% increased Damage" }, } }, - ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3839 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "20% less Damage taken if you have not been Hit Recently" }, } }, - ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3840 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10385 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, - ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1467 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, - ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2651 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 6 seconds after being Chilled" }, } }, - ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2653 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 6 seconds after being Frozen" }, } }, - ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2654 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 6 seconds after being Ignited" }, } }, - ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2655 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 6 seconds after being Shocked" }, } }, - ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5942 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, - ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, - ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% reduced Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(5-10)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(15-30)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9823 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, - ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9376 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, - ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6095 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, - ["UniqueOtherModifiersToRarityDoNotApply1"] = { affix = "", "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 943, 943.1 }, level = 1, group = "GraveBindRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1602191394] = { "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4272 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, - ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4169 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, - ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+10% to Block chance" }, } }, - ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(15-25)% to Block chance" }, } }, - ["UniqueBlockPercent3"] = { affix = "", "+12% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+12% to Block chance" }, } }, - ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1971 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-10 Physical damage taken from Projectile Attacks" }, } }, - ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "20% reduced Mana Cost of Skills" }, } }, - ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "10% increased Mana Cost of Skills" }, } }, - ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4714 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, - ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10117 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, - ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, - ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(8-15)% increased Area of Effect" }, } }, - ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-30)% increased Strength" }, } }, - ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, - ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "10% reduced Dexterity" }, } }, - ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, - ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "10% reduced Intelligence" }, } }, - ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7261 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, - ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(35-50)% reduced Effect of Chill on you" }, } }, - ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, - ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10263 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, - ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7687 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, - ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7738 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, - ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9132 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, - ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7239 }, level = 69, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, - ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6932 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, - ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6785 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, - ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10400 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, - ["UniqueMinionChanceToApplyGruelingMadness1"] = { affix = "", "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", statOrder = { 2901 }, level = 1, group = "MinionChanceToApplyGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1486714289] = { "Minions have (10-20)% chance to inflict Gruelling Madness on Hit" }, } }, - ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6360 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, - ["UniqueDeflectChanceLuckyOnLowLife1"] = { affix = "", "Chance to Deflect is Lucky while on Low Life", statOrder = { 1031 }, level = 1, group = "DeflectChanceLuckyOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1675120891] = { "Chance to Deflect is Lucky while on Low Life" }, } }, - ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5670 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, - ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5931 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, - ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9306 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, - ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9307 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, - ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8033 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, - ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7451 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, - ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10415 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, - ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7626 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, - ["UniqueElementalDamageFromHitsContributesToCoreEleAilments1"] = { affix = "", "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2626 }, level = 1, group = "ElementalDamageContributesToCoreEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2678924815] = { "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance" }, } }, - ["UniquePhysicalDamageFromHitsContributesToChillAndFreeze1"] = { affix = "", "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", statOrder = { 2641 }, level = 1, group = "PhysicalDamageFromHitsContributesToChillAndFreeze", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [905072977] = { "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup" }, } }, - ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10670 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, - ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6355 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4802 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, - ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9966 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, - ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 10039 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, - ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 952 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2061237517] = { "+(3-5) to Level of all Corrupted Spell Skill Gems" }, } }, - ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9374 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, - ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.5% of maximum Life per second per Endurance Charge" }, } }, - ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, - ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "12% increased Critical Damage Bonus per Power Charge" }, } }, - ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2319 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, - ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(10-20)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 10037 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, - ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9327 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9791 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, - ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6100 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, - ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-10 Physical Damage taken from Attack Hits" }, } }, - ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, - ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1762 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4187571952] = { "Gain no inherent bonus from Intelligence" }, } }, - ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2020 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4059, 4060, 4061, 4062, 6870 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, - ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "30% slower start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "100% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5646 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, - ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9451 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3422 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1419390131] = { "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently" }, } }, - ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, - ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, - ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7231 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, - ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9310, 9310.1, 9310.2, 9310.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, - ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10392 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, - ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9741 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, - ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9769 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, - ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2591 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2607 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, - ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(100-200)% increased amount of Life Leeched" }, } }, - ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1158 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2423248184] = { "(30-40)% less minimum Physical Attack Damage" }, } }, - ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1157 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3735888493] = { "(30-40)% more maximum Physical Attack Damage" }, } }, - ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% reduced Attribute Requirements" }, } }, - ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% increased Attribute Requirements" }, } }, - ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2332 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4245256219] = { "Skill Gems have no Attribute Requirements" }, } }, - ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2331 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480151124] = { "Equipment has no Attribute Requirements" }, } }, - ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9428 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, - ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7379 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, - ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3278 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Hit" }, } }, - ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "50% increased Strength Requirement" }, } }, - ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10081 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, - ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 617 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2980117882] = { "This Flask cannot be Used but applies its Effect constantly" }, } }, - ["UniqueCannotDrinkFlaskManually1"] = { affix = "", "Cannot be Used manually", statOrder = { 684 }, level = 1, group = "CannotDrinkFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1237409891] = { "Cannot be Used manually" }, } }, - ["UniqueFlaskUsedOnPerfectTiming1"] = { affix = "", "Used when you release a skill with Perfect Timing", statOrder = { 705 }, level = 1, group = "FlaskUseOnPerfectTiming", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3832076641] = { "Used when you release a skill with Perfect Timing" }, } }, - ["UniquePerfectTimingWindowDuringFlaskEffect1"] = { affix = "", "Skills have (80-120)% longer Perfect Timing window during effect", statOrder = { 748 }, level = 1, group = "PerfectTimingWindowDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3982604001] = { "Skills have (80-120)% longer Perfect Timing window during effect" }, } }, - ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7839 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, - ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7841 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, - ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5487 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, - ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9148 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, - ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3136 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "minion_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7695 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, - ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7616 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, - ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4412 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, - ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7618 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, - ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, } }, - ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7828 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, - ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10656 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, - ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10644 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, - ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10562 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, - ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4735 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, - ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9375 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, - ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9214 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, - ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7614 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, - ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7612 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, - ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 924 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4287671144] = { "50% of your Base Life Regeneration is granted to Allies in your Presence" }, } }, - ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10389, 10389.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, - ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2977 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8845 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, - ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10625 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, - ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6698 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, - ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4559 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, - ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2610 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" }, } }, - ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2611 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" }, } }, - ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2612 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance" }, } }, - ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4746 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4746 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4711 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, - ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2217 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["UniqueLightningDamageTakenAsCold1"] = { affix = "", "(10-20)% of Lightning damage taken as Cold damage", statOrder = { 2229 }, level = 1, group = "LightningHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198708642] = { "(10-20)% of Lightning damage taken as Cold damage" }, } }, - ["UniqueFireDamageTakenAsCold1"] = { affix = "", "(10-20)% of Fire damage taken as Cold damage", statOrder = { 2224 }, level = 1, group = "FireHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108426433] = { "(10-20)% of Fire damage taken as Cold damage" }, } }, - ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5870 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, - ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5838 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, - ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7259 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, - ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1933 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, - ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 1460 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93764325] = { "Damage cannot bypass Energy Shield" }, } }, - ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4247 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, - ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4695 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, - ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6774 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, - ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, - ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4239 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, - ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7462 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, - ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8907 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, - ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9560 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, - ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1589 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, - ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3284 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching maximum Power Charges" }, } }, - ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3285 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach maximum Power Charges" }, } }, - ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 9001 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, - ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2191 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2685246061] = { "Reserves 15% of Life" }, } }, - ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2215 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "20% of Elemental damage from Hits taken as Chaos damage" }, } }, - ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3074 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, - ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "25% reduced Endurance Charge Duration" }, } }, - ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9666 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, - ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5914 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, - ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9937 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, - ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, - ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1015 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 10018 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, - ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7473 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, - ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "50% of Damage is taken from Mana before Life" }, } }, - ["UniqueDamageRemovedFromManaBeforeLife2"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["UniqueDamageRemovedFromManaBeforeLife3"] = { affix = "", "100% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "100% of Damage is taken from Mana before Life" }, } }, - ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2259 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2257 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, - ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4278 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4279 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, - ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, - ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, - ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4650 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, - ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7563 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, - ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6366 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, - ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(30-50)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8834 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, - ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7437 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, - ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7454 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7436 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, - ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10399 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, - ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10397 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, - ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, - ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, - ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6805 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, - ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8874 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, - ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10754 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, - ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, - ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10650 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10650 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2792 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover 4% of maximum Life when you Block" }, } }, - ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6389 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, - ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10420 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, - ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9152, 9152.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, - ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7438 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7980 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, - ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (5-10)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (5-10)% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (30-40)% of Damage as Extra Chaos Damage" }, } }, - ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 1290 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHashes = { [261503687] = { "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage" }, } }, - ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6338 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "300 Physical Damage taken on Minion Death" }, } }, - ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10396 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, - ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4296 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, - ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 1060 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "200% increased Stun Recovery" }, } }, - ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2458 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3811649872] = { "Increases and Reductions to Spell damage also apply to Attacks" }, } }, - ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4713 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, - ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% reduced Totem Life" }, } }, - ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1978 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5780 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, - ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-30)% increased Warcry Speed" }, } }, - ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10514 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, - ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "25% increased Totem Placement speed" }, } }, - ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3460 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1395 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-150)% to Melee Critical Damage Bonus" }, } }, - ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1960 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-30 Physical Damage taken from Hits" }, } }, - ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6874 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, - ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9621 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, - ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "30% reduced Global Armour, Evasion and Energy Shield" }, } }, - ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "unmutatable", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7491 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, - ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9117 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, - ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6079 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, - ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6735, 6735.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, - ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 4092 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, - ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, - ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, - ["UniqueGlobalCooldownRecovery2"] = { affix = "", "(20-40)% reduced Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-40)% reduced Cooldown Recovery Rate" }, } }, - ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3977 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, - ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3428 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, - ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5952 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, - ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "40% increased Mana Regeneration Rate while stationary" }, } }, - ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (10-15)% of maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "10% of Damage taken bypasses Energy Shield" }, } }, - ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6432 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, - ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7455 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, - ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10417, 10417.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, - ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, - ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, - ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, - ["UniqueNoCriticalStrikeMultiplier2"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 1, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, - ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, - ["UniqueLocalNoCriticalStrikeMultiplier2"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, - ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6863, 6863.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, - ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, - ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, - ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10626 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, - ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 2184, 2184.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2224139044] = { "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted" }, } }, - ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6415 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, - ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "30% reduced Reload Speed" }, } }, - ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(7-14)% increased Reload Speed" }, } }, - ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5904, 5904.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, - ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10428 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, - ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3466 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7565 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, - ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "-15 Strength Requirement" }, } }, - ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, - ["UniqueStrengthRequirements4"] = { affix = "", "+25 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+25 Strength Requirement" }, } }, - ["UniqueStrengthRequirements5"] = { affix = "", "+150 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, - ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 818 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+50 Dexterity Requirement" }, } }, - ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+100 Intelligence Requirement" }, } }, - ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7689 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, - ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7692 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, - ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7691 }, level = 69, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, - ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 73 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4031148736] = { "You can only Socket Ruby Jewels in this item" }, } }, - ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 74 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3598729471] = { "You can only Socket Emerald Jewels in this item" }, } }, - ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 75 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [21302430] = { "You can only Socket Sapphire Jewels in this item" }, } }, - ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6587 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, - ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5704 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, - ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7562 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, - ["UniqueColdAndLightningResPerFireResItem1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, - ["UniqueFireAndColdResPerLightningResItem1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1017 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, - ["UniqueFireAndLightningRestPerColdResItem1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1019 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, - ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7690 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, - ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7688 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, - ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6578 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6200 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, - ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6203 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, - ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 4090, 4091 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350232544] = { "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently" }, [57896763] = { "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently" }, } }, - ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6506 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, - ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3144 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1094937621] = { "Critical Hits ignore Enemy Monster Elemental Resistances" }, } }, - ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5518 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, - ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 14 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, - ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of Charges consumed by used Charms are granted to your Life Flasks", statOrder = { 903 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2369960685] = { "50% of Charges consumed by used Charms are granted to your Life Flasks" }, } }, - ["UniqueLifeFlaskChargesToCharms1"] = { affix = "", "50% of Charges consumed by used Life Flasks are granted to your Charms", statOrder = { 904 }, level = 70, group = "LifeFlaskChargesToCharms", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2020463573] = { "50% of Charges consumed by used Life Flasks are granted to your Charms" }, } }, - ["UniqueCorruptedSkillCostEfficiencyDuringFlaskEffect1"] = { affix = "", "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", statOrder = { 3006 }, level = 70, group = "CorruptedSkillCostEfficiencyDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638381947] = { "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect" }, } }, - ["UniqueCorruptedCharmDuration1"] = { affix = "", "(25-50)% increased Corrupted Charms effect duration", statOrder = { 901 }, level = 70, group = "CorruptedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1571268546] = { "(25-50)% increased Corrupted Charms effect duration" }, } }, - ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065505214] = { "(66-333)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9609 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6709 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, - ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7933 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4699 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, - ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7478 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9678 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, - ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4715 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, - ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7347 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, - ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7343 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, - ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, - ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5696 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, - ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7349 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, - ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6361 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, - ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6354 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10630 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, - ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10631 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, - ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10394 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, - ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5562 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, - ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1473 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7793 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7792 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7822 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7823 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9566 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7840 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, - ["UniqueFlaskWardGainedAsGuard1"] = { affix = "", "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", statOrder = { 7702, 7838 }, level = 1, group = "FlaskWardGainedAsGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1106321864] = { "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect" }, [3069759106] = { "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends" }, } }, - ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6965, 6965.1, 6965.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, - ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4662 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, - ["UniqueLocalRunicWard1"] = { affix = "", "+(50-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(50-100) to maximum Runic Ward" }, } }, - ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5635 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, - ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4242 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, - ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, - ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9233 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, - ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7832 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, - ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7804 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, - ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7806 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, - ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7708 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, - ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7746 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, - ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7820 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, - ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7607 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, - ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7632 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, - ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7633 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, - ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7630 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, - ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7605 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, - ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7834 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, - ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7631 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, - ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7634 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, - ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7800, 7800.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, - ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7580 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, - ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5906 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10395 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, - ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5959 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, - ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6201 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, - ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10419 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, - ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4285 }, level = 69, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, - ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 922 }, level = 69, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, - ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6359 }, level = 69, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, - ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6356 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, - ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 3075 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2415497478] = { "(10-30)% chance to Avoid Physical Damage from Hits" }, } }, - ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 3080 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1563503803] = { "(10-30)% chance to Avoid Chaos Damage from Hits" }, } }, - ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 3077 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(10-30)% chance to Avoid Fire Damage from Hits" }, } }, - ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 3078 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(10-30)% chance to Avoid Cold Damage from Hits" }, } }, - ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 3079 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(10-30)% chance to Avoid Lightning Damage from Hits" }, } }, - ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9424 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, - ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7844 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, - ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7843 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, - ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7845 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 639, 932 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, - ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10320 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, - ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6471 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, - ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6469 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, - ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6470 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, - ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6363 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, - ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5899 }, level = 69, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, - ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2725 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 75% Cold Resistance" }, } }, - ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4925 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, - ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6499 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, - ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6431 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, - ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4263 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, - ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2622 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Chaos Damage from Hits also Contributes to Freeze Buildup" }, } }, - ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4673 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, - ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8973 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, - ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9082 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, - ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4807 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, - ["UniqueFireDamageAlsoContributesToBleed1"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6345 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6347 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9316 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, - ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(17-23)% to Chaos Resistance" }, } }, - ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, - ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, - ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10425 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, - ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6407 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, - ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8848 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, - ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6211 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, - ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8899 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, - ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10426, 10426.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, - ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10567, 10568 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, - ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10566 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, - ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { affix = "", "(3-5)% increased Attack damage per Power of target", statOrder = { 4513 }, level = 1, group = "IncreasedAttackDamagePerTargetPower", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [954571961] = { "(3-5)% increased Attack damage per Power of target" }, } }, - ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7431 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, - ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 2214 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [2340750293] = { "(20-30)% of Elemental damage from Hits taken as Physical damage" }, } }, - ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4942 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, - ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2364 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5253 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, - ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2416 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6895 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6367 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10391 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, - ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6358 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, - ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10423 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, - ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6364 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, - ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, - ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7968 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, - ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4234, 4234.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, - ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4424 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, - ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6112 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, - ["UniqueMaxLifeToConvertToArmourPerChaosResistance1"] = { affix = "", "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", statOrder = { 1434 }, level = 1, group = "UniqueMaxLifeToConvertToArmourPerChaosResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4274637468] = { "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%" }, } }, - ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10393 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, - ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9920 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, - ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5303 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, - ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7271 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, - ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10227 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, - ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9213 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 8016 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, - ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6094 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, - ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7471 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, - ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6865 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, - ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7934 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, - ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9234 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, - ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1481 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [2593644209] = { "-10% to all Elemental Resistances per Power Charge" }, } }, - ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+1 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+3 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+1 to Level of all Fire Skills", "+3 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+2 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+3 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+2 to Level of all Fire Skills", "+3 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+3 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+3 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, - ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4321 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, - ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9772, 9772.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds" }, } }, - ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3265 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4439 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, - ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, - ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1415 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3739186583] = { "Knocks Back Enemies on Hit" }, } }, - ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10040 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, - ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 4093 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1354656031] = { "Withered you inflict has infinite Duration" }, } }, - ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7707 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, - ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6969 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, - ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6970 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, - ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6968 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, - ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6967 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, - ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4634 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, - ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4639 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, - ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-20)% chance to cause Bleeding on Hit" }, } }, - ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["UniqueLocalChanceToBleed3"] = { affix = "", "(20-30)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(20-30)% chance to cause Bleeding on Hit" }, } }, - ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5321 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, - ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4268 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, - ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9475 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, - ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 10029, 10029.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, - ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5273 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, - ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5274 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, - ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4724 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4582 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9216 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, - ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10633 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, - ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10663 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, - ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5730 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, - ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4709 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, - ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 10016 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, - ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9996 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, - ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% increased Life Regeneration rate" }, } }, - ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(-30-30)% reduced Life Regeneration rate" }, } }, - ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10421 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, - ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5239 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, - ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9107 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, - ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6216 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, - ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5771 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, - ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueIgnoreHexproof2"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6437 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, - ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, - ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4572 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, - ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9219 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, - ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6414 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4936 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, - ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5933 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9380 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, - ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9390 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, - ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9388 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, - ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9379 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, - ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4323 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, - ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, - ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7223 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, - ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7222 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, - ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7224 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, - ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10558 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, - ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4057, 4057.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, - ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1758 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, - ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1759 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, - ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1760 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10390, 10390.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5765 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, - ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5821 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, - ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5823 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, - ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5311 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, - ["UniqueRegeneratePercentLifeIfHitRecently1"] = { affix = "", "Regenerate 5% of maximum Life per second if you have been Hit Recently", statOrder = { 1035 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 5% of maximum Life per second if you have been Hit Recently" }, } }, - ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6819 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, - ["UniqueLifeRecoveryRate1"] = { affix = "", "(25-50)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(25-50)% increased Life Recovery rate" }, } }, - ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, - ["UniqueLifeRecoveryRate3"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, - ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7461 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, - ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6719 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, - ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4501 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, - ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9805 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, - ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9967 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, - ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7611 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, - ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9826 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, - ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5248 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, - ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4248 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, - ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7604 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, - ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7637 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, - ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2249 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2499 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7620 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, - ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, - ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7338 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, - ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7815 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, - ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1920 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, - ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1921 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, - ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3442 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (10-12) additional Attack Physical Damage" }, } }, - ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, - ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9283 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, - ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10666 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, - ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5919 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, - ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4932 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, - ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, - ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7262 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, - ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7191 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6720, 6720.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, - ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7656 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, - ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6299 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, - ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, - ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, - ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5313 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7731 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, - ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4741 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9212 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, - ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4463 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, - ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, - ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 2009 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3507701584] = { "+4 to Level of Vulnerability Skills" }, } }, - ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1982 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2157870819] = { "+4 to Level of Despair Skills" }, } }, - ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1984 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3948285912] = { "+4 to Level of Enfeeble Skills" }, } }, - ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 2008 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1042153418] = { "+4 to Level of Temporal Chains Skills" }, } }, - ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5618 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, - ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5617 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, - ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5616 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, - ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5608 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, - ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5615 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, - ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5614 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5607 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, - ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5630 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, - ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5631 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, - ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5619 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, - ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5613 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, - ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5632 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, - ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5626 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, - ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5623 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, - ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5627 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, - ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5625 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, - ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5620 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, - ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5621 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, - ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5624 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, - ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5629 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, - ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5628 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, - ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5622 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, - ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3816 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, - ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3815 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10063 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, - ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9276 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, - ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, - ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, - ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9274 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, - ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9273 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, - ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9275 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, - ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, - ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10717 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10711 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10685 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, - ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10725 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10697 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10704 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, - ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10724 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10710 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, - ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10712 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10702 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10672 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, - ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10728 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, - ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10471 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10472 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10470 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10474 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10473 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10469 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, - ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 16 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Instilled Modifiers" }, } }, - ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9268 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, - ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, - ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9270 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, - ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1657 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7510 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, - ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9763 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, - ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "30% increased Chill Duration on Enemies" }, } }, - ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, - ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, - ["UniqueBlockChanceFromArmourOnEquipment1"] = { affix = "", "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", statOrder = { 1134 }, level = 1, group = "UniqueBlockChancePerBaseArmour", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2531622767] = { "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items" }, } }, - ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { affix = "", "Arrows Return if they have Pierced a target which had Fully Broken Armour", statOrder = { 4437 }, level = 1, group = "UniqueProjectilesReturnIfPiercedArmourBroken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243721142] = { "Arrows Return if they have Pierced a target which had Fully Broken Armour" }, } }, - ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, - ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9373 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, - ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9939 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, - ["UniqueFireColdResistance1"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, - ["UniqueFireLightningResistance1"] = { affix = "", "+(10-20)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-20)% to Fire and Lightning Resistances" }, } }, - ["UniqueColdLightningResistance1"] = { affix = "", "+(10-20)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-20)% to Cold and Lightning Resistances" }, } }, - ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7488 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, - ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6406 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, - ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5808 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, - ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5954 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, - ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10542, 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, - ["UniqueCannotInflictElementalAilments1"] = { affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1618 }, level = 1, group = "CannotApplyElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [4056809290] = { "Cannot inflict Elemental Ailments" }, } }, - ["UniqueRevealWeakness1"] = { affix = "", "Reveal Weaknesses against Rare and Unique enemies", statOrder = { 4103 }, level = 1, group = "UniqueRevealWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [110659965] = { "Reveal Weaknesses against Rare and Unique enemies" }, } }, - ["UniqueSoulEaterOpenWeakness1"] = { affix = "", "Eat a Soul on Hitting an enemy with an Open Weakness", statOrder = { 4104 }, level = 1, group = "UniqueSoulEaterAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1393838912] = { "Eat a Soul on Hitting an enemy with an Open Weakness" }, } }, - ["UniqueRecoupLifeOpenWeakness1"] = { affix = "", "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", statOrder = { 4105 }, level = 1, group = "UniqueRecoupLifeAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2285766967] = { "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life" }, } }, - ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10674 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, - ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "25% increased Rarity of Items found" }, } }, - ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% increased Skill Speed" }, } }, - ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+500 to Spirit" }, } }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 991 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 1034 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "2 Life Regeneration per second" }, } }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1792 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1792 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1792 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1917 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Hits" }, } }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1914 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1914 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 1909 }, 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 = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% increased Flask Charges used" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(7-10)% reduced Flask Charges used" }, } }, - ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(30-40)% reduced Flask Effect Duration" }, } }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 902 }, 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 = { 902 }, 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 = { 1794 }, 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 = { 1794 }, 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 = { 1794 }, 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 = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1795 }, 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 = { 1795 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1795 }, 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 = { 1795 }, 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 = { 898 }, 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 = { 898 }, 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 = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "10% reduced Flask Life Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "50% increased Flask Mana Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(30-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "150% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(30-40)% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10676 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 55 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1935 }, 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 = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1930 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2970307386] = { "Reflects 100 to 150 Physical Damage to Melee Attackers" }, } }, - ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10717 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1600 }, 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 = { 1600 }, 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 = { 1592 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1592 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1636 }, 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 = { 1483 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "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 = { 1422 }, 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 maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of maximum Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of maximum Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1467 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1554 }, 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 = { 1554 }, 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 = { 1554 }, 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 = { 1554 }, 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 = { 1555 }, 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 = { 1555 }, 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 = { 1554 }, 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 = { 1554 }, 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 = { 1554 }, 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 = { 1555 }, 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 = { 1555 }, 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 = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1726 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, - ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "100% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "50% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "30% increased Attack Speed when on Full Life" }, } }, - ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10690 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-2 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 1959 }, 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 = { 1959 }, 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 = { 1959 }, 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 = { 1959 }, 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 = { 1959 }, 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 = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 838 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to Maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, - ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to Maximum Fire Resistance" }, } }, - ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to Maximum Lightning Resistance" }, } }, - ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1935 }, 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 = { 1971 }, 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 = { 1971 }, 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 Hit", statOrder = { 1583 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Hit" }, } }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2977 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1493 }, 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 = { 1493 }, 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 = { 1493 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 330 }, 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 = { 330 }, 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 = { 330 }, 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 = { 330 }, 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 = { 341 }, 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 = { 338 }, 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 = { 339 }, 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 = { 339 }, 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 = { 339 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, - ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", statOrder = { 2010 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead" }, } }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1590 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Hit" }, } }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2013 }, 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 = { 346 }, 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 = { 346 }, 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 = { 346 }, 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 = { 346 }, 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 = { 1065 }, 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 = { 1065 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 258 }, 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 = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 5 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 288 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10755 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 63 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3146680230] = { "Has one socket of each colour" }, } }, - ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+12% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, 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 = { 1129 }, 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 = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+10% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+18% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1477, 1478 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9886, 9887, 9890 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9890 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9886 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9887 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 141 }, 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 = { 395 }, 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 = { 1933 }, 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 = { 1933 }, 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 = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9282 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 119 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2290 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, 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 = { 2194 }, 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 = { 2195 }, 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 = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", 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 = { 2197 }, 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 = { 2197 }, 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 = { 1936 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, } }, - ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1740 }, 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 = { 1740 }, 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 = { 2241 }, 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% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% to Block chance" }, } }, - ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+25% to Block chance" }, } }, - ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-4)% to Block chance" }, } }, - ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+15% to Block chance" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4651 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5771 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1130 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2245 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2246 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 390 }, 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 = { 390 }, 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 = { 390 }, 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 = { 390 }, 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 = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "2% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2244 }, 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 = { 2244 }, 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 = { 821 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 821 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 820 }, 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 = { 335 }, 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 = { 335 }, 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 = { 335 }, 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 = { 335 }, 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 = { 2249 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2250 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1538 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, - ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1538 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(10-20)% reduced Skeleton Duration" }, } }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 818 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 826 }, 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 = { 2252 }, 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 = { 1423 }, 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 = { 1423 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, - ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2257 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, - ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 665 }, 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 = { 2263 }, 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 = { 2264 }, 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 = { 2262 }, 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 = { 2264 }, 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 = { 2262 }, 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 = { 2264 }, 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 = { 2262 }, 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 = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7635 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7638 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2260 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2276 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1915 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3251 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1884 }, 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 Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3251 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3251 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1884 }, 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 = { 1774 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1774 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1774 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1774 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1774 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1150 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1151 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1151 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1151 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1070 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__1"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2301 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3804297142] = { "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit" }, } }, - ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2291 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6949 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2312 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3238189103] = { "Your Spells have Culling Strike" }, } }, - ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2318 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1957 }, 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 = { 1953 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1957 }, 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 = { 1953 }, 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 = { 1958 }, 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 = { 1955 }, 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 = { 1958 }, 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 = { 1955 }, 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 = { 1957 }, 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 = { 1953 }, 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 = { 1958 }, 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 = { 1955 }, 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 = { 1957 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(10-20)% increased Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1953 }, 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 = { 1015 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1603 }, 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 = { 342 }, 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 = { 342 }, 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 = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1645 }, 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 = { 1645 }, 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 = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1645 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1645 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-13-13)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "4% increased Skill Effect Duration" }, } }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 143 }, 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 = { 1557 }, 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 = { 1557 }, 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 = { 1557 }, 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 = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1426 }, 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 = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, 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 = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10534 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "40% reduced Frenzy Charge Duration" }, } }, - ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "20% reduced Frenzy Charge Duration" }, } }, - ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1978 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1533 }, 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 = { 1533 }, 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 = { 1533 }, 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 = { 340 }, 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 = { 337 }, 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 Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 18 Added Lightning Damage" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2299 }, 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 Damage Bonus", statOrder = { 1395 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Damage Bonus" }, } }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1473 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2335 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2335 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 10% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 100% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% increased Attribute Requirements" }, } }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1911 }, 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 = { 1911 }, 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 = { 1911 }, 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 = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced effect of Curses on you" }, } }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1507 }, 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 = { 1508 }, 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 = { 1508 }, 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 = { 1508 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 365 }, 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 = { 365 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, } }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2337 }, 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 = { 1025 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, - ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2336 }, 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 = { 345 }, 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 = { 345 }, 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 = { 345 }, 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 = { 345 }, 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 = { 344 }, 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 = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "20% chance to gain an Endurance Charge when you Block" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "50% chance to gain an Endurance Charge when you Block" }, } }, - ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6405 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6405 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6345 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2340 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524282232] = { "Item drops on death" }, } }, - ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2339 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2528932950] = { "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge" }, } }, - ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1938 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, - ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1569 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+(-1-1) to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1881 }, 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 = { 1881 }, 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 = { 1879 }, 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 = { 1879 }, 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 = { 1879 }, 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 = { 2355 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [573884683] = { "100% chance to create Consecrated Ground when you Block" }, } }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2356 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, } }, - ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2364 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 168 }, 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 = { 168 }, 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 = { 2353 }, 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 = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per enemy killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-25) Energy Shield per enemy killed" }, } }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2365 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1081444608] = { "100% increased Claw Physical Damage when on Low Life" }, } }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5664 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, - ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2366 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [347697569] = { "100% increased Accuracy Rating when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1177 }, 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 = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2511 }, 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 = { 2328 }, 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 = { 2329 }, 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 = { 2448 }, 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 = { 2456 }, 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 = { 2456 }, 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 = { 995 }, 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 = { 996 }, 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 = { 997 }, 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 = { 995 }, 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 = { 2314 }, 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 = { 2314 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+10 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2507 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1864 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2407 }, 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 = { 2407 }, 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 = { 2407 }, 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 = { 2407 }, 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 = { 2407 }, 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 = { 2403 }, 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 = { 2410 }, 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 = { 2372 }, 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 = { 2412 }, 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 Hit", statOrder = { 2413 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Hit" }, } }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2414 }, 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 = { 2415 }, 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 = { 2422 }, 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 maximum Energy Shield per second", statOrder = { 2423 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of maximum Energy Shield per second" }, } }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2433 }, 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 = { 2426 }, 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 maximum Energy Shield per second", statOrder = { 2420 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2420 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2420 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 2% of maximum Energy Shield per second" }, } }, - ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2419 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, - ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2416 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, 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 = { 2417 }, 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 = { 1783 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, - ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2402 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of maximum Life per second per Frenzy Charge" }, } }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2567 }, 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 = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2401 }, 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 = { 1125 }, 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 = { 2367 }, 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 = { 2367 }, 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 = { 2367 }, 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 = { 2367 }, 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 = { 2367 }, 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 = { 1519 }, 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 = { 1520 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(18-24) Mana gained when you Block" }, } }, - ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(30-50) Mana gained when you Block" }, } }, - ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2370 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4116579804] = { "Raised Zombies have +5000 to maximum Life" }, } }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10652 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, - ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2371 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "minion_resistance", "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, - ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2451 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3563667308] = { "25% increased Raised Zombie Size" }, } }, - ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2453 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, - ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2369 }, 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 = { 2373 }, 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 = { 2375 }, 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 = { 1715 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [268659529] = { "40% of Cold Damage Converted to Fire Damage" }, } }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited enemies killed by your Hits are destroyed", statOrder = { 2374 }, 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 Hit", statOrder = { 2450 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Hit" }, } }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, - ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 785 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1740200922] = { "(20-30)% increased Rarity of Items found during Effect" }, } }, - ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 784 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3736953565] = { "(8-12)% increased Quantity of Items found during Effect" }, } }, - ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 787 }, 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 = { 774 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "flask", "elemental", "resistance" }, tradeHashes = { [4026156644] = { "+4% to all maximum Elemental Resistances during Effect" }, } }, - ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 790 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "flask", "elemental", "resistance" }, tradeHashes = { [3110554274] = { "+50% to Elemental Resistances during Effect" }, } }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2459 }, 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" }, } }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1718 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1718 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2447 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2637 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2637 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2467 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 2469 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, 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 = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos damage" }, } }, - ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "450 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "250 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, - ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2471 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2797075304] = { "Counts as Dual Wielding" }, } }, - ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2466 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 450 Chaos Damage per second to nearby Enemies" }, } }, - ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 50 Chaos Damage per second to nearby Enemies" }, } }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10758 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, - ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2352 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1187 }, 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 = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, - ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "50% increased Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10711 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2473 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (75-100) to (165-200) Fire Damage in Main Hand" }, } }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, - ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1292 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (75-100) to (165-200) Chaos Damage in Off Hand" }, } }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1277 }, 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 = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10431 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7732 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7732 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2477 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage" }, } }, - ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 361 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, - ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 366 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, - ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 366 }, 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 = { 642 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "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 = { 643 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "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 = { 655 }, 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 = { 656 }, 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 = { 654 }, 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 = { 654 }, 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 = { 2484 }, 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 = { 1073 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(250-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1073 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(70-100)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1073 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2482 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2422197812] = { "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage" }, } }, - ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2483 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1357244124] = { "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage" }, } }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2724 }, 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 = { 2517 }, 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 = { 2472 }, 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 = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 1058 }, 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 = { 1058 }, 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 = { 1058 }, 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 = { 2600 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2601 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2602 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2602 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2604 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2605 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2605 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2605 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2606 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2606 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2606 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2500 }, 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 = { 1503 }, 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 = { 1503 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1503 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 4 Life per Enemy Hit with Spells" }, } }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1503 }, 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 = { 2492 }, 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 = { 2490 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2495 }, 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 = { 2495 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2510 }, 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 = { 2587 }, 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 maximum Energy Shield when you Block", statOrder = { 2502 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your maximum Energy Shield when you Block" }, } }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1677 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (40-60)% of Physical Damage as extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1677 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (30-40)% of Physical Damage as extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1687 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2105236138] = { "Gain (6-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1684 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [1036710490] = { "Gain (6-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1681 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [502598927] = { "Gain (6-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical damage from Hits taken as Lightning damage" }, } }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2528 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, - ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1667 }, 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 = { 1667 }, 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 = { 2532 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "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 = { 2532 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "15% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 331 }, 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 = { 331 }, 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 = { 331 }, 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 = { 1662 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, - ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1662 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "10% reduced Trap Duration" }, } }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, - ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(15-25)% increased Trap Damage" }, } }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2586 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2576 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3134 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1967 }, 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 = { 1962 }, 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 = { 2593 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3598983877] = { "Gain a Frenzy Charge if an Attack Ignites an Enemy" }, } }, - ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2592 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2595 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(40-30) Chaos Damage taken" }, } }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1912 }, 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 = { 1912 }, 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 = { 3008 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2591 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1332 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1332 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Accuracy Rating" }, } }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 399 }, 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 = { 148 }, 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 = { 151 }, 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 = { 148 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, - ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2319 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4434 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4433 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2669 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 149 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1548 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1548 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1548 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1192 }, 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 = { 1190 }, 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 = { 1188 }, 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 = { 2476 }, 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 = { 2475 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 355 }, 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 = { 355 }, 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 = { 356 }, 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 = { 2215 }, 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 = { 2503 }, 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 = { 2675 }, 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 = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2680 }, 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 = { 2681 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3693130674] = { "(15-20)% increased Lightning Damage per Frenzy Charge" }, } }, - ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2682 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1269609669] = { "20 Life gained on Kill per Frenzy Charge" }, } }, - ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1410 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10724 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1032 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 644 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of maximum Life on use" }, } }, - ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 645 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2686 }, 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 = { 461 }, 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 = { 2687 }, 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 Hit Chance per 8 Strength", statOrder = { 2688 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Hit Chance per 8 Strength" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2689 }, 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 = { 2689 }, 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 = { 2690 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2690 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7812 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2533 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Hits Poison the Enemy" }, } }, - ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(8-12)% Chance to Block Attack Damage during Effect" }, } }, - ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2692 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [93696421] = { "1% increased Attack Damage per 450 Evasion Rating" }, } }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 7187 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2714 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, - ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2705 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3212461220] = { "100% Chance to Cause Monster to Flee on Block" }, } }, - ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 100% faster" }, } }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1894 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [2460686383] = { "Leech 30% faster" }, } }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 50% faster" }, } }, - ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (10-20)% slower" }, } }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1896 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (500-1000)% faster" }, } }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1898 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3554867738] = { "Leech Mana (500-1000)% faster" }, } }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1308 }, 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 = { 1308 }, 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 = { 1308 }, 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 maximum Life on Rampage", statOrder = { 2699 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of maximum Life on Rampage" }, } }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2700 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [627889781] = { "Removes Elemental Ailments on Rampage" }, } }, - ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2701 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3100457893] = { "Gain Immunity to Physical Damage for 1.5 seconds on Rampage" }, } }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6743 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, - ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2712 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3321583955] = { "Creates a Smoke Cloud on Rampage" }, } }, - ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2713 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [376956212] = { "Enemies do not block your movement for 4 seconds on Rampage" }, } }, - ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on Hit" }, } }, - ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2706 }, 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 Hit Chance per Level", statOrder = { 2707 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Hit Chance per Level" }, } }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2708 }, 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 = { 2709 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2710 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2715 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10664, 10664.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2717 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, - ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2718 }, 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 = { 150 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2720 }, 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 = { 2721 }, 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 = { 2716 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 443 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 445 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHashes = { [4051493629] = { "Socketed Gems have Secrets of Suffering" }, } }, - ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10368 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, - ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1485 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, - ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1491 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, - ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1488 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, - ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2724 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 396 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7198 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7198 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2358 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [953314356] = { "25% chance to create a Smoke Cloud when Hit" }, } }, - ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2519 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1967 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, - ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2218 }, 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 = { 2217 }, 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 = { 1212 }, 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 = { 547, 547.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 1% increased Damage per 5 Dexterity", statOrder = { 1723 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 1% increased Damage per 5 Dexterity" }, } }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on killing a Shocked enemy", statOrder = { 546 }, 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 = { 2750 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2749 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2729 }, 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 = { 2729 }, 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 = { 1878 }, 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 = { 1878 }, 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 that are on Full Life", statOrder = { 2733 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life" }, } }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2734 }, 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 = { 2732 }, 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 = { 2761 }, 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 = { 1617 }, 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 = { 1617 }, 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 = { 1617 }, 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 = { 2756 }, 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 = { 1614 }, 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 = { 1612, 1614 }, 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 = "", "25% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6362 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, - ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1703 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, - ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 4110 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, - ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (6-8)% increased Area of Effect" }, } }, - ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "350 Physical Damage taken on Minion Death" }, } }, - ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2758 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1617739170] = { "8% of Maximum Energy Shield taken as Physical Damage on Minion Death" }, } }, - ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2550 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, - ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2551 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [282353000] = { "Deal no Non-Physical Damage" }, } }, - ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4581 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9921, 9921.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2348 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [1420236871] = { "Ignites you inflict with Attacks deal Damage 35% faster" }, } }, - ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 448 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [967556848] = { "Socketed Gems fire Projectiles in a circle" }, } }, - ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 449 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 446 }, 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 = { 446 }, 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 = { 447 }, 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 = { 450 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 361 }, 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 = { 362 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3251 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3251 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "3% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1949 }, 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 = { 1949 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1877 }, 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 = { 2766 }, 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 = { 2763 }, 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 = { 831 }, 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 = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-80)% increased Physical Damage" }, } }, - ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 2% of Physical Damage as Life" }, } }, - ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2765 }, 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 maximum Life per second", statOrder = { 1691 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10585 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(40-60)% increased Mine Throwing Speed" }, } }, - ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-15)% reduced Mine Throwing Speed" }, } }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8949 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1155 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3298440988] = { "35% less Mine Damage" }, } }, - ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 364 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 10 Blastchain Mine" }, } }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5692 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits" }, } }, - ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2190 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on killing a Shocked enemy", statOrder = { 2354 }, 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 = { 2354 }, 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 = { 2746 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2747 }, 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 maximum Life Regenerated per second", statOrder = { 2736 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of maximum Life Regenerated per second" }, } }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2741 }, 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 = { 2470 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3448 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2753 }, 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 = { 2755 }, 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 = { 1883 }, 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 = { 1883 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased effect of Buffs on you" }, } }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 368 }, 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 = { 2745 }, 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 = { 2745 }, 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 = { 663 }, 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 = { 797 }, 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 = { 724 }, 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 = { 2261 }, 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 = { 1505 }, 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 = { 1505 }, 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 = { 1505 }, 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 = { 1041, 1508 }, 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 = { 1041, 1508 }, 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 = { 1041, 1508 }, 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" }, } }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 496 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, } }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2530 }, 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 = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1599 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "10% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9563 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10712 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 479 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3321235265] = { "Grants Level 10 Gluttony of Elements Skill" }, } }, - ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 375 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7490 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, - ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces" }, } }, - ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, - ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, - ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(14-16)% increased Damage with Bows" }, } }, - ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1241 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1069260037] = { "(14-16)% increased Damage with Claws" }, } }, - ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(14-16)% increased Damage with Daggers" }, } }, - ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2691 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [379328644] = { "(14-16)% increased Damage with Wands" }, } }, - ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(14-16)% increased Damage with Quarterstaves" }, } }, - ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3041 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1010549321] = { "(12-14)% increased Damage with One Handed Weapons" }, } }, - ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3042 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1836374041] = { "(12-14)% increased Damage with Two Handed Weapons" }, } }, - ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1217 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [444174528] = { "(12-14)% increased Attack Damage while Dual Wielding" }, } }, - ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1232 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [515842015] = { "(14-16)% increased Melee Physical Damage with Unarmed Attacks" }, } }, - ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, - ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, - ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "10% increased Projectile Damage" }, } }, - ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-12)% increased Spell Damage" }, } }, - ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1181 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "jewel", }, weightVal = { 0, 1, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(14-16)% increased Spell Damage while wielding a Staff" }, } }, - ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1184 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(14-16)% increased Spell Damage while Dual Wielding" }, } }, - ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1183 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(14-16)% increased Spell Damage while holding a Shield" }, } }, - ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(14-16)% increased Trap Damage" }, } }, - ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1154 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(14-16)% increased Mine Damage" }, } }, - ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1150 }, level = 1, group = "DamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-10)% increased Damage" }, } }, - ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(14-16)% increased Fire Damage" }, } }, - ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(14-16)% increased Cold Damage" }, } }, - ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(14-16)% increased Lightning Damage" }, } }, - ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(14-16)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1167 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(10-12)% increased Damage over Time" }, } }, - ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1167 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, - ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-13)% increased Chaos Damage" }, } }, - ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1774 }, level = 1, group = "AreaDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, - ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1323 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(6-8)% increased Attack Speed with Maces or Sceptres" }, } }, - ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(6-8)% increased Attack Speed with Axes" }, } }, - ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(6-8)% increased Attack Speed with Swords" }, } }, - ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(6-8)% increased Attack Speed with Bows" }, } }, - ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1321 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(6-8)% increased Attack Speed with Claws" }, } }, - ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(6-8)% increased Attack Speed with Daggers" }, } }, - ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1326 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(6-8)% increased Attack Speed with Wands" }, } }, - ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(6-8)% increased Attack Speed with Quarterstaves" }, } }, - ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1318 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1813451228] = { "(4-6)% increased Attack Speed with One Handed Melee Weapons" }, } }, - ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1317 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917910910] = { "(4-6)% increased Attack Speed with Two Handed Melee Weapons" }, } }, - ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1314 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "jewel", }, weightVal = { 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [4249220643] = { "(4-6)% increased Attack Speed while Dual Wielding" }, } }, - ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1345 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2382196858] = { "(3-5)% increased Cast Speed while Dual Wielding" }, } }, - ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1316 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3805075944] = { "(4-6)% increased Attack Speed while holding a Shield" }, } }, - ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1346 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1612163368] = { "(3-5)% increased Cast Speed while holding a Shield" }, } }, - ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1347 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2066542501] = { "(3-5)% increased Cast Speed while wielding a Staff" }, } }, - ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1329 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1584440377] = { "(6-8)% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, - ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(6-8)% increased Projectile Speed" }, } }, - ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-8)% increased Trap Throwing Speed" }, } }, - ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(6-8)% increased Mine Throwing Speed" }, } }, - ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(2-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 995 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 995 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 996 }, 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 = { 996 }, 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 = { 997 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, - ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1164 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(12-14)% increased Attack Damage while holding a Shield" }, } }, - ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1273 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "fire", "caster", "speed" }, tradeHashes = { [1476643878] = { "(3-5)% increased Cast Speed with Fire Skills" }, } }, - ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1281 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "cold", "caster", "speed" }, tradeHashes = { [928238845] = { "(3-5)% increased Cast Speed with Cold Skills" }, } }, - ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1286 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "lightning", "caster", "speed" }, tradeHashes = { [1788635023] = { "(3-5)% increased Cast Speed with Lightning Skills" }, } }, - ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1293 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "caster_speed", "chaos", "caster", "speed" }, tradeHashes = { [2054902222] = { "(3-5)% increased Cast Speed with Chaos Skills" }, } }, - ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (5-10)% increased Cast Speed" }, } }, - ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 992 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, - ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 993 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, - ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 994 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, - ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 995 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, - ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 997 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, - ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributesForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, - ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-12) to maximum Life" }, } }, - ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 889 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-12) to maximum Mana" }, } }, - ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(12-15)% increased Mana Regeneration Rate" }, } }, - ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-12) to maximum Energy Shield" }, } }, - ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, - ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 887, 892 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(4-6) to maximum Mana" }, [3299347043] = { "+(4-6) to maximum Life" }, } }, - ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 889, 894 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 886, 894 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 886, 889 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (0.2-0.4)% of Physical Attack Damage as Life" }, } }, - ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (0.2-0.4)% of Physical Attack Damage as Mana" }, } }, - ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1040 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1507 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, - ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1510 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (2-3) Energy Shield per Enemy Hit with Attacks" }, } }, - ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, - ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 882 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, - ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, - ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 882, 884 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 882, 886 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 884, 886 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(4-6)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemRarityForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3917489142] = { "(4-6)% increased Rarity of Items found" }, } }, - ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(20-40) to Accuracy Rating" }, } }, - ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-14)% increased Accuracy Rating" }, } }, - ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 976, 1332 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "critical" }, tradeHashes = { [587431675] = { "(6-10)% increased Critical Hit Chance" }, [624954515] = { "(6-10)% increased Accuracy Rating" }, } }, - ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CritChanceForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(9-12)% increased Critical Damage Bonus" }, } }, - ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1365 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [107161577] = { "(12-16)% increased Critical Hit Chance with Maces or Sceptres" }, } }, - ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1368 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2560468845] = { "(12-16)% increased Critical Hit Chance with Axes" }, } }, - ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1364 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2630620421] = { "(12-16)% increased Critical Hit Chance with Swords" }, } }, - ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1361 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(12-16)% increased Critical Hit Chance with Bows" }, } }, - ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1362 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3428039188] = { "(12-16)% increased Critical Hit Chance with Claws" }, } }, - ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1363 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(12-16)% increased Critical Hit Chance with Daggers" }, } }, - ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1367 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1729982003] = { "(12-16)% increased Critical Hit Chance with Wands" }, } }, - ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1366 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3621953418] = { "(12-16)% increased Critical Hit Chance with Quarterstaves" }, } }, - ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1386 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(8-10)% to Critical Damage Bonus with Maces or Sceptres" }, } }, - ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1387 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(8-10)% to Critical Damage Bonus with Axes" }, } }, - ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1389 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(8-10)% to Critical Damage Bonus with Swords" }, } }, - ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1388 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "(8-10)% increased Critical Damage Bonus with Bows" }, } }, - ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1391 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(8-10)% to Critical Damage Bonus with Claws" }, } }, - ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1385 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "(8-10)% increased Critical Damage Bonus with Daggers" }, } }, - ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1390 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(8-10)% to Critical Damage Bonus with Wands" }, } }, - ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1392 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "jewel", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1661096452] = { "(8-10)% increased Critical Damage Bonus with Quarterstaves" }, } }, - ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1374 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2381842786] = { "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons" }, } }, - ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1372 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [764295120] = { "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1376 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3702513529] = { "(14-18)% increased Attack Critical Hit Chance while Dual Wielding" }, } }, - ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1370 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1215447494] = { "(10-14)% increased Critical Hit Chance while holding a Shield" }, } }, - ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1375 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1199429645] = { "(10-14)% increased Melee Critical Hit Chance" }, } }, - ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-14)% increased Critical Hit Chance for Spells" }, } }, - ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(12-16)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 979 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(100-120)% increased Critical Hit Chance with Traps" }, } }, - ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1371 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [214031493] = { "(12-16)% increased Critical Hit Chance with Mines" }, } }, - ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1377 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "critical" }, tradeHashes = { [1104796138] = { "(14-18)% increased Critical Hit Chance with Fire Skills" }, } }, - ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1379 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "critical" }, tradeHashes = { [3337344042] = { "(14-18)% increased Critical Hit Chance with Cold Skills" }, } }, - ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1378 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1186596295] = { "(14-18)% increased Critical Hit Chance with Lightning Skills" }, } }, - ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1380 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "critical" }, tradeHashes = { [439950087] = { "(10-14)% increased Critical Hit Chance with Elemental Skills" }, } }, - ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1381 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [1424360933] = { "(12-16)% increased Critical Hit Chance with Chaos Skills" }, } }, - ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1394 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons" }, } }, - ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1373 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "jewel", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [252507949] = { "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3910 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2546185479] = { "+(15-18)% to Critical Damage Bonus while Dual Wielding" }, } }, - ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1397 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3668589927] = { "+(6-8)% to Melee Critical Damage Bonus while holding a Shield" }, } }, - ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1395 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "jewel", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(12-15)% to Melee Critical Damage Bonus" }, } }, - ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(12-15)% increased Critical Spell Damage Bonus" }, } }, - ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 984 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1780168381] = { "+(8-10)% to Critical Damage Bonus with Traps" }, } }, - ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1398 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2529112796] = { "+(8-10)% to Critical Damage Bonus with Mines" }, } }, - ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1399 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHashes = { [2307547323] = { "+(15-18)% to Critical Damage Bonus with Fire Skills" }, } }, - ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1401 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHashes = { [915908446] = { "+(15-18)% to Critical Damage Bonus with Cold Skills" }, } }, - ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1400 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [2441475928] = { "+(15-18)% to Critical Damage Bonus with Lightning Skills" }, } }, - ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1402 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [1569407745] = { "+(12-15)% to Critical Damage Bonus with Elemental Skills" }, } }, - ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1403 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [2710238363] = { "+(8-10)% to Critical Damage Bonus with Chaos Skills" }, } }, - ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, - ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, - ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, - ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, - ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, - ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, - ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistancesForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1053 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2517001139] = { "(10-14)% increased Stun Duration on Enemies" }, } }, - ["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 1060 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2511217560] = { "(25-35)% increased Stun Recovery" }, } }, - ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, - ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, - ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1949 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, - ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Curses" }, } }, - ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, - ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1604 }, level = 1, group = "AvoidShockForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(6-8)% chance to Avoid being Shocked" }, } }, - ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1601 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, - ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "AvoidChillForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, - ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1607 }, level = 1, group = "AvoidStunForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, - ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 1056 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(2-3)% chance to Freeze" }, } }, - ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 1058 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, - ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, - ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1881 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(10-14)% increased Power Charge Duration" }, } }, - ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1737 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [977908611] = { "(4-6)% chance to Knock Enemies Back on hit" }, } }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1737 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, - ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+1% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1125 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "jewel", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+1% Chance to Block Attack Damage while holding a Shield" }, } }, - ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1128 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+1% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5642 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, - ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, } }, - ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "BurnDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, - ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9857 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, - ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced effect of Curses on you" }, } }, - ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, - ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, - ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, - ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, - ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, - ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, - ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 1056, 1614 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, - ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 1058, 1613 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, - ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, - ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2896, 2899 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2270, 4660 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, - ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4590 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1627 }, level = 1, group = "BurningDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, - ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, - ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2661 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(2-4)% Chance to Block Attack Damage" }, } }, - ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, - ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, - ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, - ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, - ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, - ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2781 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2781 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, - ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 993 }, 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 = { 2784 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2784 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, - ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 994 }, 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 = { 2785 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2785 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 992 }, 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 = { 2782 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2782 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 994 }, 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 = { 2786 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2786 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 993 }, 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 = { 2783 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2783 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, - ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 1% of Physical Damage as Life" }, } }, - ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 662 }, 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 = { 1642 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4080656180] = { "Your Attacks do not cost Mana" }, } }, - ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10730 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 814 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, - ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, - ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, - ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 814 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1607 }, 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 = { 1607 }, 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 = { 1599 }, 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 = { 1599 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2264 }, 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 = { 2264 }, 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 = { 2264 }, 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 = { 2264 }, 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 = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "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 = { 2790 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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 = { 2787 }, 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 while Unarmed", statOrder = { 2808 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.3-0.4) metres to Melee Strike Range while Unarmed" }, } }, - ["UnarmedStrikeRangeUnique1"] = { affix = "", "+0.3 metres to Melee Strike Range while Unarmed", statOrder = { 2808 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+0.3 metres to Melee Strike Range while Unarmed" }, } }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2797 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [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 = { 2801 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [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 = { 2802 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [727625899] = { "Passives in Radius apply to Minions instead of you" }, } }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2501 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "2% increased Spell Damage per 10 Intelligence" }, } }, - ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "50% increased Critical Damage Bonus" }, } }, - ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2788 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of maximum Life when you Consume a corpse" }, } }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2789 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, - ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2794 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, - ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1213 }, 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 = { 1214 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 maximum Life when they Block", statOrder = { 2793 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 2% of their maximum Life when they Block" }, } }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2793 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their maximum Life when they Block" }, } }, - ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-30)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__3"] = { affix = "", "(25-50)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-50)% increased Damage while Leeching" }, } }, - ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2562 }, 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 = { 2562 }, 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 = { 2562 }, 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 = { 2014 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have 10% chance to Fortify" }, } }, - ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1963 }, 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 = { 2809 }, 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 = { 2811 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [736847554] = { "Totems fire 2 additional Projectiles" }, } }, - ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2812 }, 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 = { 2815 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1212897608] = { "4% increased Attributes per allocated Keystone" }, } }, - ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2804 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1609999275] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks" }, } }, - ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2805 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [622657842] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells" }, } }, - ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2313 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1465 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7670 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7672 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, - ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2832 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2833 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "(15-20)% increased Vaal Skill Effect Duration" }, } }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10443 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, - ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2835 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Hit Chance" }, } }, - ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2836 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Damage Bonus" }, } }, - ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, - ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2504 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 8% increased Effect" }, } }, - ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "4% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Curse Magnitudes" }, } }, - ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2838 }, 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 = { 2837 }, 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 = { 2839 }, 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 = { 2840 }, 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" }, } }, - ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1516 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [751813227] = { "Lose 1% of maximum Life on Kill" }, } }, - ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1518 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1699499433] = { "Lose 1% of maximum Energy Shield on Kill" }, } }, - ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2848 }, 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 = { 1910 }, 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 = { 1173 }, 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 = { 1969 }, 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 = { 1969 }, 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 = { 1713 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, - ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2673 }, 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 = { 2850, 2851, 2866 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "defences", "physical_damage", "evasion", "damage", "physical", "attack" }, tradeHashes = { [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 = { 2853, 2854 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, } }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2852 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [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 = { 2855 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [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 = { 2856 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [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 = { 2861 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [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 = { 861, 2860 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [1754445556] = { "Adds 1 to 2 Lightning damage to Attacks" }, } }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2864 }, 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" }, } }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2865 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [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 = { 2748 }, 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 = { 2360 }, 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 = { 2360 }, 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 = { 2360 }, 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 = { 2272 }, 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 = { 2272 }, 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 = { 2272 }, 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 = { 2297 }, 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 = { 2310 }, 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 = { 525 }, 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 = { 1607 }, 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 = { 1607 }, 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 = { 353 }, 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 = { 2273 }, 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 = { 2273 }, 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 = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10684 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1307 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1173 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1291 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-33) to (45-60) Chaos damage" }, } }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1291 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (38-48) to (70-90) Chaos damage" }, } }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1291 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-55) to (80-98) Chaos damage" }, } }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1330 }, 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 = { 1330 }, 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 = { 1331 }, 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 = { 1331 }, 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 = { 1515 }, 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 = { 1515 }, 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 = { 1972 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1973 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2656 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3049 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2265 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1454946771] = { "Hits that Stun inflict Bleeding" }, } }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3083 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5535 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on kill" }, } }, - ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of maximum Mana on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1512 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of maximum Energy Shield on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1512 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of maximum Energy Shield on Kill" }, } }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1199 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, } }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3045, 3046, 3047 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3045, 3046, 3047 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [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 = { 2975 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [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 = { 2969, 2969.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" }, } }, - ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2968, 2968.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, - ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2958 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, - ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3093 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "1 to 3 Added Attack Physical Damage per 25 Strength", statOrder = { 4545 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "1 to 3 Added Attack Physical Damage per 25 Strength" }, } }, - ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3094 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3101 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHashes = { [607839150] = { "Nearby Enemies are Hindered, with 25% reduced Movement Speed" }, } }, - ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 376 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, - ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 377 }, 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 = { 377 }, 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 = { 378 }, 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 = { 379 }, 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 = { 380 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 381 }, 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 = { 381 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 651 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [570159344] = { "Consumes Frenzy Charges on use" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3104 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Hit Chance against Blinded Enemies" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3104 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Hit Chance against Blinded Enemies" }, } }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3762 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits against Hindered Enemies" }, } }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3124 }, 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 = { 3125 }, 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 = { 551 }, 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 = { 391, 391.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 = { 460 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 52 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are doubled" }, } }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 52 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are tripled" }, } }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3252 }, 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 = { 3256 }, 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 Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3254 }, 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 = { 574 }, 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 = { 574 }, 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 = { 574 }, 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 Hit with this Weapon", statOrder = { 539 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon" }, } }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1325 }, 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 = { 1234 }, 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 = { 1218 }, 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 = { 3265 }, 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 = { 3257 }, 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 Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3258 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills" }, } }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3261 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "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 = { 3263 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "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 = { 3268 }, 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" }, } }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3269 }, 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 = { 1279 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1279 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 664 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [538730182] = { "Creates a Smoke Cloud on Use" }, } }, - ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 646 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2146730404] = { "Creates Consecrated Ground on Use" }, } }, - ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 647 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311869501] = { "Creates Chilled Ground on Use" }, } }, - ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 661 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2005503156] = { "Taunts nearby Enemies on use" }, } }, - ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 683, 683.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 = { 1589 }, 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 = { 3284 }, 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 = { 3284 }, 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 = { 2514 }, 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 = { 3285 }, 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 = { 566 }, 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 = { 2724 }, 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 = { 754 }, 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 = { 736 }, 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 = { 2891 }, 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 = { 3425 }, 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 = { 3426 }, 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 = { 550 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3419 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of maximum Life per second while Frozen" }, } }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3303 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "100% chance to knockback on Counterattack" }, } }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3120 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "20% chance for Energy Shield Recharge to start when you Block" }, } }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3466 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3435 }, 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 = { 3436 }, 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 = { 630, 811 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "resource", "life", "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 = { 3440 }, 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 Hit Chance against Enemies that are on Full Life", statOrder = { 3441 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Hit Chance against Enemies that are on Full Life" }, } }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3442 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (12-16) additional Attack Physical Damage" }, } }, - ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", statOrder = { 3450 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [2329121140] = { "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3448 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain 15% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3448 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3451 }, 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 = { 3368 }, 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 = { 3368 }, 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 = { 3368 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+3 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "-1 to maximum number of Summoned Golems" }, } }, - ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 462 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3453 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1524882321] = { "Counts as all One Handed Melee Weapon Types" }, } }, - ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 363 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 12 Fortify" }, } }, - ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1440 }, 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 = { 1963 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 750 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4267616253] = { "Immunity to Damage during Effect" }, } }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3466 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3469 }, 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 = { 3470 }, 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 = { 3471 }, 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 = { 3077 }, 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 = { 1665 }, 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 = { 3105 }, 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 = { 3781 }, 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 = { 2902 }, 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 = { 3468 }, 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 = { 3467 }, 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 = { 730 }, 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 = { 3745 }, 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 = { 382 }, 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 = { 382 }, 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 = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 80% increased Reservation Efficiency" }, } }, - ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3084 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", statOrder = { 5542 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, - ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 568 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3782 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931560398] = { "Glows while in an Area containing a Unique Fish" }, } }, - ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3786 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3418949024] = { "Attacks with this Weapon Maim on hit" }, } }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3789 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critical Hit Shocked Enemies" }, } }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3790 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Hits against non-Shocked Enemies" }, } }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3808 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, - ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3807 }, 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 = { 386 }, 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 = { 3809 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3810 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, } }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3811 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3814 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, } }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3813 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2948375275] = { "25% increased Critical Hit Chance per Grand Spectrum" }, } }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3815 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+7% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3816 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per socketed Grand Spectrum" }, } }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3812 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3820 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [482240997] = { "Minions have +10% to Critical Damage Bonus per Grand Spectrum" }, } }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3817 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3818 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3819 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, - ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9681 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, - ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on killing a Frozen enemy", statOrder = { 1579 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on killing a Frozen enemy" }, } }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5992 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9173 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, - ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3985 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4052714663] = { "10% increased Physical Damage taken while moving" }, } }, - ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3983 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8972 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5698 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9679 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9679 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9715 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5581 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6794 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4925 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, - ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1522 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [1678831767] = { "Recover (250-500) Life when you Block" }, } }, - ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 489 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Reckoning Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9112 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3286 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2732344760] = { "Gain a Frenzy Charge on reaching Maximum Power Charges" }, } }, - ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 488 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 488 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4106 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9428 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 553 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2634885412] = { "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy" }, } }, - ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 590 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4586 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9654 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6498 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5840 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4327 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, - ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 875 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "50% increased Lightning Damage" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (4-6)% of maximum Life as Extra maximum Energy Shield" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (5-10)% of maximum Life as Extra maximum Energy Shield" }, } }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2867 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 59 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, - ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2304 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7879, 7879.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7880, 7880.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7857, 7857.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7893, 7893.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, - ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, - ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, - ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3679 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4355 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3169, 3169.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage" }, } }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3393 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3088 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, - ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3822 }, 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 maximum Mana when you Shock an Enemy", statOrder = { 3824 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of maximum 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 = { 548, 548.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [723388324] = { "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" }, } }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3837 }, 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 Hit Chance when in Main Hand", statOrder = { 3836 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Hit Chance when in Main Hand" }, } }, - ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2493 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Damage Bonus per Green Socket" }, } }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2489 }, 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 = { 777 }, 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 = { 809 }, 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 = { 3785 }, 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 = { 3829 }, 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 = { 3832 }, 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 = { 3828 }, 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 = { 3839 }, 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 = { 3840 }, 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 used a Warcry Recently", statOrder = { 3833 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've used a Warcry Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3833 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've used a Warcry Recently" }, } }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3831 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of maximum 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 = { 3827 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, - ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3845 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4095359151] = { "20% increased Damage with Hits for each Level higher the Enemy is than you" }, } }, - ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3835 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3992153900] = { "25% increased Movement Skill Mana Cost" }, } }, - ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4607 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [115351487] = { "30% chance to Avoid Elemental Ailments while Phasing" }, } }, - ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1425 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3825 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3122365625] = { "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies" }, } }, - ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3826 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, - ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1581 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on killing a Frozen enemy", statOrder = { 1578 }, 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 = { 2284 }, 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 = { 2285 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3844 }, 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 = { 394 }, 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 = { 3830 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3834 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3204585690] = { "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem" }, } }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3846 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem" }, } }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1450 }, 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 = { 3847 }, 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 = { 3850 }, 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 Counterattacks", statOrder = { 3858 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Counterattacks" }, } }, - ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3852 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 = { 3854 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2217962305] = { "(8-12)% increased Maximum Life if no Equipped Items are Corrupted" }, } }, - ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3855 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2497198283] = { "Regenerate 400 Life per second if no Equipped Items are Corrupted" }, } }, - ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3856 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4156715241] = { "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted" }, } }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7992 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (29-37) Chaos Damage" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1287 }, 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 = { 1287 }, 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 = { 1287 }, 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 = { 1287 }, 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 = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1207 }, 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 = { 1207 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1269 }, 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 = { 1269 }, 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 = { 1269 }, 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 = { 1269 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1275 }, 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 = { 1275 }, 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 = { 1275 }, 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 = { 1275 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1283 }, 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 = { 1283 }, 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 = { 1283 }, 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 = { 1283 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, - ["UniqueGlobalAddedChaosDamage1UNUSED"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, - ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1556 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [115109959] = { "Regenerate 2% of maximum Energy Shield per second while on Low Life" }, } }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1929 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2006370586] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3860 }, 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 = { 3861 }, 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 = { 2695 }, 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 = { 2695 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, - ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3863 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3862 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4151190513] = { "(80-100)% increased Rarity of Items found with a Normal Item Equipped" }, } }, - ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3895 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3266394681] = { "Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3841 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "minion_resistance", "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9055 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, - ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3843 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "physical_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, - ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 740 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3891 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3893 }, 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 = { 3892 }, 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 = { 3892 }, 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 = { 3281 }, 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 = { 3868 }, 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 = { 3868 }, 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 = { 1622 }, 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 = { 3906 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3907 }, 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 = { 3907 }, 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 = { 287 }, 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 = { 387 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2624 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1888494262] = { "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of maximum Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4369 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448279015] = { "2% increased Area of Effect per Endurance Charge" }, } }, - ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3249 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "50% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3249 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3448 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1674 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1674 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3020 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 1646 }, 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 = { 2896 }, 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 = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, - ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 786 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [803730540] = { "Immunity to Freeze, Chill, Curses and Stuns during Effect" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2206 }, 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 = { 1695 }, 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 = { 3293 }, 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 Hits", statOrder = { 3922 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Hits" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Hit" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Hit" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7638 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3921 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2562665460] = { "Stun Threshold is based on Energy Shield instead of Life" }, } }, - ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3932 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, - ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 3933 }, 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 = { 3969 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3919557483] = { "100% increased Burning Damage if you've Ignited an Enemy Recently" }, } }, - ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3970 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of maximum Life when you Ignite an Enemy" }, } }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3971 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1332534089] = { "100% increased Melee Physical Damage against Ignited Enemies" }, } }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9311 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7949 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, - ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5403, 8316 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, - ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8312, 8313 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6165, 8317 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8314, 8315 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3972 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3975 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, - ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3974 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1812251528] = { "Arrows that Pierce have 50% chance to inflict Bleeding" }, } }, - ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3978 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, - ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3976 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1011373762] = { "Spells fire an additional Projectile" }, } }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4232 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6902 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 606 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2640 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Physical Damage from Hits also Contributes to Shock Chance" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6578 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7913 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9140 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, - ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6837 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, - ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3161 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, - ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1739 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2162876159] = { "(14-18)% increased Projectile Attack Damage" }, } }, - ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1766 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [507075051] = { "+1 Mana per 4 Strength" }, } }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6434 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, - ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1765 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2042405614] = { "+1 Life per 4 Dexterity" }, } }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8924 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, - ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1764 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+4 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6485 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5531 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9572 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9573 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, - ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4615 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, - ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 761 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [323705912] = { "Skills fire 2 additional Projectiles during Effect" }, } }, - ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 738 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10752 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2664 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9337 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, - ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6923 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, - ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6922 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, - ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3376 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3384291300] = { "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds" }, } }, - ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, - ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, - ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3036 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729180395] = { "Golem Skills have (20-30)% increased Cooldown Recovery Rate" }, } }, - ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 3037 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3246099900] = { "Summoned Golems have (30-45)% increased Cooldown Recovery Rate" }, } }, - ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6920 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6918 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6926 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4107 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 10013 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 10003 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5896 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3984 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5654 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9220 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9220 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5867 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5867 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6343 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage" }, } }, - ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4524 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5516 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6835 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7749 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, - ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 567 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3844016207] = { "100% chance to Trigger Level 1 Raise Spiders on Kill" }, } }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5292 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10033 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10756 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6568 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10657 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10023 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, - ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4206 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6831 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9103 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9344 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7393 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7282 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8881 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7499 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10627 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8883 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 6002 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7392 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9167 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10505 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, - ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3162 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, - ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2913 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [628716294] = { "Action Speed cannot be modified to below base value" }, } }, - ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2914 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below base value" }, } }, - ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10080 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, - ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 807 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, - ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 806 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, - ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 388 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7199 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7294 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6585 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, - ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 502 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, - ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4294 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, - ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4182 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7470 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7990 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6433 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 495 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7143 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, - ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4617 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5993 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9860, 9860.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10371 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10371 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9010 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9069 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9108 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+2 to Level of Socketed Herald Gems" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, - ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1791 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180687797] = { "15% increased Area of Effect while you have no Frenzy Charges" }, } }, - ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1790 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Damage Bonus while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4149 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9137 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6567 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6009 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6816, 6816.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2619 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Fire Damage from Hits also Contributes to Poison Magnitude" }, } }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2618 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Cold Damage from Hits also Contributes to Poison Magnitude" }, } }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2620 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Lightning Damage from Hits also Contributes to Poison Magntiude" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6589 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5706 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7568 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, - ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 493 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, - ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, - ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5590 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10729 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, - ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, - ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 604 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 542 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, - ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3661 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, - ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10172 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6447 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, - ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(10-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6544 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges" }, } }, - ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3160 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [3655758456] = { "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, - ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 486 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 490 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 22 Blight Skill" }, } }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, 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 = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Brutality Skill" }, } }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5578 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, - ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2897 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "50% less Poison Duration" }, } }, - ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3987 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Hit Chance" }, } }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 385 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, - ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 384 }, 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 = { 383 }, 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 = { 383 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 15 Innervate" }, } }, - ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 377 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 18 Ice Bite" }, } }, - ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 541 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8958, 8958.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9494 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6798 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6846 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9495 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4880 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, - ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, - ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1440, 1445 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, - ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 543 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3988, 3988.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3990, 3990.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3989, 3989.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion" }, } }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3991 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion" }, } }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3992 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3993 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 540 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3670477918] = { "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell" }, } }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, - ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 77 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, - ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["UniqueLocalNoAttributeRequirements1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["UniqueLocalNoAttributeRequirements2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, 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 = { 126 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, - ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 127 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +30% to Quality" }, } }, - ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 128 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10248 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6560 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, - ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 459 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, - ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 465 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, - ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 467 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, - ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 534 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2700934265] = { "Grants Level 25 Vaal Impurity of Fire Skill" }, } }, - ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 535 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1300125165] = { "Grants Level 25 Vaal Impurity of Ice Skill" }, } }, - ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 536 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2959369472] = { "Grants Level 25 Vaal Impurity of Lightning Skill" }, } }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9980 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1529 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7665 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1349 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8007 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, - ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6853 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, - ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7930 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7902, 7903 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, - ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 803, 804 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 557 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, - ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 555 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, - ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 558 }, 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 = { 556 }, 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 = { 560 }, 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 = { 382 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 503, 503.1, 503.2, 503.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1757548756] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills" }, } }, - ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 504, 504.1, 504.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9503 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4820 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, - ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5591 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6008 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9170 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10315, 10315.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, - ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4430 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5271 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5266 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5284 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 6003 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, - ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "40% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1616 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "30% reduced Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 594 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6635 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6688 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5743 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10495 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6133 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10245 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10245 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9576 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6463 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6313 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5687 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10741 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10746 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10750 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10749 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, - ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2630 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "All Elemental Damage from Hits Contributes to Shock Chance" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 573 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7628 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7706 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7704 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7629 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7636 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7625 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6091 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 25 Elemental Penetration" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 1 Elemental Penetration" }, } }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4044 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 4046 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of maximum Life when you lose a Spirit Charge" }, } }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 4047 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge" }, } }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9298 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, - ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 595 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1992516007] = { "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge" }, } }, - ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4043 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [328131617] = { "Gain a Spirit Charge every second" }, } }, - ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4045 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2663792764] = { "You lose all Spirit Charges when taking a Savage Hit" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10637 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 578 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3308936917] = { "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill" }, } }, - ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 579 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2603798371] = { "Trigger Level 20 Shade Form when Hit" }, } }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8977 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5589 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6284 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9461 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "12 to 14 Added Cold Damage per Frenzy Charge" }, } }, - ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3076 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8974 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4187 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "(6-10)% increased Critical Damage Bonus per Power Charge" }, } }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9634 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, - ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 598 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3262369040] = { "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill" }, } }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4016, 6935 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, - ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3997 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your other Ring is an Elder Item" }, } }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3994 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your other Ring is a Shaper Item" }, } }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3995 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your other Ring is an Elder Item" }, } }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3996 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your other Ring is a Shaper Item" }, } }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 4003 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of maximum Life when you use a Mana Flask" }, } }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 4004 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Recovery from Mana Flasks also applies to Life" }, } }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10684 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (6-8) to (10-12) Physical Damage to Spells" }, } }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 602 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "green_herring", "skill" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, - ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 601 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, - ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 603 }, 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 = { 500 }, 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 = { 512 }, 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 = { 508 }, 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 = { 531 }, 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 = { 524 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [989878105] = { "Grants Level 20 Intimidating Cry Skill" }, } }, - ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 513 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1462 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5998 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5998 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7498 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6265 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5505 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8676 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9629 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, - ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4037 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [637690626] = { "Gain a Frenzy Charge on every 50th Rampage Kill" }, } }, - ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4036 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4119032338] = { "2% increased Area of Effect per 25 Rampage Kills" }, } }, - ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2259 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5643 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5643 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9842 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9842 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, - ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 334 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, - ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 332 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 16 Cluster Trap" }, } }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8964 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8975 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, - ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4599 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, - ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4460 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, - ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4459 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7500 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8015 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, - ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4598 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, - ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 580 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, - ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7872, 7875 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7871, 7874 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7873, 7876 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, - ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, - ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, - ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on kill", statOrder = { 2403 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on kill" }, } }, - ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2405 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on kill" }, } }, - ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2407 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on kill" }, } }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9168 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, - ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9171 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of maximum Life per second per Endurance Charge" }, } }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2402 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of maximum Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7520 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2917 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, - ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2994 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6009 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8967 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, - ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(6-8) to (12-13) Added Cold Damage per Frenzy Charge" }, } }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8971 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, - ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4171 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, - ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4172 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, - ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4173 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9286 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 9285 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9288 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9463 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, - ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1426 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6435 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, - ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3888 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2713233613] = { "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, } }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6815 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6816, 6816.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6780 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, - ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1588 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, - ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Hit" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4473 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, - ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1785 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "10% increased Accuracy Rating per Frenzy Charge" }, } }, - ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4474 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5854 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5855 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "3% increased Critical Damage Bonus per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5589 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9454 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9456 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, - ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7381 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6828 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6749 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, - ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3708 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3780437763] = { "You cannot be Stunned while at maximum Endurance Charges" }, } }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6787 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9323 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10735 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10736 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, - ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 600 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4001 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "chaos" }, tradeHashes = { [1860646468] = { "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped" }, } }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7217 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7216 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5678 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7547 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 932 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 648 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [806698863] = { "Consecrated Ground created by this Flask has Tripled Radius" }, } }, - ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 745 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, - ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 741 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 779 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1655 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [209387074] = { "Enemies you kill are Shocked" }, } }, - ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4048, 4049 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [108334292] = { "Gain a Divine Charge on Hit" }, [3997368968] = { "+10 to maximum Divine Charges" }, } }, - ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4051, 4051.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8856 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, - ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8857 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, - ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5770 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, - ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9918 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, - ["UniqueCannotHaveEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1917, 7676 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2913, 7669 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below base value" }, [628716294] = { "Action Speed cannot be modified to below base value" }, } }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8025 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8026 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have", statOrder = { 2738 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1879586312] = { "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have" }, } }, - ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2737 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3941641418] = { "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have" }, } }, - ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2739 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have" }, } }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2740 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, - ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 507 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2721815210] = { "Grants Level 30 Precision Skill" }, } }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9515 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9516 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 185 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3274973940] = { "Socketed Gems are Supported by Level 25 Divine Blessing" }, } }, - ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 549 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHashes = { [3171958921] = { "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown" }, } }, - ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 607, 607.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [1378815167] = { "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown" }, } }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7163 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7164 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7548 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7162 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8890 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7550 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7150 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7151 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6573 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7149 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8867 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6574 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7153 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7154 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5686 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7152 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8850 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5688 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7158 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7159 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9449 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7156 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9820 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9457 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7146 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7147 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5588 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7145 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4249 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5593 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10286 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, - ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9877 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, - ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5579 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, - ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4357 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6271 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6306 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9227 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9810 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9809 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9005 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8995 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8006 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7974 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9221 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9840 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7827 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7825 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 932 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 625, 7647 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 625, 7602 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 625, 7623 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 625, 7925 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 625, 7697 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 625, 7619 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4548 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4549 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10658 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, - ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 91, 280 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 941, 1466 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7758 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 1457 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, - ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of Damage taken bypasses Energy Shield" }, } }, - ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7790 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7737 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 439 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9812, 9812.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10402 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, - ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4275 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6338 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7674 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7905, 7905.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10412 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, - ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10412 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, - ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, - ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, - ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5561 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, - ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5762 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, - ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 1039 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, - ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6249 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2902 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, - ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-30)% reduced Presence Area of Effect" }, } }, - ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% reduced Light Radius" }, } }, - ["PassageUniqueAmanamuHybridArmourAndArmourElemental"] = { affix = "", "(30-40)% increased Armour", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 882, 1027 }, level = 1, group = "UniqueHybridArmourAndArmourElemental", weightKey = { }, weightVal = { }, modTags = { "defences", "physical", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, [2866361420] = { "(30-40)% increased Armour" }, } }, - ["PassageUniqueAmanamuHybridStrengthPercentGainAsFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", "(4-6)% increased Strength", statOrder = { 863, 999 }, level = 1, group = "UniqueHybridStrengthPercentGainAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, - ["PassageUniqueKurgalHybridManaPercentTakenBeforeLife"] = { affix = "", "(5-10)% increased maximum Mana", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 894, 2472 }, level = 1, group = "UniqueHybridManaPercentTakenBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, [2748665614] = { "(5-10)% increased maximum Mana" }, } }, - ["PassageUniqueKurgalHybridEnergyShieldAndDelay"] = { affix = "", "(30-40)% increased maximum Energy Shield", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 886, 1033 }, level = 1, group = "UniqueHybridEnergyShieldAndDelay", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, - ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 6745, 10573 }, level = 1, group = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "minion" }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["PassageUniqueKurgalHybridIntelligencePercentGainAsCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", "(4-6)% increased Intelligence", statOrder = { 866, 1001 }, level = 1, group = "UniqueHybridIntelligencePercentGainAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, - ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { affix = "", "(5-10)% increased maximum Life", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 889, 9686 }, level = 1, group = "UniqueHybridLifeRecoverLifeOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["PassageUniqueUlamanHybridEvasionAndDeflection"] = { affix = "", "(30-40)% increased Evasion Rating", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 884, 1028 }, level = 1, group = "UniqueHybridEvasionAndDeflection", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", "Projectiles have (15-20)% chance to Chain an additional time from terrain", statOrder = { 5515, 9543 }, level = 1, group = "UniqueHybridChainTerrainAndFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, [4081947835] = { "Projectiles have (15-20)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 6824, 10572 }, level = 1, group = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["PassageUniqueUlamanHybridDexterityAndGainAsLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", "(4-6)% increased Dexterity", statOrder = { 869, 1000 }, level = 1, group = "UniqueHybridDexterityAndGainAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, - ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4691, 4747 }, level = 1, group = "UniqueHybridSlowAndSlowOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(6-10)% increased Spirit" }, } }, - ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-40)% increased Armour" }, } }, - ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10250 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, - ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (20-30)% reduced Critical Damage Bonus" }, } }, - ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-16)% increased Skill Effect Duration" }, } }, - ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5924 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(30-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-40)% increased Ignite Magnitude" }, } }, - ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, - ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(15-25)% increased Area of Effect of Curses" }, } }, - ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, - ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, } }, - ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4122 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies {0:-d}% to Fire Resistance" }, } }, - ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4123 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, - ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5333 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, - ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-10)% increased maximum Mana" }, } }, - ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, - ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, } }, - ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 8003 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, - ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6745 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9897 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, - ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-40)% increased Critical Hit Chance" }, } }, - ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, - ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, - ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(30-40)% increased Magnitude of Chill you inflict" }, } }, - ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (12-18)% increased Area of Effect", statOrder = { 9991 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-18)% increased Area of Effect" }, } }, - ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, - ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, } }, - ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4120 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies {0:-d}% to Cold Resistance" }, } }, - ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4125 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4132 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4553 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, - ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, } }, - ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, - ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7505 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, - ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6824 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, - ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7452 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, - ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-25)% increased Critical Damage Bonus" }, } }, - ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(30-40)% increased Magnitude of Shock you inflict" }, } }, - ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(12-18)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(12-18)% increased Area of Effect for Attacks" }, } }, - ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, - ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4126 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies {0:-d}% to Lightning Resistance" }, } }, - ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4124 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4252 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["PassageUniqueAmanamuAbyssalWastingPreventsCrits"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", statOrder = { 4119 }, level = 1, group = "UniqueAbyssalWastingPreventsCrits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1986082444] = { "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits" }, } }, - ["PassageUniqueKurgalAbyssalWastingPreventsEleAilments"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", statOrder = { 4118 }, level = 1, group = "UniqueAbyssalWastingPreventsEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4149923257] = { "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments" }, } }, - ["PassageUniqueKurgalAbyssalWastingDebilitates"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Debilitated", statOrder = { 4116 }, level = 1, group = "UniqueAbyssalWastingDebilitates", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668499289] = { "Targets affected by Abyssal Wasting you inflict are Debilitated" }, } }, - ["PassageUniqueAmanamuAbyssalWastingHinders"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Hindered", statOrder = { 4117 }, level = 1, group = "UniqueAbyssalWastingHinders", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4097102799] = { "Targets affected by Abyssal Wasting you inflict are Hindered" }, } }, - ["PassageUniqueUlamanAbyssalWastingBlinds"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Blinded", statOrder = { 4115 }, level = 1, group = "UniqueAbyssalWastingBlinds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3963171183] = { "Targets affected by Abyssal Wasting you inflict are Blinded" }, } }, - ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { affix = "", "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", statOrder = { 6340 }, level = 1, group = "UniqueAbyssalWastingPhysExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3134931479] = { "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage" }, } }, - ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { affix = "", "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", statOrder = { 7276 }, level = 1, group = "UniqueAbyssalWastingImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3893409915] = { "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { affix = "", "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", statOrder = { 5557 }, level = 1, group = "UniqueAbyssalWastingWitherChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2614251226] = { "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingDoubledPower"] = { affix = "", "Targets affected by Abyssal Wasting in your Presence have double Power", statOrder = { 6368 }, level = 1, group = "UniqueAbyssalWastingDoubledPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1153919467] = { "Targets affected by Abyssal Wasting in your Presence have double Power" }, } }, - ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { affix = "", "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6375, 6375.1 }, level = 1, group = "UniqueAbyssalWastingReviveChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [19819865] = { "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { affix = "", "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges", statOrder = { 6371, 6371.1 }, level = 1, group = "UniqueAbyssalWastingGrantsFlaskCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2051332707] = { "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges" }, } }, - ["PassageUniqueKurgalAbyssalWastingVolatility"] = { affix = "", "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", statOrder = { 6373 }, level = 1, group = "UniqueAbyssalWastingVolatility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2952939159] = { "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingRage"] = { affix = "", "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", statOrder = { 6372 }, level = 1, group = "UniqueAbyssalWastingRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2934385135] = { "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { affix = "", "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6374, 6374.1 }, level = 1, group = "UniqueAbyssalWastingOnslaughtChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3451259830] = { "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting" }, } }, - ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7743 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7740 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7740 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7742 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, - ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7741 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, - ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7744 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, - ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2081918629] = { "(50-100)% increased effect of Socketed Augment Items" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", statOrder = { 81 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [231726304] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Shield" }, } }, - ["UniqueAtziriSplendourArmour1"] = { affix = "", "(200-300)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, - ["UniqueAtziriSplendourEvasion1"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-300)% increased Evasion Rating" }, } }, - ["UniqueAtziriSplendourEnergyShield1"] = { affix = "", "(200-300)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-300)% increased Energy Shield" }, } }, - ["UniqueAtziriSplendourArmourAndEvasion1"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, - ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-180)% increased Armour and Energy Shield" }, } }, - ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-180)% increased Evasion and Energy Shield" }, } }, - ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-120)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9922 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, - ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 61 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [250458861] = { "Only Soul Cores can be Socketed in this item" }, } }, - ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6477 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, - ["UniqueMinionsExplodeAsPercentPhysicalOnDeath1"] = { affix = "", "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres", statOrder = { 10416, 10416.1 }, level = 1, group = "UniqueMinionsExplodeOnDeathDealingPercentOfLifeAsPhys", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [4166288804] = { "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres" }, } }, - ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 629 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullLife__2"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, - ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 744, 747, 758 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, - ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 932 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, - ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6894 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3848 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, - ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4413 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, - ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6562 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, - ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10430 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, - ["UniqueOnlySocketRunes1"] = { affix = "", "Only Runes can be Socketed in this item", statOrder = { 60 }, level = 1, group = "OnlySocketRunes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [326412910] = { "Only Runes can be Socketed in this item" }, } }, - ["UniqueLocalIncreasedRuneEffect1"] = { affix = "", "200% increased effect of Socketed Runes", statOrder = { 176 }, level = 1, group = "LocalIncreasedRuneEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [704409219] = { "200% increased effect of Socketed Runes" }, } }, - ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5732 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, - ["UniqueDeflectionRatingPerMissingEnergyShield1"] = { affix = "", "+(70-100) to Deflection Rating per 50 missing Energy Shield", statOrder = { 10 }, level = 1, group = "FlatDeflectionRatingPer50MissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1207006772] = { "+(70-100) to Deflection Rating per 50 missing Energy Shield" }, } }, - ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10667 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, - ["UniqueCompanionDamageAgainstMarkedTargets1"] = { affix = "", "Companions deal (50-100)% increased damage to your Marked targets", statOrder = { 1724 }, level = 78, group = "CompanionDamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067622524] = { "Companions deal (50-100)% increased damage to your Marked targets" }, } }, - ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6854, 6854.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, - ["UniqueHitDamageBypassesEnergyShieldWhileBelowHalfEnergyShield1"] = { affix = "", "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", statOrder = { 1459 }, level = 1, group = "ESBypassWhileBelowHalfES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1311130924] = { "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" }, } }, - ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1136 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, - ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7660 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7696 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, - ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 50 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, - ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, - ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, - ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1661347488] = { "Lose (2.5-5)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6119 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10203 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1537 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2357996603] = { "(-30-30)% reduced Totem Duration" }, } }, - ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2925 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3910614548] = { "25% increased Attack and Cast Speed if you've summoned a Totem Recently" }, } }, - ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-25)% increased amount of Life Leeched" }, } }, - ["UniqueMutatedVaalLifeLeechAmount1"] = { affix = "", "(20-30)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-30)% increased amount of Life Leeched" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { affix = "", "+(100-150) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "25% increased Flammability Magnitude" }, } }, - ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [472520716] = { "(6-10)% of Damage taken Recouped as Mana" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-150) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(50-150) to Evasion Rating" }, } }, - ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(1-60)% increased Fire Damage" }, } }, - ["UniqueMutatedVaalColdDamagePercentage"] = { affix = "", "(1-60)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(1-60)% increased Cold Damage" }, } }, - ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(1-60)% increased Lightning Damage" }, } }, - ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(1-60)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-60)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7364 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, - ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5341 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, - ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(5-10)% of Damage taken Recouped as Life" }, } }, - ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(10-30)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [1379411836] = { "+(17-23) to all Attributes" }, } }, - ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5847 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9704 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(15-25)% increased Flammability Magnitude" }, } }, - ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(26-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5522 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, - ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2761 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [2839036860] = { "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9327 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-60-60)% to Lightning Resistance" }, } }, - ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7510 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(60-75) to Armour" }, } }, - ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, - ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3871 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3481736410] = { "(10-25)% increased Area of Effect if you've Killed Recently" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, - ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, - ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, - ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [1782086450] = { "(33-66)% faster start of Energy Shield Recharge" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, - ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(15-30)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6490 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, - ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [3759663284] = { "(16-24)% increased Projectile Speed" }, } }, - ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6860 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, - ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [498214257] = { "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, - ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-120) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8840 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, - ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6810 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, - ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "25% increased Attack Speed" }, } }, - ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(33-66)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, - ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9744 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, - ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5564 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, - ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 10031 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, - ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 10030 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, - ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [4283407333] = { "+(2-4) to Level of all Skills" }, } }, - ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [3655769732] = { "+(5-10)% to Quality of all Skills" }, } }, - ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-60) to (70-90) Physical Damage" }, } }, - ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10626 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4712 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(25-50)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(220-320) to Armour" }, } }, - ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, - ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2279 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value" }, } }, - ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "has_attack_mod", "mutatedunique_vaal", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-150)% increased Elemental Damage with Attacks" }, } }, - ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(2-4)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10316 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, - ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-200) to Armour" }, } }, - ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(100-200) to Evasion Rating" }, } }, - ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(66-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(66-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4065505214] = { "(10-20)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, - ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1073942215] = { "(10-20)% increased Freeze Duration on Enemies" }, } }, - ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, - ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-20)% increased Curse Magnitudes" }, } }, - ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6261 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, - ["UniqueMutatedVaalDamagePerCurse"] = { affix = "", "(10-15)% increased Damage per Curse on you", statOrder = { 1173 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1019020209] = { "(10-15)% increased Damage per Curse on you" }, } }, - ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1440 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, - ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-6)% of Physical Attack Damage as Mana" }, } }, - ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6413 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, - ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6849 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, - ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9706 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, - ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-40)% increased effect of Arcane Surge on you" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(150-200) to Evasion Rating" }, } }, - ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10284 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, - ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, - ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(25-50)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6521, 6521.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, - ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7488 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, - ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1422 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3470876581] = { "+(100-150) to Evasion Rating while on Low Life" }, } }, - ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3942946753] = { "Regenerate (2-3)% of maximum Life per second while on Low Life" }, } }, - ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on Hit" }, } }, - ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9496 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, - ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 964 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skills" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4682 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, - ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 2210 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3190121041] = { "(50-100)% of Volatility Physical Damage Taken as Cold Damage" }, } }, - ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7238 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6441 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, - ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9492 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, - ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5521 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, - ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5815 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, - ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHashes = { [3872306017] = { "(-60-60)% reduced Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4738 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, - ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-26)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(2-4) to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, - ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, - ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4520 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, - ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6299 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(260-400) to Armour" }, } }, - ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-20)% Lightning Resistance" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10203 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7904, 7904.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, - ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 882 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [2866361420] = { "(-30-30)% reduced Armour" }, } }, - ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 884 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [2106365538] = { "(-30-30)% reduced Evasion Rating" }, } }, - ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [3489782002] = { "+(-30-30) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalFireDamagePercentage1"] = { affix = "", "(-30-30)% reduced Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(-30-30)% reduced Fire Damage" }, } }, - ["UniqueMutatedVaalColdDamagePercentage1"] = { affix = "", "(-30-30)% reduced Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(-30-30)% reduced Cold Damage" }, } }, - ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(-30-30)% reduced Lightning Damage" }, } }, - ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(-30-30)% reduced Chaos Damage" }, } }, - ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "mutatedunique_vaal", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (-30-30)% reduced Damage" }, } }, - ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9988 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, - ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9994 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 10006 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4711 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10705 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6120 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, - ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(70-100) to Evasion Rating" }, } }, - ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10673 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, - ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10471 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10472 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10470 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10474 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10473 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10469 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, - ["UniqueMutatedVaalCurseGemLevel"] = { affix = "", "+(3-5) to Level of all Curse Skills", statOrder = { 971 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [805298720] = { "+(3-5) to Level of all Curse Skills" }, } }, - ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-40)% of Damage as Extra Fire Damage" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, - ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, - ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4705 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, - ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7654 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, - ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHashes = { [1310194496] = { "(-30-30)% reduced Global Physical Damage" }, } }, - ["UniqueMutatedVaalIncreasedLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalAddedMaximumEnergyShield"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalDamageLifeRecoup"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4806 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [1062208444] = { "(40-60)% increased Armour" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-60)% increased Armour and Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(40-60)% increased Evasion and Energy Shield" }, } }, - ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3639275092] = { "(30-50)% reduced Attribute Requirements" }, } }, - ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [3771516363] = { "(6-9)% additional Physical Damage Reduction" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(25-35)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(25-35)% of Damage taken Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(25-35)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 9% of Physical Attack Damage as Life" }, } }, - ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 6% of Physical Attack Damage as Mana" }, } }, - ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, - ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [2866361420] = { "(40-60)% increased Armour" }, } }, - ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [2106365538] = { "(40-60)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-60)% increased maximum Energy Shield" }, } }, - ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(100-150)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(100-150)% increased Thorns damage" }, } }, - ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(31-47)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-47)% to Chaos Resistance" }, } }, - ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, - ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(4-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(4-5)% to Maximum Fire Resistance" }, } }, - ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(4-5)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(4-5)% to Maximum Cold Resistance" }, } }, - ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(4-5)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(4-5)% to Maximum Lightning Resistance" }, } }, - ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, - ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (25-40)% Fire Resistance" }, } }, - ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (25-40)% Cold Resistance" }, } }, - ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (25-40)% Lightning Resistance" }, } }, - ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, - ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, - ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+2 to Maximum Frenzy Charges" }, } }, - ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [803737631] = { "+(150-300) to Accuracy Rating" }, } }, - ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [680068163] = { "(50-75)% increased Stun Threshold" }, } }, - ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(50-75)% increased Freeze Threshold" }, } }, - ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(40-50)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(40-50)% reduced Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [44972811] = { "(35-50)% increased Life Regeneration rate" }, } }, - ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [789117908] = { "(35-50)% increased Mana Regeneration Rate" }, } }, - ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-5)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [480796730] = { "+(4-5)% to maximum Block chance" }, } }, - ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1519 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [762600725] = { "(40-55) Life gained when you Block" }, } }, - ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2122183138] = { "(20-30) Mana gained when you Block" }, } }, - ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-35)% to all Elemental Resistances" }, } }, - ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+2 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+2 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+2 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+2 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3917489142] = { "(25-35)% increased Rarity of Items found" }, } }, - ["CorruptionUpgradeAllDamage1"] = { affix = "", "(40-60)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [2154246560] = { "(40-60)% increased Damage" }, } }, - ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [970213192] = { "(8-16)% increased Skill Speed" }, } }, - ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-50)% increased Critical Damage Bonus" }, } }, - ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+2 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [4283407333] = { "+2 to Level of all Skills" }, } }, - ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, - ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(35-50) to Dexterity" }, } }, - ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(35-50) to Intelligence" }, } }, - ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, - ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, - ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-180)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-180)% increased Spell Damage" }, } }, - ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-45)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-45)% increased Spirit" }, } }, - ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-44) to (55-72) Fire Damage" }, } }, - ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-80) to (91-101) Fire Damage" }, } }, - ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-42) to (53-69) Cold Damage" }, } }, - ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { affix = "", "Adds (51-57) to (88-96) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (51-57) to (88-96) Cold Damage" }, } }, - ["CorruptionUpgradeLocalAddedLightningDamage1"] = { affix = "", "Adds (1-2) to (79-103) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (79-103) Lightning Damage" }, } }, - ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (131-141) Lightning Damage" }, } }, - ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (27-31) to (42-48) Chaos damage" }, } }, - ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-46) to (67-75) Chaos damage" }, } }, - ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(15-25)% to Critical Damage Bonus" }, } }, - ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (50-75)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (50-75)% increased Stun Buildup" }, } }, - ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, - ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(25-50)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2301191210] = { "(25-50)% chance to Blind Enemies on hit" }, } }, - ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(120-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-150)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(45-65)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(45-65)% increased Ignite Magnitude" }, } }, - ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, - ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(25-50)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Magnitude of Shock you inflict" }, } }, - ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-75)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3695891184] = { "Gain (40-55) Life per enemy killed" }, } }, - ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, - ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-35)% increased Cast Speed" }, } }, - ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(35-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-50)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (50-75)% increased Damage" }, } }, - ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (15-25)% increased Attack Speed" }, } }, - ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (15-25)% increased Cast Speed" }, } }, - ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-45)% increased Critical Damage Bonus" }, } }, - ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2321178454] = { "(50-75)% chance to Pierce an Enemy" }, } }, - ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-40)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-40)% chance to Chain an additional time from terrain" }, } }, - ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(14-16) to Strength" }, } }, - ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(14-16) to Dexterity" }, } }, - ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(14-16) to Intelligence" }, } }, - ["CorruptionUpgradeJewelFireResist1"] = { affix = "", "+(15-20)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-20)% to Fire Resistance" }, } }, - ["CorruptionUpgradeJewelColdResist1"] = { affix = "", "+(15-20)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-20)% to Cold Resistance" }, } }, - ["CorruptionUpgradeJewelLightningResist1"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, - ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(30-50)% of Armour also applies to Elemental Damage" }, } }, - ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (30-50)% of Evasion Rating" }, } }, - ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6119 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, - ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, - ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, - ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1450 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-20)% increased Mana Recovery rate" }, } }, - ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3240073117] = { "(10-20)% increased Life Recovery rate" }, } }, - ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 2211 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHashes = { [1904530666] = { "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, - ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, - ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10255 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHashes = { [4129825612] = { "(3-6)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2197 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(3-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2206 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(3-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(3-6)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-3)% to Maximum Chaos Resistance" }, } }, - ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9765 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, - ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, - ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9766 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, - ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4704 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, - ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { affix = "", "Gain (20-35)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (20-35)% of Damage as Extra Fire Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { affix = "", "Gain (20-35)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (20-35)% of Damage as Extra Cold Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { affix = "", "Gain (20-35)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (20-35)% of Damage as Extra Lightning Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { affix = "", "Gain (20-35)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (20-35)% of Damage as Extra Physical Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { affix = "", "Gain (20-35)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (20-35)% of Damage as Extra Chaos Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { affix = "", "Gain (35-50)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (35-50)% of Damage as Extra Fire Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { affix = "", "Gain (35-50)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (35-50)% of Damage as Extra Cold Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { affix = "", "Gain (35-50)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (35-50)% of Damage as Extra Lightning Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (35-50)% of Damage as Extra Physical Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (35-50)% of Damage as Extra Chaos Damage" }, } }, - ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [3655769732] = { "+10% to Quality of all Skills" }, } }, - ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, - ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, - ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-10)% increased Dexterity" }, } }, - ["CorruptionUpgradePercentageIntelligence"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["CorruptionUpgradePercentageAllAttributesCopy"] = { affix = "", "(3-6)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(3-6)% increased Attributes" }, } }, - ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, - ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, - ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [2541588185] = { "(15-30)% increased Duration" }, } }, - ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, - ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-4) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, - ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, - ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, - ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, - ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 957 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [2901213448] = { "+(1-2) to Level of all Elemental Skills" }, } }, - ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5903 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, - ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, - ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1073942215] = { "(20-30)% increased Freeze Duration on Enemies" }, } }, - ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, - ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [274716455] = { "(60-90)% increased Critical Spell Damage Bonus" }, } }, - ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, - ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, - ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [3759663284] = { "(20-40)% increased Projectile Speed" }, } }, - ["CorruptionUpgradeAdditionalChainChance"] = { affix = "", "Projectiles have (20-40)% additional chance to Chain", statOrder = { 4643 }, level = 1, group = "AdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3919642001] = { "Projectiles have (20-40)% additional chance to Chain" }, } }, - ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7261 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, - ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(20-30)% reduced Chill Duration on you" }, } }, - ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, - ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7956 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10035 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4736 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, - ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, - ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9894 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, - ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6166 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, - ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7391 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage4"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10708 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "5% reduced Cast Speed" }, } }, - ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7193 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, - ["HandWrapsUniqueStrength47"] = { affix = "", "(15-20)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(15-20)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5541, 5542, 5545 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, - ["HandWrapsUniqueIncreasedSkillSpeed1"] = { affix = "", "(13-20)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-20)% increased Attack Speed" }, } }, - ["HandWrapsUniqueMaximumManaIncrease3"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["HandWrapsUniqueIncreasedLife9"] = { affix = "", "(7-9)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(7-9)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueCriticalMultiplier2"] = { affix = "", "+(1.5-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.5-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6093 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, - ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4759 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, - ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10258 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedLife58"] = { affix = "", "(12-15)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(12-15)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLifeLeech2"] = { affix = "", "Leech (13-17)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (13-17)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10701 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueStrength41"] = { affix = "", "(18-24)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(18-24)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "Attack Damage with Hits is Lucky while you are Surrounded", statOrder = { 4522 }, level = 1, group = "LuckyAttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1292739266] = { "Attack Damage with Hits is Lucky while you are Surrounded" }, } }, - ["HandWrapsUniqueCriticalMultiplier1"] = { affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage2"] = { affix = "", "Attacks Gain (11-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (11-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueOverrideWeaponBaseCritical1"] = { affix = "", "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(3-6)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRating4"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueAddedColdDamage1"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (10-15)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsUniqueFreezeDamageIncrease2"] = { affix = "", "All Damage from Hits Contributes to Freeze Buildup", statOrder = { 4270 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage from Hits Contributes to Freeze Buildup" }, } }, - ["HandWrapsUniqueChillEffect1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 1, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, - ["HandWrapsUniqueColdResist24"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(15-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7944 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "25% more Attack damage while on Low Mana" }, } }, - ["HandWrapsUniqueIncreasedAccuracy4"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsUniqueIntelligence19"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueChaosResist6"] = { affix = "", "+1% to Maximum Chaos Resistance", "+(7-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5246 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, - ["HandWrapsUniqueLifeRegeneration12"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.5-1.5)% of maximum Life per second" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed3"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Critical Hit chance for Attacks is (25-40)%", statOrder = { 4502 }, level = 1, group = "AttackCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3998836319] = { "Critical Hit chance for Attacks is (25-40)%" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed16"] = { affix = "", "(10-20)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-20)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9241 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, - ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6933 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, - ["HandWrapsUniqueElementalDamageConvertToFire1"] = { affix = "", "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2639, 2639.1 }, level = 1, group = "PhysicalDamageCanFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3268818374] = { "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (6-15)% of Fire damage as Extra Physical damage", statOrder = { 1686 }, level = 1, group = "FireDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2848088738] = { "Gain (6-15)% of Fire damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (6-15)% of Cold damage as Extra Physical damage", statOrder = { 1682 }, level = 1, group = "ColdDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1555320175] = { "Gain (6-15)% of Cold damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (6-15)% of Lightning damage as Extra Physical damage", statOrder = { 1678 }, level = 1, group = "LightningDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2098400428] = { "Gain (6-15)% of Lightning damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueFireResist2"] = { affix = "", "+(2-3)% to Maximum Fire Resistance", "+(15-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["HandWrapsUniqueColdResist1"] = { affix = "", "(30-50)% increased Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% increased Chill Duration on you" }, } }, - ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7267 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, - ["HandWrapsUniqueFireDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (4-7)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsUniqueColdDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (4-7)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsUniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-25)% reduced Attack Speed" }, } }, - ["HandWrapsUniqueSpellDamage1"] = { affix = "", "100% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, - ["HandWrapsUniqueIntelligence18"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, - ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { affix = "", "All damage with Attacks Contributes to Electrocution Buildup", statOrder = { 4267 }, level = 1, group = "AllAttackDamageElectrocutes", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2132256285] = { "All damage with Attacks Contributes to Electrocution Buildup" }, } }, - ["HandWrapsUniqueIncreasedCastSpeed7"] = { affix = "", "(9-15)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-15)% increased Attack Speed" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(60-80) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(60-80) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueIncreasedLife15"] = { affix = "", "+(130-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-160) to maximum Life" }, } }, - ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9789 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIntelligence10"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueColdResist30"] = { affix = "", "+2% to Maximum Cold Resistance", "+(20-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2021 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7988 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueCriticalStrikeChance14"] = { affix = "", "(40-60)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Critical Hit Chance" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(15-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedMana48"] = { affix = "", "(15-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "(15-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6281 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, - ["HandWrapsUniqueElementalPenetration1"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["HandWrapsUniqueIncreasedLife10"] = { affix = "", "(6-7)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-7)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage3"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed2"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6140 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsUniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5911 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueStrength23"] = { affix = "", "(10-14)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-14)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueLightningResist23"] = { affix = "", "Gain (15-25)% of Lightning damage as Extra Cold damage", statOrder = { 1680 }, level = 1, group = "LightningDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2236478400] = { "Gain (15-25)% of Lightning damage as Extra Cold damage" }, } }, - ["HandWrapsUniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed11"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6086 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, - ["HandWrapsUniqueIntelligence22"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-25)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed4"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6095 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, - ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6958 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, - ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { affix = "", "Enemies you Curse take (20-30)% increased Damage", statOrder = { 3433 }, level = 1, group = "CursedEnemiesDamageTaken", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1984310483] = { "Enemies you Curse take (20-30)% increased Damage" }, } }, - ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { affix = "", "(4-6)% reduced Movement Speed while Cursed", statOrder = { 2401 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "(4-6)% reduced Movement Speed while Cursed" }, } }, - ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5942 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, - ["HandWrapsUniqueIntelligence12"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueFireResist7"] = { affix = "", "+1% to Maximum Fire Resistance", "+(5-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["HandWrapsUniqueColdResist9"] = { affix = "", "Gain (10-20)% of Fire damage as Extra Lightning damage", statOrder = { 1685 }, level = 1, group = "FireDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [387148449] = { "Gain (10-20)% of Fire damage as Extra Lightning damage" }, } }, - ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7193 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, - ["HandWrapsUniqueCannotImmobilise1"] = { affix = "", "Your Hits cannot Stun enemies", statOrder = { 1611 }, level = 1, group = "CannotStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun enemies" }, } }, - ["HandWrapsUniqueLifeRegeneration23"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, - ["HandWrapsUniqueLightningResist28"] = { affix = "", "+(2-3)% to Maximum Lightning Resistance", "+(15-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["HandWrapsUniqueIncreasedLife54"] = { affix = "", "(10-12)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(10-12)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed1"] = { affix = "", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5820 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, - ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(30-50) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueIncreasedLife6"] = { affix = "", "(6-8)% more damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-8)% more damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10517 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, - ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9361 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, - ["HandWrapsUniqueCriticalMultiplier3"] = { affix = "", "+(1-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsUniqueLightningResist26"] = { affix = "", "+2% to Maximum Lightning Resistance", "+(25-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIntelligence34"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-30)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7989 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed13"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLightningResist29"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(10-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, - ["HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", statOrder = { 3966 }, level = 1, group = "AddedColdDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1247498990] = { "Adds 44 to 66 Cold Damage to Unarmed Melee Hits" }, } }, - ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["HandWrapsUniqueIncreasedSkillSpeed5"] = { affix = "", "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5906 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5402, 5402.1, 5402.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "+(70-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(70-100) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4699 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, - ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10518 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7933 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["HandWrapsUniqueDexterity31"] = { affix = "", "(11-13)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-13)% increased Dexterity" }, } }, - ["HandWrapsUniqueIntelligence31"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8961 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2323 }, level = 1, group = "AreaOfEffectPer20Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["HandWrapsUniqueChaosResist35"] = { affix = "", "+2% to Maximum Chaos Resistance", "+(17-23)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7977 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed9"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4741 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9212 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, - ["HandWrapsDemigodIncreasedSkillSpeed1"] = { affix = "", "15% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "15% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverrideFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1955786041] = { "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken" }, } }, - ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9308 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, - ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10379 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, - ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7917 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7918 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7919 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7920 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, - ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7921 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes" }, } }, - ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6818 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, - ["UniqueAddedPhysicalDamagePerGlobalBlockChance1"] = { affix = "", "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", statOrder = { 2676 }, level = 1, group = "UniqueAddedPhysicalDamagePerGlobalBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2036307261] = { "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance" }, } }, - ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9423 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, - ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { affix = "", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", "Has +1 to maximum Runic Ward per player level", statOrder = { 842, 844, 847 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [298264758] = { "Has +1 to maximum Runic Ward per player level" }, [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["UniqueMoltenShowerSkill1"] = { affix = "", "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", statOrder = { 481 }, level = 1, group = "UniqueGrantsTriggeredMoltenShower", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1867725690] = { "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength" }, } }, - ["UniqueAddedFireDamageToAttacksPer25Strength"] = { affix = "", "5 to 10 Added Attack Fire Damage per 25 Strength", statOrder = { 1821 }, level = 1, group = "AddedFireDamagePer25Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186798932] = { "5 to 10 Added Attack Fire Damage per 25 Strength" }, } }, - ["UniqueLightningDamageToBleedingEnemiesCanElectrocute1"] = { affix = "", "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", statOrder = { 4283 }, level = 1, group = "LightningDamageToBleedingEnemiesCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2700167617] = { "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup" }, } }, - ["UniqueBleedingInflictedOnShockedEnemiesIsAggravated1"] = { affix = "", "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", statOrder = { 4237 }, level = 1, group = "BleedingInflictedOnShockedEnemiesIsAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2293158400] = { "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated" }, } }, - ["VerisiumSacrificialGarbImplicitLifePerCorruptedItem1"] = { affix = "", "1% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 2825 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "1% increased Maximum Life for each Corrupted Item Equipped" }, } }, - ["VerisiumSacrificialGarbImplicitAllResistancePerCorruptedItem1"] = { affix = "", "+1% to all Resistances for each Corrupted Item Equipped", statOrder = { 2831 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "+1% to all Resistances for each Corrupted Item Equipped" }, } }, - ["VerisiumSacrificialGarbImplicitChaosDamagePerCorruptedItem1"] = { affix = "", "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2827 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(2-4)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, - ["EmptyRoarVerisiumBleedDuration1"] = { affix = "", "(20-30)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(20-30)% increased Bleeding Duration" }, } }, - ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, - ["SentryFasterVerisiumImplicitFasterIgnite1"] = { affix = "", "Ignites you inflict deal Damage (30-40)% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-40)% faster" }, } }, - ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, - ["HyssegsClawVerisiumImplicitMinionDamageUpgraded1"] = { affix = "", "Minions deal (51-100)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-100)% increased Damage" }, } }, - ["KeeperOfTheArcVerisiumImplicit3Sockets1"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, - ["KeeperOfTheArcVerisiumImplicitIntelligenceRequirement1"] = { affix = "", "+250 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+250 Intelligence Requirement" }, } }, - ["KeeperOfTheArcVerisiumImplicitUnaffectedbyCurses1"] = { affix = "", "100% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% reduced Duration of Curses on you" }, } }, - ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6711 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, - ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9682 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, - ["SvalinnVerisiumImplicitManaBeforeLife1"] = { affix = "", "(15-25)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(15-25)% of Damage is taken from Mana before Life" }, } }, - ["OlrovasaraVerisiumImplicitLightningToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9255 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, - ["OlrovasaraVerisiumImplicitWeaponRange1"] = { affix = "", "+(1.5-2) metres to Melee Strike Range", statOrder = { 2314 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+(1.5-2) metres to Melee Strike Range" }, } }, - ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7474 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, - ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, - ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can can Overflow maximum Runic Ward", statOrder = { 10519 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can can Overflow maximum Runic Ward" }, } }, - ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6888 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, - ["MjolnerVerisiumImplicitLightningDamage1"] = { affix = "", "(40-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-60)% increased Lightning Damage" }, } }, - ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7564 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, - ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9894 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, - ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { affix = "", "(200-300)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(200-300)% increased Freeze Buildup" }, } }, - ["TheUnleashedVerisiumImplicitArcaneSurgeEffect1"] = { affix = "", "(30-50)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(30-50)% increased effect of Arcane Surge on you" }, } }, - ["TheUnleashedVerisiumImplicitBypassEnergyShield1"] = { affix = "", "(10-15)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-15)% increased Energy Shield Recharge Rate" }, } }, - ["EventidePetalsVerisiumImplicitMaxColdRes1"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, - ["EventidePetalsVerisiumImplicitColdSkills1"] = { affix = "", "+(1-2) to Level of all Cold Skills", statOrder = { 960 }, level = 1, group = "GlobalColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+(1-2) to Level of all Cold Skills" }, } }, - ["EventidePetalsVerisiumImplicitRunicWardPercent1"] = { affix = "", "(15-20)% increased maximum Runic Ward", statOrder = { 891 }, level = 1, group = "GlobalRunicWardPercent", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(15-20)% increased maximum Runic Ward" }, } }, - ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["RuneseekersCallVerisiumImplicitManaRegen1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["RuneseekersCallVerisiumImplicitMaximumRunicWard"] = { affix = "", "+300 to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+300 to maximum Runic Ward" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, - ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7754 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7751 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7753 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7755 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7756 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7752 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, - ["UniqueMaximumEnergyShieldIsPercentOfStrength1"] = { affix = "", "Your maximum Energy Shield is equal to (200-300)% of your Strength", statOrder = { 1907 }, level = 1, group = "MaximumEnergyShieldIsPercentOfStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [758226825] = { "Your maximum Energy Shield is equal to (200-300)% of your Strength" }, } }, - ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6420 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, - ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7511 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, -} \ No newline at end of file + ["AbyssalWastingOnHit"] = { + "Inflict Abyssal Wasting on Hit", + ["affix"] = "", + ["group"] = "AbyssalWastingOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4127, + }, + ["tradeHashes"] = { + [2646093132] = { + "Inflict Abyssal Wasting on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AccuracyAndCritsJewel"] = { + "(6-10)% increased Critical Hit Chance", + "(6-10)% increased Accuracy Rating", + ["affix"] = "of Deadliness", + ["group"] = "AccuracyAndCritsForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 976, + 1332, + }, + ["tradeHashes"] = { + [587431675] = { + "(6-10)% increased Critical Hit Chance", + }, + [624954515] = { + "(6-10)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["AccuracyPerIntelligenceUnique__1"] = { + "+4 Accuracy Rating per 2 Intelligence", + ["affix"] = "", + ["group"] = "AccuracyPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1764, + }, + ["tradeHashes"] = { + [2196657026] = { + "+4 Accuracy Rating per 2 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { + "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "AccuracyRatingWithMaxFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4149, + }, + ["tradeHashes"] = { + [3213407110] = { + "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["Acrobatics"] = { + "Acrobatics", + ["affix"] = "", + ["group"] = "Acrobatics", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10676, + }, + ["tradeHashes"] = { + [383557755] = { + "Acrobatics", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ActorSizeUniqueBeltDemigods1"] = { + "10% increased Character Size", + ["affix"] = "", + ["group"] = "ActorSize", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1792, + }, + ["tradeHashes"] = { + [1408638732] = { + "10% increased Character Size", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ActorSizeUniqueRingDemigods1"] = { + "3% increased Character Size", + ["affix"] = "", + ["group"] = "ActorSize", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1792, + }, + ["tradeHashes"] = { + [1408638732] = { + "3% increased Character Size", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ActorSizeUnique__3"] = { + "10% increased Character Size", + ["affix"] = "", + ["group"] = "ActorSize", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1792, + }, + ["tradeHashes"] = { + [1408638732] = { + "10% increased Character Size", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedArmourWhileStationaryUnique__1"] = { + "+1500 Armour while stationary", + ["affix"] = "", + ["group"] = "AddedArmourWhileStationary", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 3984, + }, + ["tradeHashes"] = { + [2551779822] = { + "+1500 Armour while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { + "Adds (13-17) to (29-37) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (13-17) to (29-37) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { + "Adds (13-17) to (23-29) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (13-17) to (23-29) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { + "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", + ["affix"] = "", + ["group"] = "AddedChaosDamageToAttacksBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 3992, + }, + ["tradeHashes"] = { + [2152491486] = { + "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { + "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", + "Enemies affected by at least 5 Poisons", + ["affix"] = "", + ["group"] = "AddedChaosDamageVsEnemiesWith5Poisons", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 8958, + 8958.1, + }, + ["tradeHashes"] = { + [3829706447] = { + "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", + "Enemies affected by at least 5 Poisons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedColdDamagePerFrenzyChargeUnique__1"] = { + "12 to 14 Added Cold Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "AddedColdDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 3918, + }, + ["tradeHashes"] = { + [3648858570] = { + "12 to 14 Added Cold Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedColdDamagePerPowerChargeUnique__1"] = { + "Adds 10 to 20 Cold Damage to Spells per Power Charge", + ["affix"] = "", + ["group"] = "AddedColdDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1580, + }, + ["tradeHashes"] = { + [3408048164] = { + "Adds 10 to 20 Cold Damage to Spells per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedColdDamagePerPowerChargeUnique__2"] = { + "Adds 50 to 70 Cold Damage to Spells per Power Charge", + ["affix"] = "", + ["group"] = "AddedColdDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1580, + }, + ["tradeHashes"] = { + [3408048164] = { + "Adds 50 to 70 Cold Damage to Spells per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { + "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", + ["affix"] = "", + ["group"] = "AddedColdDamageToSpellsAndAttacks", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + "caster", + }, + ["statOrder"] = { + 1279, + }, + ["tradeHashes"] = { + [1662717006] = { + "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { + "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", + ["affix"] = "", + ["group"] = "AddedColdDamageToSpellsAndAttacks", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + "caster", + }, + ["statOrder"] = { + 1279, + }, + ["tradeHashes"] = { + [1662717006] = { + "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedDamagePerDexterityUnique__1"] = { + "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", + ["affix"] = "", + ["group"] = "AddedDamagePerDexterity", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 3093, + }, + ["tradeHashes"] = { + [2066426995] = { + "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedDamagePerStrengthUnique__1"] = { + "1 to 3 Added Attack Physical Damage per 25 Strength", + ["affix"] = "", + ["group"] = "AddedDamagePerStrength", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 4545, + }, + ["tradeHashes"] = { + [787185456] = { + "1 to 3 Added Attack Physical Damage per 25 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedIntelligenceRequirementsUnique__1"] = { + "+257 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+257 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { + "Adds 1 to 2 Lightning damage to Attacks", + "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", + ["affix"] = "", + ["group"] = "AddedLightningDamagePerDexInRadius", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + 2860, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to 2 Lightning damage to Attacks", + }, + [778050954] = { + "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagePerIntelligenceUnique__1"] = { + "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["affix"] = "", + ["group"] = "AddedLightningDamagePerIntelligence", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 4542, + }, + ["tradeHashes"] = { + [3390848861] = { + "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagePerIntelligenceUnique__2"] = { + "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["affix"] = "", + ["group"] = "AddedLightningDamagePerIntelligence", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 4542, + }, + ["tradeHashes"] = { + [3390848861] = { + "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { + "Adds 3 to 9 Lightning Damage to Spells per Power Charge", + ["affix"] = "", + ["group"] = "AddedLightningDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 8974, + }, + ["tradeHashes"] = { + [4085417083] = { + "Adds 3 to 9 Lightning Damage to Spells per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { + "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", + ["affix"] = "", + ["group"] = "AddedLightningDamagePerShockedEnemyKilled", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 8972, + }, + ["tradeHashes"] = { + [4222857095] = { + "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { + "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", + ["affix"] = "", + ["group"] = "AddedLightningDamageWhileUnarmed", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 2189, + }, + ["tradeHashes"] = { + [3835522656] = { + "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { + "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", + ["affix"] = "", + ["group"] = "AddedLightningDamageWhileUnarmed", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 2189, + }, + ["tradeHashes"] = { + [3835522656] = { + "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { + "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", + ["affix"] = "", + ["group"] = "AddedLightningDamagetoSpellsWhileUnarmed", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 2190, + }, + ["tradeHashes"] = { + [3597806437] = { + "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedManaRegenerationPerDevotion"] = { + "Regenerate 0.6 Mana per Second per 10 Devotion", + ["affix"] = "", + ["group"] = "AddedManaRegenerationPerDevotion", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8006, + }, + ["tradeHashes"] = { + [2042813020] = { + "Regenerate 0.6 Mana per Second per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { + "Adds 5 to 8 Physical Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "AddedPhysicalDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 8977, + }, + ["tradeHashes"] = { + [173438493] = { + "Adds 5 to 8 Physical Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { + "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", + ["affix"] = "", + ["group"] = "AddedPhysicalDamageToAttacksBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 3991, + }, + ["tradeHashes"] = { + [242822230] = { + "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AddedPhysicalToMinionAttacksUnique__1"] = { + "Minions deal (5-8) to (12-16) additional Attack Physical Damage", + ["affix"] = "", + ["group"] = "AddedPhysicalToMinionAttacks", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "physical_damage", + "damage", + "physical", + "minion", + }, + ["statOrder"] = { + 3442, + }, + ["tradeHashes"] = { + [797833282] = { + "Minions deal (5-8) to (12-16) additional Attack Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalArrowPierceImplicitQuiver12_"] = { + "Arrows Pierce an additional Target", + ["affix"] = "", + ["group"] = "AdditionalArrowPierce", + ["level"] = 45, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1550, + }, + ["tradeHashes"] = { + [3423006863] = { + "Arrows Pierce an additional Target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalArrowPierceImplicitQuiver5New"] = { + "Arrows Pierce an additional Target", + ["affix"] = "", + ["group"] = "AdditionalArrowPierce", + ["level"] = 32, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1550, + }, + ["tradeHashes"] = { + [3423006863] = { + "Arrows Pierce an additional Target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalAttackTotemsUnique__1"] = { + "Attack Skills have +1 to maximum number of Summoned Totems", + ["affix"] = "", + ["group"] = "AdditionalAttackTotems", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3895, + }, + ["tradeHashes"] = { + [3266394681] = { + "Attack Skills have +1 to maximum number of Summoned Totems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueDescentShield1_"] = { + "+3% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+3% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldDex1"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldDex2"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldDex4"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldDex5"] = { + "+10% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+10% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldInt4"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStr1"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStr4"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStrDex1"] = { + "+(3-6)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(3-6)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStrDex2"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { + "+(3-5)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(3-5)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStrInt4"] = { + "+6% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+6% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUniqueShieldStrInt6"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__1"] = { + "+(3-5)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(3-5)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__2"] = { + "+6% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+6% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__3"] = { + "+(6-10)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(6-10)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__4"] = { + "+6% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+6% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__5"] = { + "+5% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+5% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__6"] = { + "+(3-4)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(3-4)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__7__"] = { + "+(8-12)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(8-12)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__8_"] = { + "+(9-13)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(9-13)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockChanceUnique__9"] = { + "+(20-25)% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "+(20-25)% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockUniqueBodyDex2"] = { + "+5% to Block chance", + ["affix"] = "", + ["group"] = "AdditionalBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+5% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockUnique__1"] = { + "+(2-4)% to Block chance", + ["affix"] = "", + ["group"] = "AdditionalBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+(2-4)% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockUnique__2"] = { + "+15% to Block chance", + ["affix"] = "", + ["group"] = "BlockPercent", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+15% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalBlockWhileNotCursedUnique__1"] = { + "+10% Chance to Block Attack Damage while not Cursed", + ["affix"] = "", + ["group"] = "AdditionalBlockWhileNotCursed", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4182, + }, + ["tradeHashes"] = { + [3619054484] = { + "+10% Chance to Block Attack Damage while not Cursed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalChainUniqueOneHandMace3"] = { + "Skills Chain +1 times", + ["affix"] = "", + ["group"] = "AdditionalChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1548, + }, + ["tradeHashes"] = { + [1787073323] = { + "Skills Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalChainUnique__1"] = { + "Skills Chain +2 times", + ["affix"] = "", + ["group"] = "AdditionalChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1548, + }, + ["tradeHashes"] = { + [1787073323] = { + "Skills Chain +2 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalChainUnique__2"] = { + "Skills Chain +1 times", + ["affix"] = "", + ["group"] = "AdditionalChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1548, + }, + ["tradeHashes"] = { + [1787073323] = { + "Skills Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { + "Skills Chain an additional time while at maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "AdditionalChainWhileAtMaxFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1581, + }, + ["tradeHashes"] = { + [285624304] = { + "Skills Chain an additional time while at maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalChanceToBlockInOffHandUnique_1"] = { + "+8% Chance to Block Attack Damage when in Off Hand", + ["affix"] = "", + ["group"] = "AdditionalChanceToBlockInOffHand", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 3837, + }, + ["tradeHashes"] = { + [2040585053] = { + "+8% Chance to Block Attack Damage when in Off Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { + "+0.3% Critical Hit Chance per Power Charge", + ["affix"] = "", + ["group"] = "AdditionalCriticalStrikeChancePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 4187, + }, + ["tradeHashes"] = { + [1818900806] = { + "+0.3% Critical Hit Chance per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalCurseOnEnemiesUnique__1"] = { + "You can apply an additional Curse", + ["affix"] = "", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalCurseOnEnemiesUnique__2"] = { + "You can apply an additional Curse", + ["affix"] = "", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalCurseOnEnemiesUnique__3"] = { + "You can apply one fewer Curse", + ["affix"] = "", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply one fewer Curse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { + "An additional Curse can be applied to you", + ["affix"] = "", + ["group"] = "AdditionalCurseOnSelf", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1910, + }, + ["tradeHashes"] = { + [3112863846] = { + "An additional Curse can be applied to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { + "100% increased Melee Damage against Ignited Enemies", + ["affix"] = "", + ["group"] = "AdditionalMeleeDamageToBurningEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1192, + }, + ["tradeHashes"] = { + [17354819] = { + "100% increased Melee Damage against Ignited Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { + "100% increased Melee Damage against Frozen Enemies", + ["affix"] = "", + ["group"] = "AdditionalMeleeDamageToFrozenEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1188, + }, + ["tradeHashes"] = { + [298331790] = { + "100% increased Melee Damage against Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { + "100% increased Melee Damage against Shocked Enemies", + ["affix"] = "", + ["group"] = "AdditionalMeleeDamageToShockedEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1190, + }, + ["tradeHashes"] = { + [1138694108] = { + "100% increased Melee Damage against Shocked Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalPierceWhilePhasingUnique__1"] = { + "Projectiles Pierce 5 additional Targets while you have Phasing", + ["affix"] = "", + ["group"] = "AdditionalPierceWhilePhasing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9573, + }, + ["tradeHashes"] = { + [97250660] = { + "Projectiles Pierce 5 additional Targets while you have Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { + "Skills Fire 3 additional Projectiles for 4 seconds after", + "you consume a total of 12 Steel Shards", + ["affix"] = "", + ["group"] = "AdditionalProjectilesAfterAmmoConsumed", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 9921, + 9921.1, + }, + ["tradeHashes"] = { + [2511521167] = { + "Skills Fire 3 additional Projectiles for 4 seconds after", + "you consume a total of 12 Steel Shards", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalSpellProjectilesUnique__1"] = { + "Spells fire an additional Projectile", + ["affix"] = "", + ["group"] = "AdditionalSpellProjectiles", + ["level"] = 85, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 3976, + }, + ["tradeHashes"] = { + [1011373762] = { + "Spells fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalTotemProjectilesUniqueJewel26"] = { + "Totems fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "AdditionalTotemProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2811, + }, + ["tradeHashes"] = { + [736847554] = { + "Totems fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalTotemsUnique__1"] = { + "+1 to maximum number of Summoned Totems", + ["affix"] = "", + ["group"] = "AdditionalTotems", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1978, + }, + ["tradeHashes"] = { + [429867172] = { + "+1 to maximum number of Summoned Totems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { + "(20-30)% chance to gain an additional Vaal Soul on Kill", + ["affix"] = "", + ["group"] = "AdditionalVaalSoulOnKill", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 2832, + }, + ["tradeHashes"] = { + [1962922582] = { + "(20-30)% chance to gain an additional Vaal Soul on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { + "50% chance to gain an additional Vaal Soul per Enemy Shattered", + ["affix"] = "", + ["group"] = "AdditionalVaalSoulOnShatter", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 2837, + }, + ["tradeHashes"] = { + [1633381214] = { + "50% chance to gain an additional Vaal Soul per Enemy Shattered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AdditionalZombiesPerXStrengthUnique__1"] = { + "+1 to maximum number of Raised Zombies per 500 Strength", + ["affix"] = "", + ["group"] = "AdditionalZombiesPerXStrength", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9344, + }, + ["tradeHashes"] = { + [4056985119] = { + "+1 to maximum number of Raised Zombies per 500 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AilmentEffectPerDevotion"] = { + "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", + ["affix"] = "", + ["group"] = "AilmentEffectPerDevotion", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 9227, + }, + ["tradeHashes"] = { + [1810368194] = { + "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllAttributesImplicitDemigodOneHandSword1"] = { + "+(16-24) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(16-24) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllAttributesImplicitDemigodRing1"] = { + "+(8-12) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 16, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(8-12) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllAttributesImplicitWreath1"] = { + "+(16-24) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(16-24) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllAttributesJewel"] = { + "+(6-8) to all Attributes", + ["affix"] = "of Adaption", + ["group"] = "AllAttributesForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(6-8) to all Attributes", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { + "4% increased Attributes per allocated Keystone", + ["affix"] = "", + ["group"] = "AllAttributesPerAssignedKeystone", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2815, + }, + ["tradeHashes"] = { + [1212897608] = { + "4% increased Attributes per allocated Keystone", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllAttributesTestUniqueAmulet1"] = { + "+500 to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+500 to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageCanChillUnique__1"] = { + "All Damage from Hits Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "AllDamageCanChill", + ["level"] = 21, + ["modTags"] = { + }, + ["statOrder"] = { + 2614, + }, + ["tradeHashes"] = { + [3833160777] = { + "All Damage from Hits Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { + "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", + ["affix"] = "", + ["group"] = "AllDamageInRadiusBecomesFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2852, + }, + ["tradeHashes"] = { + [3446950357] = { + "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageTakenCanChillUnique__1"] = { + "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + ["affix"] = "", + ["group"] = "AllDamageTakenCanChill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2617, + }, + ["tradeHashes"] = { + [1705072014] = { + "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageTakenCanChillUnique__2"] = { + "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + ["affix"] = "", + ["group"] = "AllDamageTakenCanChill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2617, + }, + ["tradeHashes"] = { + [1705072014] = { + "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageTakenCanIgniteUnique__1"] = { + "All Damage Taken from Hits can Ignite you", + ["affix"] = "", + ["group"] = "AllDamageTakenCanIgnite", + ["level"] = 20, + ["modTags"] = { + }, + ["statOrder"] = { + 4275, + }, + ["tradeHashes"] = { + [1405089557] = { + "All Damage Taken from Hits can Ignite you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueBelt11"] = { + "10% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "10% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueHelmetDexInt2"] = { + "25% reduced Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "25% reduced Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueRing6"] = { + "(10-30)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 30, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(10-30)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueRing8"] = { + "10% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "10% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueSceptre8"] = { + "(40-60)% increased Global Damage", + ["affix"] = "", + ["group"] = "AllDamageOnWeapon", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1151, + }, + ["tradeHashes"] = { + [819529588] = { + "(40-60)% increased Global Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUniqueStaff4"] = { + "(40-50)% increased Global Damage", + ["affix"] = "", + ["group"] = "AllDamageOnWeapon", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1151, + }, + ["tradeHashes"] = { + [819529588] = { + "(40-50)% increased Global Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUnique__1"] = { + "10% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "10% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUnique__2"] = { + "(20-25)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(20-25)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUnique__3"] = { + "(250-300)% increased Global Damage", + ["affix"] = "", + ["group"] = "AllDamageOnWeapon", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1151, + }, + ["tradeHashes"] = { + [819529588] = { + "(250-300)% increased Global Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllDamageUnique__4"] = { + "(30-40)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(30-40)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllResistancePerStackableJewelUnique__1"] = { + "+7% to all Elemental Resistances per socketed Grand Spectrum", + ["affix"] = "", + ["group"] = "AllResistancePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 3815, + }, + ["tradeHashes"] = { + [242161915] = { + "+7% to all Elemental Resistances per socketed Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllResistancesDemigodsImplicit"] = { + "+(15-25)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(15-25)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllResistancesImplictBootsDemigods1"] = { + "+(8-16)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(8-16)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllResistancesImplictHelmetDemigods1"] = { + "+(8-16)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(8-16)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AllResistancesJewel"] = { + "+(8-10)% to all Elemental Resistances", + ["affix"] = "of Resistance", + ["group"] = "AllResistancesForJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(8-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { + "Passives in Radius can be Allocated without being connected to your tree", + ["affix"] = "", + ["group"] = "AllocateDisconnectedPassivesDonut", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 814, + }, + ["tradeHashes"] = { + [4077035099] = { + "Passives in Radius can be Allocated without being connected to your tree", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AlwaysCritShockedEnemiesUnique__1"] = { + "Always Critical Hit Shocked Enemies", + ["affix"] = "", + ["group"] = "AlwaysCritShockedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3789, + }, + ["tradeHashes"] = { + [3481428688] = { + "Always Critical Hit Shocked Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AlwaysIgniteWhileBurningUnique__1"] = { + "You always Ignite while Burning", + ["affix"] = "", + ["group"] = "AlwaysIgniteWhileBurning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 4294, + }, + ["tradeHashes"] = { + [2636728487] = { + "You always Ignite while Burning", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitAllAttributes1"] = { + "+(5-7) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 31, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-7) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitAllElementalResistances"] = { + "+(7-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 38, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(7-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitBaseSpirit1"] = { + "+(10-15) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(10-15) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitDexterity1"] = { + "+(10-15) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 10, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-15) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitEnergyShield1"] = { + "+(20-30) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "EnergyShield", + ["level"] = 18, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(20-30) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitHelmetSocket1"] = { + "This item gains bonuses from Socketed Items as though it was a Helmet", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfHelmet", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 7743, + }, + ["tradeHashes"] = { + [1458343515] = { + "This item gains bonuses from Socketed Items as though it was a Helmet", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitIncreasedLife1"] = { + "+(30-40) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 23, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-40) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitIntelligence1"] = { + "+(10-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 10, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitItemFoundRarityIncrease1"] = { + "(12-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 44, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(12-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitLifeRegeneration1"] = { + "(2-4) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(2-4) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitManaRegeneration1"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed1"] = { + "+1 Prefix Modifier allowed", + "-1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "+1 Prefix Modifier allowed", + }, + [718638445] = { + "-1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed2"] = { + "-1 Prefix Modifier allowed", + "+1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "-1 Prefix Modifier allowed", + }, + [718638445] = { + "+1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed3"] = { + "+2 Prefix Modifiers allowed", + "-2 Suffix Modifiers allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "+2 Prefix Modifiers allowed", + }, + [718638445] = { + "-2 Suffix Modifiers allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed4"] = { + "-2 Prefix Modifiers allowed", + "+2 Suffix Modifiers allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "-2 Prefix Modifiers allowed", + }, + [718638445] = { + "+2 Suffix Modifiers allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed5"] = { + "-1 Prefix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + }, + ["tradeHashes"] = { + [3182714256] = { + "-1 Prefix Modifier allowed", + }, + [718638445] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed6"] = { + "-1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + }, + [718638445] = { + "-1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed7"] = { + "-1 Prefix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 53, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + }, + ["tradeHashes"] = { + [3182714256] = { + "-1 Prefix Modifier allowed", + }, + [718638445] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed8"] = { + "-1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 53, + ["modTags"] = { + }, + ["statOrder"] = { + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + }, + [718638445] = { + "-1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitPrefixSuffixAllowed9"] = { + "-1 Prefix Modifier allowed", + "-1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 62, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "-1 Prefix Modifier allowed", + }, + [718638445] = { + "-1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitRunicWard1"] = { + "+(30-40) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 23, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+(30-40) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AmuletImplicitStrength1"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 10, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { + "Knocks Back Enemies in an Area when you use a Flask", + ["affix"] = "", + ["group"] = "AoEKnockBackOnFlaskUse", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 662, + }, + ["tradeHashes"] = { + [3591397930] = { + "Knocks Back Enemies in an Area when you use a Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArborixMoreDamageAtCloseRangeUnique__1"] = { + "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", + ["affix"] = "", + ["group"] = "ArborixMoreDamageAtCloseRange", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 10746, + }, + ["tradeHashes"] = { + [304032021] = { + "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArcaneVisionUniqueBodyStrInt5"] = { + "Light Radius is based on Energy Shield instead of Life", + ["affix"] = "", + ["group"] = "ArcaneVision", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2503, + }, + ["tradeHashes"] = { + [3836017971] = { + "Light Radius is based on Energy Shield instead of Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArcticArmourBuffEffectUnique__1_"] = { + "50% increased Arctic Armour Buff Effect", + ["affix"] = "", + ["group"] = "ArcticArmourBuffEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3679, + }, + ["tradeHashes"] = { + [3995612171] = { + "50% increased Arctic Armour Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArcticArmourReservationCostUnique__1"] = { + "Arctic Armour has no Reservation", + ["affix"] = "", + ["group"] = "ArcticArmourNoReservation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4355, + }, + ["tradeHashes"] = { + [1483066460] = { + "Arctic Armour has no Reservation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageImplicitMace1"] = { + "30% increased Area Damage", + ["affix"] = "", + ["group"] = "AreaDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "30% increased Area Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageJewel"] = { + "(10-12)% increased Area Damage", + ["affix"] = "of Blasting", + ["group"] = "AreaDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "(10-12)% increased Area Damage", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["AreaDamagePerDevotion"] = { + "4% increased Area Damage per 10 Devotion", + ["affix"] = "", + ["group"] = "AreaDamagePerDevotion", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 4357, + }, + ["tradeHashes"] = { + [1724614884] = { + "4% increased Area Damage per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageUniqueBodyDexInt1"] = { + "(40-50)% increased Area Damage", + ["affix"] = "", + ["group"] = "AreaDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "(40-50)% increased Area Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageUniqueDescentOneHandSword1"] = { + "10% increased Area Damage", + ["affix"] = "", + ["group"] = "AreaDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "10% increased Area Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageUniqueOneHandMace7"] = { + "(10-20)% increased Area Damage", + ["affix"] = "", + ["group"] = "AreaDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "(10-20)% increased Area Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaDamageUnique__1"] = { + "30% increased Area Damage", + ["affix"] = "", + ["group"] = "AreaDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1774, + }, + ["tradeHashes"] = { + [4251717817] = { + "30% increased Area Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaOfEffectPer25RampageStacksUnique__1_"] = { + "2% increased Area of Effect per 25 Rampage Kills", + ["affix"] = "", + ["group"] = "AreaOfEffectPer25RampageStacks", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4036, + }, + ["tradeHashes"] = { + [4119032338] = { + "2% increased Area of Effect per 25 Rampage Kills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { + "2% increased Area of Effect per Endurance Charge", + ["affix"] = "", + ["group"] = "AreaOfEffectPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4369, + }, + ["tradeHashes"] = { + [2448279015] = { + "2% increased Area of Effect per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { + "Regenerate 2% of your Armour as Life over 1 second when you Block", + ["affix"] = "", + ["group"] = "ArmourAsLifeRegnerationOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 2587, + }, + ["tradeHashes"] = { + [3002650433] = { + "Regenerate 2% of your Armour as Life over 1 second when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArmourEnergyShieldJewel"] = { + "(6-12)% increased Armour", + "(2-4)% increased maximum Energy Shield", + ["affix"] = "Paladin's", + ["group"] = "ArmourEnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 882, + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(2-4)% increased maximum Energy Shield", + }, + [2866361420] = { + "(6-12)% increased Armour", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ArmourEvasionJewel"] = { + "(6-12)% increased Armour", + "(6-12)% increased Evasion Rating", + ["affix"] = "Fighter's", + ["group"] = "ArmourEvasionForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 882, + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(6-12)% increased Evasion Rating", + }, + [2866361420] = { + "(6-12)% increased Armour", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { + "Armour is increased by Uncapped Fire Resistance", + ["affix"] = "", + ["group"] = "ArmourUncappedFireResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 4419, + }, + ["tradeHashes"] = { + [713266390] = { + "Armour is increased by Uncapped Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArmourPerEnduranceChargeUnique__1"] = { + "+500 to Armour per Endurance Charge", + ["affix"] = "", + ["group"] = "ArmourPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 9461, + }, + ["tradeHashes"] = { + [513221334] = { + "+500 to Armour per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArmourPerStackableJewelUnique__1"] = { + "Gain 200 Armour per Grand Spectrum", + ["affix"] = "", + ["group"] = "ArmourPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 3811, + }, + ["tradeHashes"] = { + [1166487805] = { + "Gain 200 Armour per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArmourPerTotemUnique__1"] = { + "+300 Armour per Summoned Totem", + ["affix"] = "", + ["group"] = "ArmourPerTotem", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 4107, + }, + ["tradeHashes"] = { + [1429385513] = { + "+300 Armour per Summoned Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { + "Arrows deal 50% increased Damage with Hits to Targets they Pierce", + ["affix"] = "", + ["group"] = "ArrowDamageAgainstPiercedTargets", + ["level"] = 45, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 4433, + }, + ["tradeHashes"] = { + [1019891080] = { + "Arrows deal 50% increased Damage with Hits to Targets they Pierce", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { + "Arrows deal 50% increased Damage with Hits to Targets they Pierce", + ["affix"] = "", + ["group"] = "ArrowPierceAppliesToProjectileDamage", + ["level"] = 45, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 4434, + }, + ["tradeHashes"] = { + [3647471922] = { + "Arrows deal 50% increased Damage with Hits to Targets they Pierce", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArrowPierceUniqueBow7"] = { + "Arrows Pierce all Targets", + ["affix"] = "", + ["group"] = "ArrowsAlwaysPierce", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4651, + }, + ["tradeHashes"] = { + [1829238593] = { + "Arrows Pierce all Targets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { + "Arrows Pierce all Targets after Chaining", + ["affix"] = "", + ["group"] = "ArrowsAlwaysCritAfterPiercing", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3975, + }, + ["tradeHashes"] = { + [1997151732] = { + "Arrows Pierce all Targets after Chaining", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ArrowsThatPierceCauseBleedingUnique__1"] = { + "Arrows that Pierce have 50% chance to inflict Bleeding", + ["affix"] = "", + ["group"] = "ArrowsThatPierceCauseBleeding25Percent", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 3974, + }, + ["tradeHashes"] = { + [1812251528] = { + "Arrows that Pierce have 50% chance to inflict Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAdditionalProjectilesUnique__1"] = { + "Attacks fire an additional Projectile", + ["affix"] = "", + ["group"] = "AttackAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3848, + }, + ["tradeHashes"] = { + [1195705739] = { + "Attacks fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedJewel"] = { + "(2-4)% increased Attack and Cast Speed", + ["affix"] = "of Zeal", + ["group"] = "AttackAndCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(2-4)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["AttackAndCastSpeedJewelUniqueJewel43"] = { + "4% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "4% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { + "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedOnUsingMovementSkill", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 3162, + }, + ["tradeHashes"] = { + [2831922878] = { + "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { + "4% reduced Attack and Cast Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1783, + }, + ["tradeHashes"] = { + [269590092] = { + "4% reduced Attack and Cast Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUniqueRing39"] = { + "(5-10)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-10)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__1"] = { + "(10-15)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 75, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(10-15)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__2"] = { + "(5-10)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-10)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__3"] = { + "(6-9)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(6-9)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__4"] = { + "(6-10)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(6-10)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__5"] = { + "(5-10)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-10)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__6"] = { + "(5-7)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-7)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndCastSpeedUnique__7"] = { + "(5-8)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(5-8)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { + "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", + ["affix"] = "", + ["group"] = "AttackAndMovementSpeedBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 3993, + }, + ["tradeHashes"] = { + [3597737983] = { + "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { + "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", + ["affix"] = "", + ["group"] = "AttackCastMoveOnWarcryRecently", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 3020, + }, + ["tradeHashes"] = { + [1464115829] = { + "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { + "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", + ["affix"] = "", + ["group"] = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 10749, + }, + ["tradeHashes"] = { + [3476327198] = { + "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageAgainstBleedingUniqueDagger11"] = { + "40% increased Attack Damage against Bleeding Enemies", + ["affix"] = "", + ["group"] = "AttackDamageAgainstBleeding", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2272, + }, + ["tradeHashes"] = { + [3944782785] = { + "40% increased Attack Damage against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { + "30% increased Attack Damage against Bleeding Enemies", + ["affix"] = "", + ["group"] = "AttackDamageAgainstBleeding", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2272, + }, + ["tradeHashes"] = { + [3944782785] = { + "30% increased Attack Damage against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageAgainstBleedingUnique__1__"] = { + "(25-40)% increased Attack Damage against Bleeding Enemies", + ["affix"] = "", + ["group"] = "AttackDamageAgainstBleeding", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2272, + }, + ["tradeHashes"] = { + [3944782785] = { + "(25-40)% increased Attack Damage against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { + "1% increased Attack Damage per Level", + ["affix"] = "", + ["group"] = "AttackDamageIncreasedPerLevel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2708, + }, + ["tradeHashes"] = { + [63607615] = { + "1% increased Attack Damage per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { + "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", + ["affix"] = "", + ["group"] = "AttackDamagePerLowestArmourOrEvasion", + ["level"] = 98, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 4524, + }, + ["tradeHashes"] = { + [1358422215] = { + "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageShaperItemUnique__1"] = { + "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", + ["affix"] = "", + ["group"] = "AttackDamageShaperItem", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3994, + }, + ["tradeHashes"] = { + [1555962658] = { + "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackDamageUniqueJewel42"] = { + "10% increased Attack Damage", + ["affix"] = "", + ["group"] = "AttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "10% increased Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackPhysicalDamageAddedAsFireUnique__1"] = { + "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", + ["affix"] = "", + ["group"] = "AttackPhysicalDamageAddedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 3448, + }, + ["tradeHashes"] = { + [3606204707] = { + "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackPhysicalDamageAddedAsFireUnique__2"] = { + "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", + ["affix"] = "", + ["group"] = "AttackPhysicalDamageAddedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 3448, + }, + ["tradeHashes"] = { + [3606204707] = { + "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { + "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", + ["affix"] = "", + ["group"] = "AttackPhysicalDamageAddedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 3450, + }, + ["tradeHashes"] = { + [2329121140] = { + "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { + "Projectiles from Attacks Fork an additional time", + ["affix"] = "", + ["group"] = "AttackProjectilesForkExtraTimes", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4549, + }, + ["tradeHashes"] = { + [1643324992] = { + "Projectiles from Attacks Fork an additional time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackProjectilesForkUnique__1"] = { + "Projectiles from Attacks Fork", + ["affix"] = "", + ["group"] = "AttackProjectilesFork", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4548, + }, + ["tradeHashes"] = { + [396113830] = { + "Projectiles from Attacks Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedJewel"] = { + "(3-5)% increased Attack Speed", + ["affix"] = "of Berserking", + ["group"] = "IncreasedAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(3-5)% increased Attack Speed", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { + "15% increased Attack Speed when on Full Life", + ["affix"] = "", + ["group"] = "AttackSpeedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1178, + }, + ["tradeHashes"] = { + [4268321763] = { + "15% increased Attack Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { + "30% increased Attack Speed when on Full Life", + ["affix"] = "", + ["group"] = "AttackSpeedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1178, + }, + ["tradeHashes"] = { + [4268321763] = { + "30% increased Attack Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedPerDexterity"] = { + "1% increased Attack Speed per 10 Dexterity", + ["affix"] = "", + ["group"] = "AttackSpeedPerDexterity", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4573, + }, + ["tradeHashes"] = { + [889691035] = { + "1% increased Attack Speed per 10 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { + "12% increased Global Attack Speed per Green Socket", + ["affix"] = "", + ["group"] = "AttackSpeedPerGreenSocket", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 2492, + }, + ["tradeHashes"] = { + [250876318] = { + "12% increased Global Attack Speed per Green Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { + "(10-20)% increased Attack Speed with Movement Skills", + ["affix"] = "", + ["group"] = "AttackSpeedWithMovementSkills", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1331, + }, + ["tradeHashes"] = { + [3683134121] = { + "(10-20)% increased Attack Speed with Movement Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { + "15% increased Attack Speed with Movement Skills", + ["affix"] = "", + ["group"] = "AttackSpeedWithMovementSkills", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1331, + }, + ["tradeHashes"] = { + [3683134121] = { + "15% increased Attack Speed with Movement Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { + "Reflects 30 Chaos Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesChaosDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1938, + }, + ["tradeHashes"] = { + [189451991] = { + "Reflects 30 Chaos Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesColdDamageGlovesDex1"] = { + "Reflects 100 Cold Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesColdDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1935, + }, + ["tradeHashes"] = { + [4235886357] = { + "Reflects 100 Cold Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit1"] = { + "Reflects (2-5) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 5, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (2-5) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit10"] = { + "Reflects (151-180) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 58, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (151-180) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit11"] = { + "Reflects (181-220) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 62, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (181-220) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit12"] = { + "Reflects (221-260) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 66, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (221-260) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit13"] = { + "Reflects (261-300) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 70, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (261-300) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit2"] = { + "Reflects (5-12) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 12, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (5-12) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit3"] = { + "Reflects (10-23) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 20, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (10-23) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit4"] = { + "Reflects (24-35) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 27, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (24-35) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit5"] = { + "Reflects (36-50) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 33, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (36-50) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit6"] = { + "Reflects (51-70) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 39, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (51-70) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit7"] = { + "Reflects (71-90) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 45, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (71-90) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit8"] = { + "Reflects (91-120) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 49, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (91-120) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageShieldImplicit9"] = { + "Reflects (121-150) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 54, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (121-150) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageUniqueHelmetDex3"] = { + "Reflects 4 Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects 4 Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageUniqueHelmetDexInt6"] = { + "Reflects 100 to 150 Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1930, + }, + ["tradeHashes"] = { + [2970307386] = { + "Reflects 100 to 150 Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageUniqueIntHelmet1"] = { + "Reflects 5 Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects 5 Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageUnique__1"] = { + "Reflects (71-90) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (71-90) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesDamageUnique__2"] = { + "Reflects (100-150) Physical Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 905, + }, + ["tradeHashes"] = { + [3767873853] = { + "Reflects (100-150) Physical Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesFireDamageUniqueBodyInt2"] = { + "Reflects 100 Fire Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesFireDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1936, + }, + ["tradeHashes"] = { + [1757945818] = { + "Reflects 100 Fire Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesLightningDamageUniqueBodyInt1"] = { + "Reflects 1 to 250 Lightning Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1933, + }, + ["tradeHashes"] = { + [1243237244] = { + "Reflects 1 to 250 Lightning Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttackerTakesLightningDamageUnique___1"] = { + "Reflects 1 to 150 Lightning Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1933, + }, + ["tradeHashes"] = { + [1243237244] = { + "Reflects 1 to 150 Lightning Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksBlindOnHitChanceUnique__1"] = { + "5% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "5% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksBlindOnHitChanceUnique__2"] = { + "(10-20)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(10-20)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { + "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", + ["affix"] = "", + ["group"] = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 3846, + }, + ["tradeHashes"] = { + [264715122] = { + "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { + "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", + ["affix"] = "", + ["group"] = "AttacksCauseBleedingOnCursedEnemyHit25Percent", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4586, + }, + ["tradeHashes"] = { + [2591028853] = { + "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksChainInMainHandUnique__1"] = { + "Attacks Chain an additional time when in Main Hand", + ["affix"] = "", + ["group"] = "AttacksChainInMainHand", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3847, + }, + ["tradeHashes"] = { + [2466604008] = { + "Attacks Chain an additional time when in Main Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksCostNoManaUniqueTwoHandAxe9"] = { + "Your Attacks do not cost Mana", + ["affix"] = "", + ["group"] = "AttacksCostNoMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1642, + }, + ["tradeHashes"] = { + [4080656180] = { + "Your Attacks do not cost Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksDealNoPhysicalDamage"] = { + "Attacks deal no Physical Damage", + ["affix"] = "", + ["group"] = "AttacksDealNoPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2260, + }, + ["tradeHashes"] = { + [2992817550] = { + "Attacks deal no Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksExtraProjectileInOffHandUnique__1"] = { + "Attacks fire an additional Projectile when in Off Hand", + ["affix"] = "", + ["group"] = "AttacksExtraProjectileInOffHand", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3850, + }, + ["tradeHashes"] = { + [2105048696] = { + "Attacks fire an additional Projectile when in Off Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { + "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", + ["affix"] = "", + ["group"] = "LocalShockAsThoughDealingMoreDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + "ailment", + }, + ["statOrder"] = { + 7732, + }, + ["tradeHashes"] = { + [1386792919] = { + "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { + "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", + ["affix"] = "", + ["group"] = "LocalShockAsThoughDealingMoreDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + "ailment", + }, + ["statOrder"] = { + 7732, + }, + ["tradeHashes"] = { + [1386792919] = { + "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AttacksThatStunCauseBleedingUnique__1"] = { + "Hits that Stun inflict Bleeding", + ["affix"] = "", + ["group"] = "AttacksThatStunCauseBleeding", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2265, + }, + ["tradeHashes"] = { + [1454946771] = { + "Hits that Stun inflict Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectOnMinionsUniqueShieldInt2"] = { + "20% increased effect of Non-Curse Auras from your Skills on your Minions", + ["affix"] = "", + ["group"] = "AuraEffectOnMinions", + ["level"] = 1, + ["modTags"] = { + "minion", + "aura", + }, + ["statOrder"] = { + 1884, + }, + ["tradeHashes"] = { + [634031003] = { + "20% increased effect of Non-Curse Auras from your Skills on your Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectOnMinionsUnique__1_"] = { + "20% increased effect of Non-Curse Auras from your Skills on your Minions", + ["affix"] = "", + ["group"] = "AuraEffectOnMinions", + ["level"] = 1, + ["modTags"] = { + "minion", + "aura", + }, + ["statOrder"] = { + 1884, + }, + ["tradeHashes"] = { + [634031003] = { + "20% increased effect of Non-Curse Auras from your Skills on your Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectPerDevotion"] = { + "1% increased effect of Non-Curse Auras per 10 Devotion", + ["affix"] = "", + ["group"] = "AuraEffectPerDevotion", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 9221, + }, + ["tradeHashes"] = { + [2585926696] = { + "1% increased effect of Non-Curse Auras per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectUniqueShieldInt2"] = { + "20% increased Magnitudes of Non-Curse Auras from your Skills", + ["affix"] = "", + ["group"] = "AuraEffect", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 3251, + }, + ["tradeHashes"] = { + [1880071428] = { + "20% increased Magnitudes of Non-Curse Auras from your Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectUnique__1"] = { + "20% increased Magnitudes of Non-Curse Auras from your Skills", + ["affix"] = "", + ["group"] = "AuraEffect", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 3251, + }, + ["tradeHashes"] = { + [1880071428] = { + "20% increased Magnitudes of Non-Curse Auras from your Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraEffectUnique__2____"] = { + "10% increased Magnitudes of Non-Curse Auras from your Skills", + ["affix"] = "", + ["group"] = "AuraEffect", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 3251, + }, + ["tradeHashes"] = { + [1880071428] = { + "10% increased Magnitudes of Non-Curse Auras from your Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AuraRadiusJewel"] = { + "(10-15)% increased Area of Effect of Aura Skills", + ["affix"] = "Hero's FIX ME", + ["group"] = "AuraRadiusForJewel", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1949, + }, + ["tradeHashes"] = { + [895264825] = { + "(10-15)% increased Area of Effect of Aura Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { + "Your Aura Buffs do not affect Allies", + ["affix"] = "", + ["group"] = "AurasCannotBuffAllies", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 2755, + }, + ["tradeHashes"] = { + [4196775867] = { + "Your Aura Buffs do not affect Allies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvianAspectBuffEffectUnique__1"] = { + "100% increased Aspect of the Avian Buff Effect", + ["affix"] = "", + ["group"] = "AvianAspectBuffEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4459, + }, + ["tradeHashes"] = { + [1746347097] = { + "100% increased Aspect of the Avian Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansFlightDurationUnique__1"] = { + "+(-2-2) seconds to Avian's Flight Duration", + ["affix"] = "", + ["group"] = "AviansFlightDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4598, + }, + ["tradeHashes"] = { + [1251731548] = { + "+(-2-2) seconds to Avian's Flight Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansFlightLifeRegenerationUnique__1"] = { + "Regenerate 100 Life per Second while you have Avian's Flight", + ["affix"] = "", + ["group"] = "AviansFlightLifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7500, + }, + ["tradeHashes"] = { + [2589482056] = { + "Regenerate 100 Life per Second while you have Avian's Flight", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansFlightManaRegenerationUnique__1_"] = { + "Regenerate 12 Mana per Second while you have Avian's Flight", + ["affix"] = "", + ["group"] = "AviansFlightManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8015, + }, + ["tradeHashes"] = { + [1495376076] = { + "Regenerate 12 Mana per Second while you have Avian's Flight", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansMightColdDamageUnique__1"] = { + "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", + ["affix"] = "", + ["group"] = "AviansMightColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 8964, + }, + ["tradeHashes"] = { + [3485231932] = { + "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansMightDurationUnique__1"] = { + "+(-2-2) seconds to Avian's Might Duration", + ["affix"] = "", + ["group"] = "AviansMightDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4599, + }, + ["tradeHashes"] = { + [1251945210] = { + "+(-2-2) seconds to Avian's Might Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AviansMightLightningDamageUnique__1_"] = { + "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", + ["affix"] = "", + ["group"] = "AviansMightLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 8975, + }, + ["tradeHashes"] = { + [855634301] = { + "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidChillJewel"] = { + "(6-8)% chance to Avoid being Chilled", + ["affix"] = "Heating FIX ME", + ["group"] = "AvoidChillForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1600, + }, + ["tradeHashes"] = { + [3483999943] = { + "(6-8)% chance to Avoid being Chilled", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { + "12% chance to Avoid Elemental Ailments per Grand Spectrum", + ["affix"] = "", + ["group"] = "AvoidElementalAilmentsPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 3812, + }, + ["tradeHashes"] = { + [611279043] = { + "12% chance to Avoid Elemental Ailments per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidElementalAilmentsUnique__1_"] = { + "30% chance to Avoid Elemental Ailments", + ["affix"] = "", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "30% chance to Avoid Elemental Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidElementalAilmentsUnique__2"] = { + "(20-25)% chance to Avoid Elemental Ailments", + ["affix"] = "", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "(20-25)% chance to Avoid Elemental Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { + "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", + ["affix"] = "", + ["group"] = "AvoidElementalDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 3076, + }, + ["tradeHashes"] = { + [1649883131] = { + "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidFreezeJewel"] = { + "(6-8)% chance to Avoid being Frozen", + ["affix"] = "Thawing FIX ME", + ["group"] = "AvoidFreezeForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1601, + }, + ["tradeHashes"] = { + [1514829491] = { + "(6-8)% chance to Avoid being Frozen", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AvoidIgniteJewel"] = { + "(6-8)% chance to Avoid being Ignited", + ["affix"] = "Dousing FIX ME", + ["group"] = "AvoidIgniteForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1602, + }, + ["tradeHashes"] = { + [1783006896] = { + "(6-8)% chance to Avoid being Ignited", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { + "100% chance to Avoid being Ignited while on Low Life", + ["affix"] = "", + ["group"] = "AvoidIgniteOnLowLife", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1603, + }, + ["tradeHashes"] = { + [4271082039] = { + "100% chance to Avoid being Ignited while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidIgniteUniqueBodyDex3"] = { + "Cannot be Ignited", + ["affix"] = "", + ["group"] = "CannotBeIgnited", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1595, + }, + ["tradeHashes"] = { + [331731406] = { + "Cannot be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidIgniteUniqueOneHandSword4"] = { + "Cannot be Ignited", + ["affix"] = "", + ["group"] = "CannotBeIgnited", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1595, + }, + ["tradeHashes"] = { + [331731406] = { + "Cannot be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidIgniteUnique__1"] = { + "Cannot be Ignited", + ["affix"] = "", + ["group"] = "CannotBeIgnited", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1595, + }, + ["tradeHashes"] = { + [331731406] = { + "Cannot be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidShockJewel"] = { + "(6-8)% chance to Avoid being Shocked", + ["affix"] = "Insulating FIX ME", + ["group"] = "AvoidShockForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1604, + }, + ["tradeHashes"] = { + [1871765599] = { + "(6-8)% chance to Avoid being Shocked", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AvoidStunJewel"] = { + "(6-8)% chance to Avoid being Stunned", + ["affix"] = "FIX ME", + ["group"] = "AvoidStunForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(6-8)% chance to Avoid being Stunned", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["AvoidStunUniqueRingVictors"] = { + "(10-20)% chance to Avoid being Stunned", + ["affix"] = "", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "(10-20)% chance to Avoid being Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AvoidStunUnique__1"] = { + "30% chance to Avoid being Stunned", + ["affix"] = "", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "30% chance to Avoid being Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Axes", + ["affix"] = "Cleaving", + ["group"] = "AxeAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1319, + }, + ["tradeHashes"] = { + [3550868361] = { + "(6-8)% increased Attack Speed with Axes", + }, + }, + ["weightKey"] = { + "axe", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["AxeDamageJewel"] = { + "(14-16)% increased Damage with Axes", + ["affix"] = "Sinister", + ["group"] = "IncreasedAxeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1233, + }, + ["tradeHashes"] = { + [3314142259] = { + "(14-16)% increased Damage with Axes", + }, + }, + ["weightKey"] = { + "axe", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["AxeImplicitAccuracyUnaffectedByDistance1"] = { + "Has no Accuracy Penalty from Range", + ["affix"] = "", + ["group"] = "LocalAccuracyUnaffectedDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7922, + }, + ["tradeHashes"] = { + [1050883682] = { + "Has no Accuracy Penalty from Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitCannotBeThrown1"] = { + "Cannot use Projectile Attacks", + ["affix"] = "", + ["group"] = "CannotBeThrown", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7637, + }, + ["tradeHashes"] = { + [1961849903] = { + "Cannot use Projectile Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitCullingStrike1"] = { + "Culling Strike", + ["affix"] = "", + ["group"] = "LocalCullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7652, + }, + ["tradeHashes"] = { + [1574531783] = { + "Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitDamageTaken1"] = { + "10% increased Damage taken", + ["affix"] = "", + ["group"] = "DamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1963, + }, + ["tradeHashes"] = { + [3691641145] = { + "10% increased Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitLifeGainedFromEnemyDeath1"] = { + "Gain (34-43) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (34-43) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitLocalChanceToBleed1"] = { + "(15-25)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(15-25)% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitManaGainedFromEnemyDeath1"] = { + "Gain (28-35) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (28-35) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxeImplicitRageOnHit1"] = { + "Grants 1 Rage on Hit", + ["affix"] = "", + ["group"] = "LocalRageOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7705, + }, + ["tradeHashes"] = { + [1725749947] = { + "Grants 1 Rage on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["AxePhysicalDamageUnique__1"] = { + "80% increased Physical Damage with Axes", + ["affix"] = "", + ["group"] = "AxePhysicalDamage", + ["level"] = 80, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1234, + }, + ["tradeHashes"] = { + [2008219439] = { + "80% increased Physical Damage with Axes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BarrageThresholdUnique__1"] = { + "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", + ["affix"] = "", + ["group"] = "BarrageThreshold", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2975, + }, + ["tradeHashes"] = { + [630867098] = { + "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { + "Regenerate 35 Mana per second if all Equipped Items are Corrupted", + ["affix"] = "", + ["group"] = "BaseManaRegenerationWhileAllCorruptedItems", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7992, + }, + ["tradeHashes"] = { + [2760138143] = { + "Regenerate 35 Mana per second if all Equipped Items are Corrupted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BaseSpiritTestUniqueAmulet1"] = { + "+500 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+500 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { + "+7% to Unarmed Melee Attack Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseUnarmedCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3255, + }, + ["tradeHashes"] = { + [3613173483] = { + "+7% to Unarmed Melee Attack Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { + "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseUnarmedCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3255, + }, + ["tradeHashes"] = { + [3613173483] = { + "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { + "25% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "25% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { + "30% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "30% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltFlaskLifeRecoveryUnique__1"] = { + "(30-40)% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(30-40)% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { + "30% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "30% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltFlaskManaRecoveryUnique__1"] = { + "(20-30)% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "(20-30)% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitBootsSocket1"] = { + "This item gains bonuses from Socketed Items as though it was Boots", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfBoots", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 7741, + }, + ["tradeHashes"] = { + [2733960806] = { + "This item gains bonuses from Socketed Items as though it was Boots", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitCastSpeed1"] = { + "(8-12)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 40, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(8-12)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitCharmSlots1"] = { + "Has 1 Charm Slot", + ["affix"] = "", + ["group"] = "CharmSlots", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 4775, + }, + ["tradeHashes"] = { + [1416292992] = { + "Has 1 Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitCharmSlots2"] = { + "Has (1-2) Charm Slot", + ["affix"] = "", + ["group"] = "CharmSlots", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 4775, + }, + ["tradeHashes"] = { + [1416292992] = { + "Has (1-2) Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitCharmSlots3"] = { + "Has (1-3) Charm Slot", + ["affix"] = "", + ["group"] = "CharmSlots", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 4775, + }, + ["tradeHashes"] = { + [1416292992] = { + "Has (1-3) Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitFlaskLifeRecovery1"] = { + "(20-30)% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(20-30)% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitFlaskManaRecovery1"] = { + "(20-30)% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "(20-30)% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitFlaskPassiveChargeGain1"] = { + "Flasks gain 0.17 charges per Second", + ["affix"] = "", + ["group"] = "AllFlaskChargeGeneration", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 6888, + }, + ["tradeHashes"] = { + [731781020] = { + "Flasks gain 0.17 charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitIncreasedCharmChargesGained1"] = { + "(20-30)% increased Charm Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 55, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(20-30)% increased Charm Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitIncreasedCharmDuration1"] = { + "(15-20)% increased Charm Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedCharmDuration", + ["level"] = 25, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(15-20)% increased Charm Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitIncreasedFlaskChargesGained1"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 18, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitIncreasedStunThreshold1"] = { + "(20-30)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(20-30)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitInstantFlaskRecoveryPercent1"] = { + "20% of Flask Recovery applied Instantly", + ["affix"] = "", + ["group"] = "InstantFlaskRecoveryPercent", + ["level"] = 69, + ["modTags"] = { + }, + ["statOrder"] = { + 6646, + }, + ["tradeHashes"] = { + [462041840] = { + "20% of Flask Recovery applied Instantly", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitLightningDamage1"] = { + "Adds 1 to (20-30) Lightning damage to Attacks", + ["affix"] = "", + ["group"] = "LightningDamage", + ["level"] = 40, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (20-30) Lightning damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitPhysicalDamageReductionRating1"] = { + "+(140-180) to Armour", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 31, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(140-180) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitReducedCharmChargesUsed1"] = { + "(10-15)% reduced Charm Charges used", + ["affix"] = "", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 39, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(10-15)% reduced Charm Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitReducedFlaskChargesUsed1"] = { + "(10-15)% reduced Flask Charges used", + ["affix"] = "", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 50, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(10-15)% reduced Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltImplicitStrength1"] = { + "+(15-20) to Strength", + ["affix"] = "", + ["group"] = "StrengthImplicit", + ["level"] = 40, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(15-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskChargedUsedUnique__1"] = { + "(10-20)% increased Flask Charges used", + ["affix"] = "", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(10-20)% increased Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskChargedUsedUnique__2"] = { + "(7-10)% reduced Flask Charges used", + ["affix"] = "", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(7-10)% reduced Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { + "50% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "50% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { + "(15-25)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(15-25)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskDurationUniqueBelt3"] = { + "20% increased Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "20% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskDurationUnique__1"] = { + "60% increased Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 14, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "60% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskDurationUnique__2"] = { + "60% increased Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "60% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltIncreasedFlaskDurationUnique__3___"] = { + "(10-20)% increased Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(10-20)% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { + "30% reduced Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "30% reduced Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { + "30% reduced Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "30% reduced Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltSoulEaterDuringFlaskEffect__1"] = { + "Gain Soul Eater during any Flask Effect", + ["affix"] = "", + ["group"] = "BeltSoulEaterDuringFlaskEffect", + ["level"] = 57, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 3124, + }, + ["tradeHashes"] = { + [3968454273] = { + "Gain Soul Eater during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BeltSoulsRemovedOnFlaskUse__1"] = { + "Lose all Eaten Souls when you use a Flask", + ["affix"] = "", + ["group"] = "BeltSoulsRemovedOnFlaskUse", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 3125, + }, + ["tradeHashes"] = { + [3577316952] = { + "Lose all Eaten Souls when you use a Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BestiaryLeague"] = { + "Areas contain Beasts to hunt", + ["affix"] = "", + ["group"] = "BestiaryLeague", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8676, + }, + ["tradeHashes"] = { + [1158543967] = { + "Areas contain Beasts to hunt", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BleedChanceAndDurationForJewel__"] = { + "Attacks have (3-5)% chance to cause Bleeding", + "(12-16)% increased Bleeding Duration", + ["affix"] = "of Bleeding", + ["group"] = "BleedChanceAndDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "(12-16)% increased Bleeding Duration", + }, + [2055966527] = { + "Attacks have (3-5)% chance to cause Bleeding", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["BleedDurationOnYouJewel"] = { + "(30-35)% reduced Duration of Bleeding on You", + ["affix"] = "of Stemming", + ["group"] = "ReducedBleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(30-35)% reduced Duration of Bleeding on You", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { + "50% chance to cause Bleeding on Critical Hit", + ["affix"] = "", + ["group"] = "LocalCausesBleedingOnCrit50PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 7638, + }, + ["tradeHashes"] = { + [2743246999] = { + "50% chance to cause Bleeding on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BleedingEnemiesExplodeUnique__1"] = { + "Bleeding Enemies you Kill Explode, dealing 5% of", + "their Maximum Life as Physical Damage", + ["affix"] = "", + ["group"] = "BleedingEnemiesExplode", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3169, + 3169.1, + }, + ["tradeHashes"] = { + [3133323410] = { + "Bleeding Enemies you Kill Explode, dealing 5% of", + "their Maximum Life as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BleedingEnemiesFleeOnHitUnique__1"] = { + "30% Chance to cause Bleeding Enemies to Flee on hit", + ["affix"] = "", + ["group"] = "BleedingEnemiesFleeOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3471, + }, + ["tradeHashes"] = { + [2072206041] = { + "30% Chance to cause Bleeding Enemies to Flee on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BleedingImmunityUnique__1"] = { + "Bleeding cannot be inflicted on you", + ["affix"] = "", + ["group"] = "BleedingImmunity", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 3868, + }, + ["tradeHashes"] = { + [1901158930] = { + "Bleeding cannot be inflicted on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BleedingImmunityUnique__2"] = { + "Bleeding cannot be inflicted on you", + ["affix"] = "", + ["group"] = "BleedingImmunity", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 3868, + }, + ["tradeHashes"] = { + [1901158930] = { + "Bleeding cannot be inflicted on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlightSecondarySkillEffectDurationUnique__1"] = { + "Blight has (20-30)% increased Hinder Duration", + ["affix"] = "", + ["group"] = "BlightSecondarySkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 4880, + }, + ["tradeHashes"] = { + [4170725899] = { + "Blight has (20-30)% increased Hinder Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlightSkillUnique__1"] = { + "Grants Level 22 Blight Skill", + ["affix"] = "", + ["group"] = "BlightSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 490, + }, + ["tradeHashes"] = { + [1198418726] = { + "Grants Level 22 Blight Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlindImmunityUniqueSceptre8"] = { + "Cannot be Blinded", + ["affix"] = "", + ["group"] = "ImmunityToBlind", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2719, + }, + ["tradeHashes"] = { + [1436284579] = { + "Cannot be Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlindImmunityUnique__1"] = { + "Cannot be Blinded", + ["affix"] = "", + ["group"] = "ImmunityToBlind", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2719, + }, + ["tradeHashes"] = { + [1436284579] = { + "Cannot be Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { + "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", + ["affix"] = "", + ["group"] = "BlindOnHitWithRangedAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7636, + }, + ["tradeHashes"] = { + [2044840211] = { + "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlindingHitUniqueWand1"] = { + "10% chance to Blind Enemies on hit", + ["affix"] = "", + ["group"] = "BlindingHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2013, + }, + ["tradeHashes"] = { + [2301191210] = { + "10% chance to Blind Enemies on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockDualWieldingJewel"] = { + "+1% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "Parrying", + ["group"] = "BlockDualWieldingForJewel", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+1% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + "staff", + "two_handed_mod", + "shield_mod", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + }, + }, + ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { + "+(8-12)% Chance to Block Attack Damage during Effect", + ["affix"] = "", + ["group"] = "BlockDuringFlaskEffect", + ["level"] = 85, + ["modTags"] = { + "block", + "flask", + }, + ["statOrder"] = { + 775, + }, + ["tradeHashes"] = { + [2519106214] = { + "+(8-12)% Chance to Block Attack Damage during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockIncreasedDuringFlaskEffectUnique__1"] = { + "+(35-50)% Chance to Block Attack Damage during Effect", + ["affix"] = "", + ["group"] = "BlockDuringFlaskEffect", + ["level"] = 85, + ["modTags"] = { + "block", + "flask", + }, + ["statOrder"] = { + 775, + }, + ["tradeHashes"] = { + [2519106214] = { + "+(35-50)% Chance to Block Attack Damage during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockPer100StrengthAuraUnique__1___"] = { + "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", + ["affix"] = "", + ["group"] = "BlockPer100StrengthAura", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2737, + }, + ["tradeHashes"] = { + [3941641418] = { + "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockShieldJewel"] = { + "+1% Chance to Block Attack Damage while holding a Shield", + ["affix"] = "Shielding", + ["group"] = "BlockShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1125, + }, + ["tradeHashes"] = { + [4061558269] = { + "+1% Chance to Block Attack Damage while holding a Shield", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dual_wielding_mod", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + }, + }, + ["BlockStaffJewel"] = { + "+1% Chance to Block Attack Damage while wielding a Staff", + ["affix"] = "Deflecting", + ["group"] = "BlockStaffForJewel", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1128, + }, + ["tradeHashes"] = { + [1778298516] = { + "+1% Chance to Block Attack Damage while wielding a Staff", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "staff", + "specific_weapon", + "shield_mod", + "dual_wielding_mod", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["BlockVsProjectilesUniqueShieldStr2"] = { + "+25% chance to Block Projectile Attack Damage", + ["affix"] = "", + ["group"] = "BlockVsProjectiles", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2245, + }, + ["tradeHashes"] = { + [3416410609] = { + "+25% chance to Block Projectile Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingClawsUniqueClaw1"] = { + "+8% Chance to Block Attack Damage while Dual Wielding Claws", + ["affix"] = "", + ["group"] = "BlockWhileDualWieldingClaws", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1130, + }, + ["tradeHashes"] = { + [2538694749] = { + "+8% Chance to Block Attack Damage while Dual Wielding Claws", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUniqueDagger3"] = { + "+12% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+12% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUniqueDagger9"] = { + "+5% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+5% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUniqueOneHandSword5"] = { + "+8% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+8% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { + "+(8-12)% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+(8-12)% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUnique__1"] = { + "+10% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+10% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BlockWhileDualWieldingUnique__2_"] = { + "+18% Chance to Block Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "BlockWhileDualWielding", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1129, + }, + ["tradeHashes"] = { + [2166444903] = { + "+18% Chance to Block Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BloodThornVerisiumImplicitBleedMagnitude1"] = { + "50% increased Magnitude of Bleeding you inflict", + ["affix"] = "", + ["group"] = "BleedDotMultiplier", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "50% increased Magnitude of Bleeding you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { + "+(15-25)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(15-25)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitChaosResistance1"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitColdResistance1"] = { + "+(20-25)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-25)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { + "(5-10)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(5-10)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitEnergyShieldDelay1"] = { + "(40-50)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(40-50)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitEnergyShieldRate1"] = { + "(20-25)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(20-25)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitFireResistance1"] = { + "+(20-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { + "(30-40)% increased Elemental Ailment Threshold", + ["affix"] = "", + ["group"] = "IncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4266, + }, + ["tradeHashes"] = { + [3544800472] = { + "(30-40)% increased Elemental Ailment Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitIncreasedLife1"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitIncreasedSpirit1"] = { + "+(20-30) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(20-30) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitIncreasedStunThreshold1"] = { + "(30-40)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(30-40)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { + "+1 to Level of all Corrupted Skill Gems", + ["affix"] = "", + ["group"] = "GlobalCorruptedSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 951, + }, + ["tradeHashes"] = { + [2251279027] = { + "+1 to Level of all Corrupted Skill Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitLifeRecoupForJewel1"] = { + "(8-14)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(8-14)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitLifeRegenerationPercent1"] = { + "Regenerate (1.5-2.5)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1.5-2.5)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitLightningResistance1"] = { + "+(20-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-25)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitLocalMaximumWardUnique1"] = { + "+(750-1000) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "LocalRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 845, + }, + ["tradeHashes"] = { + [774059442] = { + "+(750-1000) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitManaRegeneration1"] = { + "(40-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(40-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitMaximumElementalResistance1"] = { + "+1% to all Maximum Elemental Resistances", + ["affix"] = "", + ["group"] = "MaximumElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+1% to all Maximum Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitMovementVelocity1"] = { + "5% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "5% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { + "(10-20)% reduced Movement Speed Penalty from using Skills while moving", + ["affix"] = "", + ["group"] = "MovementVelocityPenaltyWhilePerformingAction", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9154, + }, + ["tradeHashes"] = { + [2590797182] = { + "(10-20)% reduced Movement Speed Penalty from using Skills while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { + "Hits against you have (15-25)% reduced Critical Damage Bonus", + ["affix"] = "", + ["group"] = "ReducedCriticalStrikeDamageTaken", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (15-25)% reduced Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { + "(10-15)% reduced Elemental Ailment Duration on you", + ["affix"] = "", + ["group"] = "SelfStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 1622, + }, + ["tradeHashes"] = { + [1745952865] = { + "(10-15)% reduced Elemental Ailment Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitSlowPotency1"] = { + "(20-30)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(20-30)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BodyArmourImplicitWardRegen1"] = { + "(30-40)% increased Runic Ward Regeneration Rate", + ["affix"] = "", + ["group"] = "WardRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10520, + }, + ["tradeHashes"] = { + [2392260628] = { + "(30-40)% increased Runic Ward Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BootsImplicitMovementSpeedVerisium1"] = { + "5% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "5% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BootsImplicitMovementSpeedVerisium2"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BowAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Bows", + ["affix"] = "Volleying", + ["group"] = "BowAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1324, + }, + ["tradeHashes"] = { + [3759735052] = { + "(6-8)% increased Attack Speed with Bows", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "melee_mod", + "dual_wielding_mod", + "shield_mod", + "bow", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["BowDamageJewel"] = { + "(14-16)% increased Damage with Bows", + ["affix"] = "Fierce", + ["group"] = "IncreasedBowDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1253, + }, + ["tradeHashes"] = { + [4188894176] = { + "(14-16)% increased Damage with Bows", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "melee_mod", + "dual_wielding_mod", + "shield_mod", + "bow", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["BowImplicitAdditionalArrows1"] = { + "+50% Surpassing chance to fire an additional Arrow", + ["affix"] = "", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+50% Surpassing chance to fire an additional Arrow", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BowImplicitLocalChanceToChain1"] = { + "(25-35)% chance to Chain an additional time", + ["affix"] = "", + ["group"] = "LocalAdditionalChainChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7603, + }, + ["tradeHashes"] = { + [1028592286] = { + "(25-35)% chance to Chain an additional time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BowImplicitProjectileAttackRange1"] = { + "50% reduced Projectile Range", + ["affix"] = "", + ["group"] = "LocalIncreasedProjectileAttackRange", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9539, + }, + ["tradeHashes"] = { + [3398402065] = { + "50% reduced Projectile Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BrandDamagePerDevotion"] = { + "4% increased Brand Damage per 10 Devotion", + ["affix"] = "", + ["group"] = "BrandDamagePerDevotion", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 9877, + }, + ["tradeHashes"] = { + [2697019412] = { + "4% increased Brand Damage per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { + "(20-30)% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(20-30)% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BucklerImplicitStunThreshold1"] = { + "+16 to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+16 to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUniqueBodyInt2"] = { + "(40-75)% increased Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "(40-75)% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUniqueDescentOneHandMace1"] = { + "500% increased Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "500% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUniqueRing31"] = { + "15% increased Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "15% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUniqueWand10"] = { + "25% reduced Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "25% reduced Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUnique__1"] = { + "33% increased Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "33% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurnDurationUnique__2"] = { + "10000% increased Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "10000% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurningArrowThresholdJewelUnique__1"] = { + "+10% to Fire Damage over Time Multiplier", + ["affix"] = "", + ["group"] = "BurningArrowGroundTarAndFire", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1199, + }, + ["tradeHashes"] = { + [3382807662] = { + "+10% to Fire Damage over Time Multiplier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["BurningDamageForJewel"] = { + "(16-20)% increased Burning Damage", + ["affix"] = "of Combusting", + ["group"] = "BurningDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1627, + }, + ["tradeHashes"] = { + [1175385867] = { + "(16-20)% increased Burning Damage", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CanOnlyDealDamageWithThisWeapon"] = { + "You can only deal Damage with this Weapon or Ignite", + ["affix"] = "", + ["group"] = "CanOnlyDealDamageWithThisWeapon", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2484, + }, + ["tradeHashes"] = { + [3128318472] = { + "You can only deal Damage with this Weapon or Ignite", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { + "Your Hits can only Kill Frozen Enemies", + ["affix"] = "", + ["group"] = "CanOnlyKillFrozenEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2756, + }, + ["tradeHashes"] = { + [2740359895] = { + "Your Hits can only Kill Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannonBowImplicitCannotUseAmmoSkills1"] = { + "Cannot load or fire Ammunition", + ["affix"] = "", + ["group"] = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7649, + }, + ["tradeHashes"] = { + [3663551379] = { + "Cannot load or fire Ammunition", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeAffectedByFlasksUnique__1"] = { + "Flasks do not apply to you", + ["affix"] = "", + ["group"] = "CannotBeAffectedByFlasks", + ["level"] = 38, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 3425, + }, + ["tradeHashes"] = { + [3003321700] = { + "Flasks do not apply to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { + "Allies' Aura Buffs do not affect you", + ["affix"] = "", + ["group"] = "CannotBeBuffedByAlliedAuras", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 2753, + }, + ["tradeHashes"] = { + [1489905076] = { + "Allies' Aura Buffs do not affect you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeChilledUniqueBodyStrInt3"] = { + "Cannot be Chilled", + ["affix"] = "", + ["group"] = "CannotBeChilled", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1592, + }, + ["tradeHashes"] = { + [283649372] = { + "Cannot be Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeChilledUnique__1"] = { + "Cannot be Chilled", + ["affix"] = "", + ["group"] = "CannotBeChilled", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1592, + }, + ["tradeHashes"] = { + [283649372] = { + "Cannot be Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { + "100% chance to Avoid being Chilled during Onslaught", + ["affix"] = "", + ["group"] = "CannotBeChilledDuringOnslaught", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2765, + }, + ["tradeHashes"] = { + [2872105818] = { + "100% chance to Avoid being Chilled during Onslaught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeFrozenOrChilledUnique__1"] = { + "You cannot be Chilled or Frozen", + ["affix"] = "", + ["group"] = "CannotBeChilledOrFrozen", + ["level"] = 31, + ["modTags"] = { + }, + ["statOrder"] = { + 1593, + }, + ["tradeHashes"] = { + [2996245527] = { + "You cannot be Chilled or Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeFrozenOrChilledUnique__2"] = { + "You cannot be Chilled or Frozen", + ["affix"] = "", + ["group"] = "CannotBeChilledOrFrozen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1593, + }, + ["tradeHashes"] = { + [2996245527] = { + "You cannot be Chilled or Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { + "Cannot be Frozen if Dexterity is higher than Intelligence", + ["affix"] = "", + ["group"] = "CannotBeFrozenWithDexHigherThanInt", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5266, + }, + ["tradeHashes"] = { + [3881126302] = { + "Cannot be Frozen if Dexterity is higher than Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { + "Cannot be Ignited if Strength is higher than Dexterity", + ["affix"] = "", + ["group"] = "CannotBeIgnitedWithStrHigherThanDex", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 5271, + }, + ["tradeHashes"] = { + [676883595] = { + "Cannot be Ignited if Strength is higher than Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeKnockedBack"] = { + "Cannot be Knocked Back", + ["affix"] = "", + ["group"] = "CannotBeKnockedBack", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1410, + }, + ["tradeHashes"] = { + [4212255859] = { + "Cannot be Knocked Back", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBePoisonedUnique__1"] = { + "Cannot be Poisoned", + ["affix"] = "", + ["group"] = "CannotBePoisoned", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3073, + }, + ["tradeHashes"] = { + [3835551335] = { + "Cannot be Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeShocked"] = { + "Cannot be Shocked", + ["affix"] = "", + ["group"] = "CannotBeShocked", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1597, + }, + ["tradeHashes"] = { + [491899612] = { + "Cannot be Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeShockedWhileFrozenUniqueStaff14"] = { + "You cannot be Shocked while Frozen", + ["affix"] = "", + ["group"] = "CannotBeShockedWhileFrozen", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2656, + }, + ["tradeHashes"] = { + [798853218] = { + "You cannot be Shocked while Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { + "You cannot be Shocked while at maximum Endurance Charges", + ["affix"] = "", + ["group"] = "CannotBeShockedWhileMaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 3832, + }, + ["tradeHashes"] = { + [798111687] = { + "You cannot be Shocked while at maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { + "Cannot be Shocked if Intelligence is higher than Strength", + ["affix"] = "", + ["group"] = "CannotBeShockedWithIntHigherThanStr", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 5284, + }, + ["tradeHashes"] = { + [3024242403] = { + "Cannot be Shocked if Intelligence is higher than Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeSlowedBelowBaseUnique__1"] = { + "Action Speed cannot be modified to below base value", + ["affix"] = "", + ["group"] = "CannotBeSlowedBelowBase", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2913, + }, + ["tradeHashes"] = { + [628716294] = { + "Action Speed cannot be modified to below base value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeStunned"] = { + "Cannot be Stunned", + ["affix"] = "", + ["group"] = "CannotBeStunned", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1914, + }, + ["tradeHashes"] = { + [1694106311] = { + "Cannot be Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeStunnedByAttacksElderItemUnique__1"] = { + "Cannot be Stunned by Attacks if your other Ring is an Elder Item", + ["affix"] = "", + ["group"] = "CannotBeStunnedByAttacksElderItem", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3997, + }, + ["tradeHashes"] = { + [2926399803] = { + "Cannot be Stunned by Attacks if your other Ring is an Elder Item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { + "Cannot be Stunned by Spells if your other Ring is a Shaper Item", + ["affix"] = "", + ["group"] = "CannotBeStunnedBySpellsShaperItem", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3996, + }, + ["tradeHashes"] = { + [2312817839] = { + "Cannot be Stunned by Spells if your other Ring is a Shaper Item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeStunnedOnLowLife"] = { + "Cannot be Stunned when on Low Life", + ["affix"] = "", + ["group"] = "CannotBeStunnedOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1915, + }, + ["tradeHashes"] = { + [1472543401] = { + "Cannot be Stunned when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBeStunnedUnique__1_"] = { + "Cannot be Stunned", + ["affix"] = "", + ["group"] = "CannotBeStunned", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1914, + }, + ["tradeHashes"] = { + [1694106311] = { + "Cannot be Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotBlockAttacks"] = { + "Cannot Block", + ["affix"] = "", + ["group"] = "CannotBlockAttacks", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2977, + }, + ["tradeHashes"] = { + [1465760952] = { + "Cannot Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotCastSpellsUnique__1"] = { + "Cannot Cast Spells", + ["affix"] = "", + ["group"] = "CannotCastSpells", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 5292, + }, + ["tradeHashes"] = { + [3965442551] = { + "Cannot Cast Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotCrit"] = { + "Never deal Critical Hits", + ["affix"] = "", + ["group"] = "CannotCrit", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1917, + }, + ["tradeHashes"] = { + [3638599682] = { + "Never deal Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotCritNonShockedEnemiesUnique___1"] = { + "You cannot deal Critical Hits against non-Shocked Enemies", + ["affix"] = "", + ["group"] = "CannotCritNonShockedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3790, + }, + ["tradeHashes"] = { + [3344493315] = { + "You cannot deal Critical Hits against non-Shocked Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotDealSpellDamageUnique__1"] = { + "Spell Skills deal no Damage", + ["affix"] = "", + ["group"] = "CannotDealSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10033, + }, + ["tradeHashes"] = { + [291644318] = { + "Spell Skills deal no Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotDieToElementalReflect"] = { + "You cannot be killed by reflected Elemental Damage", + ["affix"] = "", + ["group"] = "CannotDieToElementalReflect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2448, + }, + ["tradeHashes"] = { + [2776725787] = { + "You cannot be killed by reflected Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { + "Gains no Charges during Effect of any Overflowing Chalice Flask", + ["affix"] = "", + ["group"] = "CannotGainFlaskChargesDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 809, + }, + ["tradeHashes"] = { + [3741956733] = { + "Gains no Charges during Effect of any Overflowing Chalice Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotKnockBackUniqueOneHandMace5_"] = { + "Cannot Knock Enemies Back", + ["affix"] = "", + ["group"] = "CannotKnockBack", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2746, + }, + ["tradeHashes"] = { + [2095084973] = { + "Cannot Knock Enemies Back", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeech"] = { + "Cannot Leech", + ["affix"] = "", + ["group"] = "CannotLeech", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 2246, + }, + ["tradeHashes"] = { + [1336164384] = { + "Cannot Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechFromCriticalStrikesUnique___1"] = { + "Cannot Leech Life from Critical Hits", + ["affix"] = "", + ["group"] = "CannotLeechFromCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "critical", + }, + ["statOrder"] = { + 3922, + }, + ["tradeHashes"] = { + [3243534964] = { + "Cannot Leech Life from Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechMana"] = { + "Cannot Leech Mana", + ["affix"] = "", + ["group"] = "CannotLeechMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2350, + }, + ["tradeHashes"] = { + [1759630226] = { + "Cannot Leech Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechManaUnique__1_"] = { + "Cannot Leech Mana", + ["affix"] = "", + ["group"] = "CannotLeechMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2350, + }, + ["tradeHashes"] = { + [1759630226] = { + "Cannot Leech Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechOnLowLife"] = { + "Cannot Leech when on Low Life", + ["affix"] = "", + ["group"] = "CannotLeechOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2352, + }, + ["tradeHashes"] = { + [3279535558] = { + "Cannot Leech when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { + "Cannot Leech or Regenerate Mana", + ["affix"] = "", + ["group"] = "NoManaLeechOrRegen", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2351, + }, + ["tradeHashes"] = { + [2918242917] = { + "Cannot Leech or Regenerate Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CannotLeechOrRegenerateManaUnique__1_"] = { + "Cannot Leech or Regenerate Mana", + ["affix"] = "", + ["group"] = "NoManaLeechOrRegen", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2351, + }, + ["tradeHashes"] = { + [2918242917] = { + "Cannot Leech or Regenerate Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CastLevel1SummonLesserShrineOnKillUnique"] = { + "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + ["affix"] = "", + ["group"] = "CastLevel1SummonLesserShrineOnKill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 497, + }, + ["tradeHashes"] = { + [1010340836] = { + "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { + "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", + ["affix"] = "", + ["group"] = "CastSocketedColdSpellsOnMeleeCriticalStrike", + ["level"] = 1, + ["modTags"] = { + "skill", + "elemental", + "cold", + "attack", + "caster", + "gem", + }, + ["statOrder"] = { + 606, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2295303426] = { + "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { + "Trigger Socketed Minion Spells on Kill with this Weapon", + "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", + ["affix"] = "", + ["group"] = "CastSocketedMinionSpellsOnKill", + ["level"] = 1, + ["modTags"] = { + "attack", + "caster", + "minion", + }, + ["statOrder"] = { + 547, + 547.1, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { + "50% chance to Trigger Socketed Spells on killing a Shocked enemy", + ["affix"] = "", + ["group"] = "CastSocketedSpellsOnShockedEnemyKill", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 546, + }, + ["tradeHashes"] = { + [2770461177] = { + "50% chance to Trigger Socketed Spells on killing a Shocked enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CastSpeedJewel"] = { + "(2-4)% increased Cast Speed", + ["affix"] = "of Enchanting", + ["group"] = "IncreasedCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(2-4)% increased Cast Speed", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["CastSpeedPer100IntelligenceAuraUnique__1"] = { + "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", + ["affix"] = "", + ["group"] = "CastSpeedPer100IntelligenceAura", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 2740, + }, + ["tradeHashes"] = { + [2373999301] = { + "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { + "Nearby Enemies are Covered in Ash", + ["affix"] = "", + ["group"] = "LocalDisplayNearbyEnemiesAreCoveredInAsh", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7674, + }, + ["tradeHashes"] = { + [746994389] = { + "Nearby Enemies are Covered in Ash", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingImplicitMarakethRapier1"] = { + "Causes Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2261, + }, + ["tradeHashes"] = { + [2091621414] = { + "Causes Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingOnCritUniqueDagger11"] = { + "50% chance to cause Bleeding on Critical Hit", + ["affix"] = "", + ["group"] = "LocalCausesBleedingOnCrit50PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 7638, + }, + ["tradeHashes"] = { + [2743246999] = { + "50% chance to cause Bleeding on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueOneHandAxe5"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding25PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2262, + }, + ["tradeHashes"] = { + [1401349154] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueOneHandAxe5Updated_"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleedingChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueTwoHandAxe4"] = { + "50% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding50PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2263, + }, + ["tradeHashes"] = { + [20157668] = { + "50% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueTwoHandAxe4Updated"] = { + "50% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleedingChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "50% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueTwoHandAxe7"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding25PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2262, + }, + ["tradeHashes"] = { + [1401349154] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUniqueTwoHandAxe7Updated"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleedingChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUnique__1"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding25PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2262, + }, + ["tradeHashes"] = { + [1401349154] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUnique__1Updated_"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleedingChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUnique__2"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding25PercentChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2262, + }, + ["tradeHashes"] = { + [1401349154] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesBleedingUnique__2Updated"] = { + "25% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleedingChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "25% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesPoisonOnCritUniqueDagger9"] = { + "50% chance to Cause Poison on Critical Hit", + ["affix"] = "", + ["group"] = "LocalCausesPoisonOnCrit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 7812, + }, + ["tradeHashes"] = { + [374737750] = { + "50% chance to Cause Poison on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CausesPoisonOnCritUnique__1"] = { + "Melee Critical Hits Poison the Enemy", + ["affix"] = "", + ["group"] = "CausesPoisonOnCrit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 2533, + }, + ["tradeHashes"] = { + [2635385320] = { + "Melee Critical Hits Poison the Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CauseseBleedingOnCritUniqueDagger9"] = { + "50% chance to Cause Bleeding on Critical Hit", + ["affix"] = "", + ["group"] = "LocalCausesBleedingOnCrit", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 7635, + }, + ["tradeHashes"] = { + [513681673] = { + "50% chance to Cause Bleeding on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CelestialFootprintsUnique__1_"] = { + "Celestial Footprints", + ["affix"] = "", + ["group"] = "CelestialFootprints", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10752, + }, + ["tradeHashes"] = { + [50381303] = { + "Celestial Footprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceForDoubleStunDurationImplicitMace_1"] = { + "25% chance to double Stun Duration", + ["affix"] = "", + ["group"] = "ChanceForDoubleStunDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3249, + }, + ["tradeHashes"] = { + [2622251413] = { + "25% chance to double Stun Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceForDoubleStunDurationUnique__1"] = { + "50% chance to double Stun Duration", + ["affix"] = "", + ["group"] = "ChanceForDoubleStunDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3249, + }, + ["tradeHashes"] = { + [2622251413] = { + "50% chance to double Stun Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { + "100% Chance to Cause Monster to Flee on Block", + ["affix"] = "", + ["group"] = "ChanceForEnemyToFleeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2705, + }, + ["tradeHashes"] = { + [3212461220] = { + "100% Chance to Cause Monster to Flee on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { + "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", + ["affix"] = "", + ["group"] = "ChanceForSpectersToGainSoulEaterOnKill", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 7913, + }, + ["tradeHashes"] = { + [2390273715] = { + "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { + "50% chance to Avoid being Chilled", + ["affix"] = "", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1600, + }, + ["tradeHashes"] = { + [1514829491] = { + }, + [3483999943] = { + "50% chance to Avoid being Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidChilledUnique__1"] = { + "50% chance to Avoid being Chilled", + ["affix"] = "", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1600, + }, + ["tradeHashes"] = { + [1514829491] = { + }, + [3483999943] = { + "50% chance to Avoid being Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { + "+(5-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { + "10% chance to Avoid Elemental Ailments", + ["affix"] = "", + ["group"] = "AvoidElementalStatusAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1599, + }, + ["tradeHashes"] = { + [3005472710] = { + "10% chance to Avoid Elemental Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidFireDamageUnique__1"] = { + "25% chance to Avoid Fire Damage from Hits", + ["affix"] = "", + ["group"] = "FireDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 3077, + }, + ["tradeHashes"] = { + [42242677] = { + "25% chance to Avoid Fire Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { + "25% chance to Avoid being Chilled", + ["affix"] = "", + ["group"] = "ChanceToAvoidFreezeAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1600, + }, + ["tradeHashes"] = { + [1514829491] = { + }, + [3483999943] = { + "25% chance to Avoid being Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { + "20% chance to Avoid Projectiles while Phasing", + ["affix"] = "", + ["group"] = "ChanceToAvoidProjectilesWhilePhasing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4615, + }, + ["tradeHashes"] = { + [3635120731] = { + "20% chance to Avoid Projectiles while Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBePiercedUniqueBodyStr6"] = { + "Enemy Projectiles Pierce you", + ["affix"] = "", + ["group"] = "ProjectilesAlwaysPierceYou", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9563, + }, + ["tradeHashes"] = { + [1457679290] = { + "Enemy Projectiles Pierce you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBeShockedUnique__1"] = { + "+20% chance to be Shocked", + ["affix"] = "", + ["group"] = "ChanceToBeShocked", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2695, + }, + ["tradeHashes"] = { + [3206652215] = { + "+20% chance to be Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBeShockedUnique__2"] = { + "+50% chance to be Shocked", + ["affix"] = "", + ["group"] = "ChanceToBeShocked", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2695, + }, + ["tradeHashes"] = { + [3206652215] = { + "+50% chance to be Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBleedUnique__1_"] = { + "Attacks have 25% chance to cause Bleeding", + ["affix"] = "", + ["group"] = "ChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + }, + ["tradeHashes"] = { + [2055966527] = { + "Attacks have 25% chance to cause Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBleedUnique__2__"] = { + "Attacks have 25% chance to cause Bleeding", + ["affix"] = "", + ["group"] = "ChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + }, + ["tradeHashes"] = { + [2055966527] = { + "Attacks have 25% chance to cause Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBleedUnique__3_"] = { + "Attacks have 15% chance to cause Bleeding", + ["affix"] = "", + ["group"] = "ChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + }, + ["tradeHashes"] = { + [2055966527] = { + "Attacks have 15% chance to cause Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBlindOnCriticalStrikesUnique__1"] = { + "30% chance to Blind Enemies on Critical Hit", + ["affix"] = "", + ["group"] = "ChanceToBlindOnCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3923, + }, + ["tradeHashes"] = { + [3983981705] = { + "30% chance to Blind Enemies on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { + "(40-50)% chance to Blind Enemies on Critical Hit", + ["affix"] = "", + ["group"] = "ChanceToBlindOnCriticalStrikes", + ["level"] = 38, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3923, + }, + ["tradeHashes"] = { + [3983981705] = { + "(40-50)% chance to Blind Enemies on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToCastOnManaSpentUnique__1"] = { + "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", + ["affix"] = "", + ["group"] = "ChanceToCastOnManaSpent", + ["level"] = 1, + ["modTags"] = { + "skill", + "caster", + "gem", + }, + ["statOrder"] = { + 548, + 548.1, + }, + ["tradeHashes"] = { + [723388324] = { + "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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToChillAttackersOnBlockUnique__1"] = { + "(30-40)% chance to Chill Attackers for 4 seconds on Block", + ["affix"] = "", + ["group"] = "ChanceToChillAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "red_herring", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5643, + }, + ["tradeHashes"] = { + [864879045] = { + "(30-40)% chance to Chill Attackers for 4 seconds on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToChillAttackersOnBlockUnique__2__"] = { + "Chill Attackers for 4 seconds on Block", + ["affix"] = "", + ["group"] = "ChanceToChillAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "red_herring", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5643, + }, + ["tradeHashes"] = { + [864879045] = { + "Chill Attackers for 4 seconds on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { + "30% increased Evasion Rating while Phasing", + ["affix"] = "", + ["group"] = "ChanceToDodgeAttacksWhilePhasing", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 2285, + }, + ["tradeHashes"] = { + [402176724] = { + "30% increased Evasion Rating while Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { + "30% chance to Avoid Elemental Ailments while Phasing", + ["affix"] = "", + ["group"] = "AvoidElementalStatusAilmentsPhasing", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 4607, + }, + ["tradeHashes"] = { + [115351487] = { + "30% chance to Avoid Elemental Ailments while Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeJewel"] = { + "(2-3)% chance to Freeze", + ["affix"] = "FIX ME", + ["group"] = "ChanceToFreezeForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "(2-3)% chance to Freeze", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToFreezeUniqueQuiver5"] = { + "(7-10)% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "(7-10)% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUniqueRing30"] = { + "10% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "10% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUniqueStaff2"] = { + "8% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "8% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUnique__1"] = { + "5% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "5% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUnique__2"] = { + "2% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "2% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUnique__3"] = { + "10% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "10% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUnique__4"] = { + "10% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "10% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToFreezeUnique__5"] = { + "20% chance to Freeze", + ["affix"] = "", + ["group"] = "ChanceToFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + }, + ["tradeHashes"] = { + [2309614417] = { + "20% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { + "50% chance to gain an Endurance Charge when you Block", + ["affix"] = "", + ["group"] = "ChanceToGainEnduranceChargeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "endurance_charge", + }, + ["statOrder"] = { + 1863, + }, + ["tradeHashes"] = { + [417188801] = { + "50% chance to gain an Endurance Charge when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { + "20% chance to gain an Endurance Charge when you Block", + ["affix"] = "", + ["group"] = "ChanceToGainEnduranceChargeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "endurance_charge", + }, + ["statOrder"] = { + 1863, + }, + ["tradeHashes"] = { + [417188801] = { + "20% chance to gain an Endurance Charge when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { + "20% chance to gain a Frenzy Charge on killing a Frozen enemy", + ["affix"] = "", + ["group"] = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1578, + }, + ["tradeHashes"] = { + [2230931659] = { + "20% chance to gain a Frenzy Charge on killing a Frozen enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { + "15% chance to gain a Frenzy Charge when you Stun an Enemy", + ["affix"] = "", + ["group"] = "ChanceToGainFrenzyChargeOnStun", + ["level"] = 38, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 5531, + }, + ["tradeHashes"] = { + [1695720239] = { + "15% chance to gain a Frenzy Charge when you Stun an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToGainMaximumPowerChargesUnique__1_"] = { + "25% chance that if you would gain Power Charges, you instead gain up to", + "your maximum number of Power Charges", + ["affix"] = "", + ["group"] = "ChanceToGainMaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 6816, + 6816.1, + }, + ["tradeHashes"] = { + [1232004574] = { + "25% chance that if you would gain Power Charges, you instead gain up to", + "your maximum number of Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { + "Always Poison on Hit against Cursed Enemies", + ["affix"] = "", + ["group"] = "ChanceToPoisonCursedEnemiesOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3861, + }, + ["tradeHashes"] = { + [2208857094] = { + "Always Poison on Hit against Cursed Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToPoisonUnique__1_______"] = { + "25% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "PoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "25% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToPoisonWithAttacksUnique___1"] = { + "20% chance to Poison on Hit with Attacks", + ["affix"] = "", + ["group"] = "ChanceToPoisonWithAttacks", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 2902, + }, + ["tradeHashes"] = { + [3954735777] = { + "20% chance to Poison on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToPoisonWithAttacksUnique___2"] = { + "(20-30)% chance to Poison on Hit with Attacks", + ["affix"] = "", + ["group"] = "ChanceToPoisonWithAttacks", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 2902, + }, + ["tradeHashes"] = { + [3954735777] = { + "(20-30)% chance to Poison on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { + "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", + ["affix"] = "", + ["group"] = "ChanceToReflectChaosDamageToSelf", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 2715, + }, + ["tradeHashes"] = { + [2860779491] = { + "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockAttackersOnBlockUnique__1_"] = { + "(30-40)% chance to Shock Attackers for 4 seconds on Block", + ["affix"] = "", + ["group"] = "ChanceToShockAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9842, + }, + ["tradeHashes"] = { + [575111651] = { + "(30-40)% chance to Shock Attackers for 4 seconds on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockAttackersOnBlockUnique__2"] = { + "Shock Attackers for 4 seconds on Block", + ["affix"] = "", + ["group"] = "ChanceToShockAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9842, + }, + ["tradeHashes"] = { + [575111651] = { + "Shock Attackers for 4 seconds on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockJewel"] = { + "(2-3)% chance to Shock", + ["affix"] = "FIX ME", + ["group"] = "ChanceToShockForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "(2-3)% chance to Shock", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChanceToShockUniqueBow10"] = { + "10% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "10% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUniqueDescentTwoHandSword1"] = { + "9% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "9% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUniqueGlovesStr4"] = { + "30% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "30% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUniqueOneHandSword7"] = { + "(15-20)% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "(15-20)% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUniqueRing29"] = { + "25% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "25% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUniqueStaff8"] = { + "15% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "15% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUnique__1"] = { + "10% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "10% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUnique__2_"] = { + "50% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "50% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUnique__3"] = { + "(5-10)% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "(5-10)% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChanceToShockUnique__4_"] = { + "(10-15)% chance to Shock", + ["affix"] = "", + ["group"] = "ChanceToShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + }, + ["tradeHashes"] = { + [1538773178] = { + "(10-15)% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChannelledSkillDamagePerDevotion"] = { + "Channelling Skills deal 4% increased Damage per 10 Devotion", + ["affix"] = "", + ["group"] = "ChannelledSkillDamagePerDevotion", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5579, + }, + ["tradeHashes"] = { + [970844066] = { + "Channelling Skills deal 4% increased Damage per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChannelledSkillDamageUnique__1"] = { + "Channelling Skills deal (50-70)% increased Damage", + ["affix"] = "", + ["group"] = "ChannelledSkillDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5578, + }, + ["tradeHashes"] = { + [2733285506] = { + "Channelling Skills deal (50-70)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosCritChanceJewel"] = { + "(12-16)% increased Critical Hit Chance with Chaos Skills", + ["affix"] = "Obliterating", + ["group"] = "ChaosCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "critical", + }, + ["statOrder"] = { + 1381, + }, + ["tradeHashes"] = { + [1424360933] = { + "(12-16)% increased Critical Hit Chance with Chaos Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChaosCritMultiplier"] = { + "+(8-10)% to Critical Damage Bonus with Chaos Skills", + ["affix"] = "", + ["group"] = "ChaosCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "critical", + }, + ["statOrder"] = { + 1403, + }, + ["tradeHashes"] = { + [2710238363] = { + "+(8-10)% to Critical Damage Bonus with Chaos Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { + "Gain (6-10)% of Cold Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "ChaosDamageAsPortionOfColdDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "chaos", + }, + ["statOrder"] = { + 1684, + }, + ["tradeHashes"] = { + [1036710490] = { + "Gain (6-10)% of Cold Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { + "Gain (40-60)% of Physical Damage as extra Chaos Damage", + ["affix"] = "", + ["group"] = "ChaosDamageAsPortionOfDamage", + ["level"] = 87, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1677, + }, + ["tradeHashes"] = { + [459352300] = { + "Gain (40-60)% of Physical Damage as extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageAsPortionOfDamageUnique__1"] = { + "Gain (30-40)% of Physical Damage as extra Chaos Damage", + ["affix"] = "", + ["group"] = "ChaosDamageAsPortionOfDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1677, + }, + ["tradeHashes"] = { + [459352300] = { + "Gain (30-40)% of Physical Damage as extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { + "Gain (6-10)% of Fire Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "ChaosDamageAsPortionOfFireDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 1687, + }, + ["tradeHashes"] = { + [2105236138] = { + "Gain (6-10)% of Fire Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { + "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "ChaosDamageAsPortionOfLightningDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "chaos", + }, + ["statOrder"] = { + 1681, + }, + ["tradeHashes"] = { + [502598927] = { + "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageCanShockUniqueBow10"] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + ["affix"] = "", + ["group"] = "ChaosDamageCanShock", + ["level"] = 1, + ["modTags"] = { + "poison", + "elemental", + "lightning", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2623, + }, + ["tradeHashes"] = { + [2418601510] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageCanShockUnique__1"] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + ["affix"] = "", + ["group"] = "ChaosDamageCanShock", + ["level"] = 1, + ["modTags"] = { + "poison", + "elemental", + "lightning", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2623, + }, + ["tradeHashes"] = { + [2418601510] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { + "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", + ["affix"] = "", + ["group"] = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 5581, + }, + ["tradeHashes"] = { + [2319040925] = { + "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { + "33% of Chaos Damage taken bypasses Energy Shield", + ["affix"] = "", + ["group"] = "ChaosDamageDoesNotBypassEnergyShieldPercent", + ["level"] = 99, + ["modTags"] = { + }, + ["statOrder"] = { + 1457, + }, + ["tradeHashes"] = { + [1552907959] = { + "33% of Chaos Damage taken bypasses Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { + "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", + ["affix"] = "", + ["group"] = "ChaosDamageIncreasedPerInt", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 2801, + }, + ["tradeHashes"] = { + [2582360791] = { + "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageJewel"] = { + "(9-13)% increased Chaos Damage", + ["affix"] = "Chaotic", + ["group"] = "ChaosDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(9-13)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ChaosDamageOverTimeUnique__1"] = { + "25% reduced Chaos Damage taken over time", + ["affix"] = "", + ["group"] = "ChaosDamageOverTimeTaken", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1695, + }, + ["tradeHashes"] = { + [3762784591] = { + "25% reduced Chaos Damage taken over time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDamageTakenUniqueBodyStr4"] = { + "-(40-30) Chaos Damage taken", + ["affix"] = "", + ["group"] = "ChaosDamageTaken", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 2595, + }, + ["tradeHashes"] = { + [496011033] = { + "-(40-30) Chaos Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenAuraUnique__1"] = { + "Trigger Level 20 Death Aura when Equipped", + ["affix"] = "", + ["group"] = "ChaosDegenAuraUnique", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 495, + }, + ["tradeHashes"] = { + [825352061] = { + "Trigger Level 20 Death Aura when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { + "250 Chaos Damage taken per second", + ["affix"] = "", + ["group"] = "ChaosDegen", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1694, + }, + ["tradeHashes"] = { + [2456773909] = { + "250 Chaos Damage taken per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenerationAuraNonPlayersUnique__1"] = { + "50 Chaos Damage taken per second", + ["affix"] = "", + ["group"] = "ChaosDegen", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1694, + }, + ["tradeHashes"] = { + [2456773909] = { + "50 Chaos Damage taken per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { + "450 Chaos Damage taken per second", + ["affix"] = "", + ["group"] = "ChaosDegen", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1694, + }, + ["tradeHashes"] = { + [2456773909] = { + "450 Chaos Damage taken per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenerationAuraPlayersUnique__1"] = { + "50 Chaos Damage taken per second", + ["affix"] = "", + ["group"] = "ChaosDegen", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1694, + }, + ["tradeHashes"] = { + [2456773909] = { + "50 Chaos Damage taken per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosDegenerationOnKillUniqueBodyStr3"] = { + "You take 450 Chaos Damage per second for 3 seconds on Kill", + ["affix"] = "", + ["group"] = "ChaosDegenerationOnKill", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 2466, + }, + ["tradeHashes"] = { + [4031081471] = { + "You take 450 Chaos Damage per second for 3 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosGemCastSpeedJewel"] = { + "(3-5)% increased Cast Speed with Chaos Skills", + ["affix"] = "Withering", + ["group"] = "ChaosGemCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "chaos", + "caster", + "speed", + }, + ["statOrder"] = { + 1293, + }, + ["tradeHashes"] = { + [2054902222] = { + "(3-5)% increased Cast Speed with Chaos Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChaosResistDemigodsTorchImplicit"] = { + "+(11-19)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(11-19)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosResistDoubledUnique__1"] = { + "Chaos Resistance is doubled", + ["affix"] = "", + ["group"] = "ChaosResistDoubled", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5590, + }, + ["tradeHashes"] = { + [1573646535] = { + "Chaos Resistance is doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosResistanceJewel"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "of Order", + ["group"] = "ChaosResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ChaosResistanceOnLowLifeUniqueRing9"] = { + "+(20-25)% to Chaos Resistance when on Low Life", + ["affix"] = "", + ["group"] = "ChaosResistanceOnLowLife", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1025, + }, + ["tradeHashes"] = { + [2366940416] = { + "+(20-25)% to Chaos Resistance when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosResistancePerEnduranceChargeUnique__1_"] = { + "+4% to Chaos Resistance per Endurance Charge", + ["affix"] = "", + ["group"] = "ChaosResistancePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5589, + }, + ["tradeHashes"] = { + [4210011075] = { + "+4% to Chaos Resistance per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { + "+1% to Chaos Resistance per Poison on you", + ["affix"] = "", + ["group"] = "ChaosResistancePerPoisonOnSelf", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5591, + }, + ["tradeHashes"] = { + [175362265] = { + "+1% to Chaos Resistance per Poison on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { + "+50% to Chaos Resistance during any Flask Effect", + ["affix"] = "", + ["group"] = "ChaosResistanceWhileUsingFlask", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "flask", + "chaos", + "resistance", + }, + ["statOrder"] = { + 3008, + }, + ["tradeHashes"] = { + [392168009] = { + "+50% to Chaos Resistance during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosSkillEffectDurationUnique__1"] = { + "Chaos Skills have 40% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "ChaosSkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1646, + }, + ["tradeHashes"] = { + [289885185] = { + "Chaos Skills have 40% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChaosTakenOnES"] = { + "Chaos Damage taken does not cause double loss of Energy Shield", + ["affix"] = "", + ["group"] = "ChaosTakenOnES", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 2290, + }, + ["tradeHashes"] = { + [133168938] = { + "Chaos Damage taken does not cause double loss of Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { + "10% increased Accuracy Rating per Frenzy Charge", + ["affix"] = "", + ["group"] = "AccuracyRatingPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1785, + }, + ["tradeHashes"] = { + [3700381193] = { + "10% increased Accuracy Rating per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { + "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "AddedColdDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 3918, + }, + ["tradeHashes"] = { + [3648858570] = { + "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { + "(7-9) to (13-14) Fire Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "GlobalAddedFireDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 8967, + }, + ["tradeHashes"] = { + [1073447019] = { + "(7-9) to (13-14) Fire Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { + "(1-2) to (18-20) Lightning Damage per Power Charge", + ["affix"] = "", + ["group"] = "GlobalAddedLightningDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 8971, + }, + ["tradeHashes"] = { + [1917107159] = { + "(1-2) to (18-20) Lightning Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAdditionalCursePowerCharges"] = { + "You can apply an additional Curse while at maximum Power Charges", + ["affix"] = "", + ["group"] = "AdditionalCurseMaximumPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 9323, + }, + ["tradeHashes"] = { + [761598374] = { + "You can apply an additional Curse while at maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { + "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", + ["affix"] = "", + ["group"] = "ArcaneSurgeOnHitMaximumPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 6749, + }, + ["tradeHashes"] = { + [813119588] = { + "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusArmourPerEnduranceCharge"] = { + "6% increased Armour per Endurance Charge", + ["affix"] = "", + ["group"] = "IncreasedArmourPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 9463, + }, + ["tradeHashes"] = { + [1447080724] = { + "6% increased Armour per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { + "1% increased Attack and Cast Speed per Endurance Charge", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 4473, + }, + ["tradeHashes"] = { + [3618888098] = { + "1% increased Attack and Cast Speed per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { + "1% increased Attack and Cast Speed per Power Charge", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 4474, + }, + ["tradeHashes"] = { + [987588151] = { + "1% increased Attack and Cast Speed per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusBlockChancePerEnduranceCharge"] = { + "+1% Chance to Block Attack Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "BlockChancePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4171, + }, + ["tradeHashes"] = { + [2355741828] = { + "+1% Chance to Block Attack Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusBlockChancePerFrenzyCharge_"] = { + "+1% Chance to Block Attack Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "BlockChancePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4172, + }, + ["tradeHashes"] = { + [2148784747] = { + "+1% Chance to Block Attack Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusBlockChancePerPowerCharge_"] = { + "+1% Chance to Block Attack Damage per Power Charge", + ["affix"] = "", + ["group"] = "BlockChancePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4173, + }, + ["tradeHashes"] = { + [2856326982] = { + "+1% Chance to Block Attack Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { + "You cannot be Stunned while at maximum Endurance Charges", + ["affix"] = "", + ["group"] = "CannotBeStunnedMaximumEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3708, + }, + ["tradeHashes"] = { + [3780437763] = { + "You cannot be Stunned while at maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { + "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + ["affix"] = "", + ["group"] = "ChanceToGainMaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 3888, + }, + ["tradeHashes"] = { + [2713233613] = { + "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { + "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + ["affix"] = "", + ["group"] = "ChanceToGainMaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 6815, + }, + ["tradeHashes"] = { + [2119664154] = { + "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusChanceToGainMaximumPowerCharges"] = { + "15% chance that if you would gain Power Charges, you instead gain up to", + "your maximum number of Power Charges", + ["affix"] = "", + ["group"] = "ChanceToGainMaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 6816, + 6816.1, + }, + ["tradeHashes"] = { + [1232004574] = { + "15% chance that if you would gain Power Charges, you instead gain up to", + "your maximum number of Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { + "+4% to Chaos Resistance per Endurance Charge", + ["affix"] = "", + ["group"] = "ChaosResistancePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5589, + }, + ["tradeHashes"] = { + [4210011075] = { + "+4% to Chaos Resistance per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusColdDamageAddedAsChaos"] = { + "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "ColdDamageAddedAsChaosPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "chaos", + }, + ["statOrder"] = { + 9285, + }, + ["tradeHashes"] = { + [2764080642] = { + "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { + "6% increased Critical Hit Chance per Endurance Charge", + ["affix"] = "", + ["group"] = "CriticalStrikeChancePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5854, + }, + ["tradeHashes"] = { + [2547511866] = { + "6% increased Critical Hit Chance per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { + "6% increased Critical Hit Chance per Frenzy Charge", + ["affix"] = "", + ["group"] = "CriticalStrikeChancePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5855, + }, + ["tradeHashes"] = { + [707887043] = { + "6% increased Critical Hit Chance per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { + "3% increased Critical Damage Bonus per Power Charge", + ["affix"] = "", + ["group"] = "CriticalMultiplierPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2990, + }, + ["tradeHashes"] = { + [4164870816] = { + "3% increased Critical Damage Bonus per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusDamagePerEnduranceCharge"] = { + "5% increased Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "DamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2917, + }, + ["tradeHashes"] = { + [3515686789] = { + "5% increased Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusDamagePerFrenzyCharge"] = { + "5% increased Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "DamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2994, + }, + ["tradeHashes"] = { + [902747843] = { + "5% increased Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusDamagePerPowerCharge"] = { + "5% increased Damage per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6009, + }, + ["tradeHashes"] = { + [2034658008] = { + "5% increased Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusEnduranceChargeDuration"] = { + "(20-40)% increased Endurance Charge Duration", + ["affix"] = "", + ["group"] = "EnduranceChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1864, + }, + ["tradeHashes"] = { + [1170174456] = { + "(20-40)% increased Endurance Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusEnduranceChargeIfHitRecently"] = { + "Gain 1 Endurance Charge every second if you've been Hit Recently", + ["affix"] = "", + ["group"] = "EnduranceChargeIfHitRecently", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 6780, + }, + ["tradeHashes"] = { + [2894476716] = { + "Gain 1 Endurance Charge every second if you've been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusEnduranceChargeOnKill"] = { + "10% chance to gain an Endurance Charge on kill", + ["affix"] = "", + ["group"] = "EnduranceChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 2403, + }, + ["tradeHashes"] = { + [1054322244] = { + "10% chance to gain an Endurance Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusEnergyShieldPerPowerCharge"] = { + "3% increased Energy Shield per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedEnergyShieldPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6435, + }, + ["tradeHashes"] = { + [2189382346] = { + "3% increased Energy Shield per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusEvasionPerFrenzyCharge"] = { + "8% increased Evasion Rating per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreasedEvasionRatingPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1426, + }, + ["tradeHashes"] = { + [660404777] = { + "8% increased Evasion Rating per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { + "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "FireDamageAddedAsChaosPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 9286, + }, + ["tradeHashes"] = { + [700405539] = { + "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { + "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "FlaskChargeOnCritMaximumFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6787, + }, + ["tradeHashes"] = { + [3371432622] = { + "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusFrenzyChargeDuration"] = { + "(20-40)% increased Frenzy Charge Duration", + ["affix"] = "", + ["group"] = "FrenzyChargeDuration", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1866, + }, + ["tradeHashes"] = { + [3338298622] = { + "(20-40)% increased Frenzy Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusFrenzyChargeOnHit__"] = { + "10% chance to gain a Frenzy Charge on Hit", + ["affix"] = "", + ["group"] = "FrenzyChargeOnHitChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1588, + }, + ["tradeHashes"] = { + [2323242761] = { + "10% chance to gain a Frenzy Charge on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusFrenzyChargeOnKill"] = { + "10% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "10% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { + "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", + ["affix"] = "", + ["group"] = "IntimidateOnHitMaximumEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7381, + }, + ["tradeHashes"] = { + [2877370216] = { + "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { + "You have Iron Reflexes while at maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "IronReflexesMaximumFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 10735, + }, + ["tradeHashes"] = { + [1990354706] = { + "You have Iron Reflexes while at maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { + "Regenerate 0.3% of maximum Life per second per Endurance Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPercentPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1444, + }, + ["tradeHashes"] = { + [989800292] = { + "Regenerate 0.3% of maximum Life per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { + "Regenerate 0.3% of maximum Life per second per Frenzy Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2402, + }, + ["tradeHashes"] = { + [2828673491] = { + "Regenerate 0.3% of maximum Life per second per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { + "Regenerate 0.3% of maximum Life per second per Power Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPercentPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7520, + }, + ["tradeHashes"] = { + [3961213398] = { + "Regenerate 0.3% of maximum Life per second per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { + "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", + ["affix"] = "", + ["group"] = "LightningDamageAddedAsChaosPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "chaos", + }, + ["statOrder"] = { + 9288, + }, + ["tradeHashes"] = { + [2650222338] = { + "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMaximumEnduranceCharges"] = { + "+1 to Maximum Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1559, + }, + ["tradeHashes"] = { + [1515657623] = { + "+1 to Maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMaximumFrenzyCharges"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMaximumPowerCharges"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMindOverMatterPowerCharges"] = { + "You have Mind over Matter while at maximum Power Charges", + ["affix"] = "", + ["group"] = "MindOverMatterMaximumPowerCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 10736, + }, + ["tradeHashes"] = { + [1876857497] = { + "You have Mind over Matter while at maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { + "1% increased Movement Speed per Endurance Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9168, + }, + ["tradeHashes"] = { + [2116250000] = { + "1% increased Movement Speed per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { + "1% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "1% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusMovementVelocityPerPowerCharge"] = { + "1% increased Movement Speed per Power Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9171, + }, + ["tradeHashes"] = { + [3774108776] = { + "1% increased Movement Speed per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { + "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "OnslaughtOnHitMaximumFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6828, + }, + ["tradeHashes"] = { + [2408544213] = { + "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { + "1% additional Physical Damage Reduction per Frenzy Charge", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 9454, + }, + ["tradeHashes"] = { + [1226049915] = { + "1% additional Physical Damage Reduction per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { + "1% additional Physical Damage Reduction per Power Charge", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 9456, + }, + ["tradeHashes"] = { + [3986347319] = { + "1% additional Physical Damage Reduction per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusPowerChargeDuration"] = { + "(20-40)% increased Power Charge Duration", + ["affix"] = "", + ["group"] = "IncreasedPowerChargeDuration", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "(20-40)% increased Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusPowerChargeOnCrit"] = { + "20% chance to gain a Power Charge on Critical Hit", + ["affix"] = "", + ["group"] = "PowerChargeOnCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "critical", + }, + ["statOrder"] = { + 1585, + }, + ["tradeHashes"] = { + [3814876985] = { + "20% chance to gain a Power Charge on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeBonusPowerChargeOnKill"] = { + "10% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "10% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChargeDurationUniqueBodyDexInt3"] = { + "(100-200)% increased Endurance, Frenzy and Power Charge Duration", + ["affix"] = "", + ["group"] = "ChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 2761, + }, + ["tradeHashes"] = { + [2839036860] = { + "(100-200)% increased Endurance, Frenzy and Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnBleed1"] = { + "Used when you start Bleeding", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByBleed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 687, + }, + ["tradeHashes"] = { + [3676540188] = { + "Used when you start Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnChaosDamage1"] = { + "Used when you take Chaos damage from a Hit", + ["affix"] = "", + ["group"] = "FlaskUseOnTakingChaosDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 694, + }, + ["tradeHashes"] = { + [3310778564] = { + "Used when you take Chaos damage from a Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnColdDamage1"] = { + "Used when you take Cold damage from a Hit", + ["affix"] = "", + ["group"] = "FlaskUseOnTakingColdDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 695, + }, + ["tradeHashes"] = { + [2994271459] = { + "Used when you take Cold damage from a Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnCurse1"] = { + "Used when you become Cursed", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByCurse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 685, + }, + ["tradeHashes"] = { + [4146282829] = { + "Used when you become Cursed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnFireDamage1"] = { + "Used when you take Fire damage from a Hit", + ["affix"] = "", + ["group"] = "FlaskUseOnTakingFireDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 697, + }, + ["tradeHashes"] = { + [3854901951] = { + "Used when you take Fire damage from a Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnFreeze1"] = { + "Used when you become Frozen", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByFreeze", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 689, + }, + ["tradeHashes"] = { + [1691862754] = { + "Used when you become Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnIgnite1"] = { + "Used when you become Ignited", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByIgnite", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 690, + }, + ["tradeHashes"] = { + [585126960] = { + "Used when you become Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnLightningDamage1"] = { + "Used when you take Lightning damage from a Hit", + ["affix"] = "", + ["group"] = "FlaskUseOnTakingLightningDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 704, + }, + ["tradeHashes"] = { + [2016937536] = { + "Used when you take Lightning damage from a Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnPoison1"] = { + "Used when you become Poisoned", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByPoison", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 691, + }, + ["tradeHashes"] = { + [1412682799] = { + "Used when you become Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnRareUniqueKill1"] = { + "Used when you kill a Rare or Unique enemy", + ["affix"] = "", + ["group"] = "FlaskUseOnKillingRareUnique", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 703, + }, + ["tradeHashes"] = { + [4010341289] = { + "Used when you kill a Rare or Unique enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnShock1"] = { + "Used when you become Shocked", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByShock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 692, + }, + ["tradeHashes"] = { + [3699444296] = { + "Used when you become Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnSlow1"] = { + "Used when you are affected by a Slow", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedBySlow", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 693, + }, + ["tradeHashes"] = { + [2778646494] = { + "Used when you are affected by a Slow", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CharmImplicitUseOnStun1"] = { + "Used when you become Stunned", + ["affix"] = "", + ["group"] = "FlaskUseOnAffectedByStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 706, + }, + ["tradeHashes"] = { + [1810482573] = { + "Used when you become Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { + "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", + ["affix"] = "", + ["group"] = "ChillAndFreezeDurationBasedOnEnergyShield", + ["level"] = 70, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2372, + }, + ["tradeHashes"] = { + [1194648995] = { + "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChillAndShockEffectOnYouJewel"] = { + "15% reduced effect of Chill and Shock on you", + ["affix"] = "of Insulation", + ["group"] = "ChillAndShockEffectOnYouJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9857, + }, + ["tradeHashes"] = { + [1984113628] = { + "15% reduced effect of Chill and Shock on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ChillEffectOnYouJewel"] = { + "(30-35)% reduced Effect of Chill on you", + ["affix"] = "of the Snowbreather", + ["group"] = "ChillEffectivenessOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1495, + }, + ["tradeHashes"] = { + [1478653032] = { + "(30-35)% reduced Effect of Chill on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ChillEnemiesWhenHitUnique__1"] = { + "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", + ["affix"] = "", + ["group"] = "ChillEnemiesWhenHit", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2867, + }, + ["tradeHashes"] = { + [2459809121] = { + "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChillHitsCauseShatteringUnique__1"] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["affix"] = "", + ["group"] = "ChillHitsCauseShattering", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5657, + }, + ["tradeHashes"] = { + [3119292058] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ChillOnAttackStunUniqueOneHandMace5"] = { + "All Attack Damage Chills when you Stun", + ["affix"] = "", + ["group"] = "ChillOnAttackStun", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + "ailment", + }, + ["statOrder"] = { + 2747, + }, + ["tradeHashes"] = { + [2437193018] = { + "All Attack Damage Chills when you Stun", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Claws", + ["affix"] = "Ripping", + ["group"] = "ClawAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1321, + }, + ["tradeHashes"] = { + [1421645223] = { + "(6-8)% increased Attack Speed with Claws", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "claw", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 1, + }, + }, + ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { + "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", + ["affix"] = "", + ["group"] = "ClawAttackSpeedModsAlsoAffectUnarmed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 3257, + }, + ["tradeHashes"] = { + [2988055461] = { + "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawCritModsAlsoAffectUnarmed__1"] = { + "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", + ["affix"] = "", + ["group"] = "ClawCritModsAlsoAffectUnarmed", + ["level"] = 35, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3258, + }, + ["tradeHashes"] = { + [531932482] = { + "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawDamageJewel"] = { + "(14-16)% increased Damage with Claws", + ["affix"] = "Savage", + ["group"] = "IncreasedClawDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1241, + }, + ["tradeHashes"] = { + [1069260037] = { + "(14-16)% increased Damage with Claws", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "claw", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 1, + }, + }, + ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { + "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", + ["affix"] = "", + ["group"] = "ClawDamageModsAlsoAffectUnarmed", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3256, + }, + ["tradeHashes"] = { + [2865232420] = { + "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawImplicitLifeGainPerTargetLocal1"] = { + "Grants 8 Life per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeGainPerTargetLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1041, + }, + ["tradeHashes"] = { + [821021828] = { + "Grants 8 Life per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawImplicitLocalChanceToBlind1"] = { + "(15-25)% chance to Blind Enemies on hit", + ["affix"] = "", + ["group"] = "BlindingHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2013, + }, + ["tradeHashes"] = { + [2301191210] = { + "(15-25)% chance to Blind Enemies on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawImplicitLocalChanceToPoison1"] = { + "(15-25)% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "(15-25)% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawImplicitManaGainPerTargetLocal1"] = { + "Grants 8 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "ManaGainPerTargetLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 8 Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { + "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", + ["affix"] = "", + ["group"] = "ClawPhysDamageAndEvasionPerDex", + ["level"] = 1, + ["modTags"] = { + "defences", + "physical_damage", + "evasion", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2850, + 2851, + 2866, + }, + ["tradeHashes"] = { + [1619923327] = { + "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", + }, + [4113852051] = { + "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", + }, + [915233352] = { + "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { + "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", + ["affix"] = "", + ["group"] = "ColdAndPhysicalNodesInRadiusSwapProperties", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 2853, + 2854, + }, + ["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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdCritChanceJewel"] = { + "(14-18)% increased Critical Hit Chance with Cold Skills", + ["affix"] = "Avalanching", + ["group"] = "ColdCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "critical", + }, + ["statOrder"] = { + 1379, + }, + ["tradeHashes"] = { + [3337344042] = { + "(14-18)% increased Critical Hit Chance with Cold Skills", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ColdCritMultiplier"] = { + "+(15-18)% to Critical Damage Bonus with Cold Skills", + ["affix"] = "Arctic", + ["group"] = "ColdCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "critical", + }, + ["statOrder"] = { + 1401, + }, + ["tradeHashes"] = { + [915908446] = { + "+(15-18)% to Critical Damage Bonus with Cold Skills", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ColdDamageCanPoisonUnique__1_"] = { + "Cold Damage from Hits also Contributes to Poison Magnitude", + ["affix"] = "", + ["group"] = "ColdDamageCanPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2618, + }, + ["tradeHashes"] = { + [1917124426] = { + "Cold Damage from Hits also Contributes to Poison Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdDamageIgnitesUnique__1"] = { + "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["affix"] = "", + ["group"] = "ColdDamageAlsoIgnites", + ["level"] = 30, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2624, + }, + ["tradeHashes"] = { + [1888494262] = { + "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdDamageJewel"] = { + "(14-16)% increased Cold Damage", + ["affix"] = "Chilling", + ["group"] = "ColdDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(14-16)% increased Cold Damage", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ColdDamagePerResistanceAbove75Unique__1"] = { + "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", + ["affix"] = "", + ["group"] = "ColdDamagePerResistanceAbove75", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 5678, + }, + ["tradeHashes"] = { + [2517031897] = { + "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdGemCastSpeedJewel"] = { + "(3-5)% increased Cast Speed with Cold Skills", + ["affix"] = "Cryomantic", + ["group"] = "ColdGemCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "elemental", + "cold", + "caster", + "speed", + }, + ["statOrder"] = { + 1281, + }, + ["tradeHashes"] = { + [928238845] = { + "(3-5)% increased Cast Speed with Cold Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["ColdLightningResistanceJewel"] = { + "+(10-12)% to Cold and Lightning Resistances", + ["affix"] = "of Shelter", + ["group"] = "ColdLightningResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "lightning_resistance", + "elemental", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1021, + }, + ["tradeHashes"] = { + [4277795662] = { + "+(10-12)% to Cold and Lightning Resistances", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { + "Damage Penetrates 20% Cold Resistance against Chilled Enemies", + ["affix"] = "", + ["group"] = "ColdPenetrationAgainstChilledEnemies", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 5698, + }, + ["tradeHashes"] = { + [1477032229] = { + "Damage Penetrates 20% Cold Resistance against Chilled Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { + "Passives granting Cold Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain a Frenzy Charge on Kill", + ["affix"] = "", + ["group"] = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 7857, + 7857.1, + }, + ["tradeHashes"] = { + [509677462] = { + "Passives granting Cold Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain a Frenzy Charge on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdResistanceJewel"] = { + "+(12-15)% to Cold Resistance", + ["affix"] = "of the Beast", + ["group"] = "ColdResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(12-15)% to Cold Resistance", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { + "+(75-100)% to Cold Resistance when Socketed with a Green Gem", + ["affix"] = "", + ["group"] = "ColdResistanceWhenSocketedWithGreenGem", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + "gem", + }, + ["statOrder"] = { + 1488, + }, + ["tradeHashes"] = { + [1064331314] = { + "+(75-100)% to Cold Resistance when Socketed with a Green Gem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdSkillsChanceToPoisonUnique__1"] = { + "Cold Skills have 20% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "ColdSkillsChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 5706, + }, + ["tradeHashes"] = { + [2373079502] = { + "Cold Skills have 20% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ColdWeaponDamageUniqueOneHandMace4"] = { + "(30-40)% increased Cold Damage with Attack Skills", + ["affix"] = "", + ["group"] = "ColdWeaponDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 5692, + }, + ["tradeHashes"] = { + [860668586] = { + "(30-40)% increased Cold Damage with Attack Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConductivityReservationCostUnique__1"] = { + "Conductivity has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "ConductivityNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5743, + }, + ["tradeHashes"] = { + [1233358566] = { + "Conductivity has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["Conduit"] = { + "Conduit", + ["affix"] = "", + ["group"] = "Conduit", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 10690, + }, + ["tradeHashes"] = { + [1994392904] = { + "Conduit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { + "Creates Consecrated Ground on Critical Hit", + ["affix"] = "", + ["group"] = "ConsecrateOnCritChanceToCreate", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2413, + }, + ["tradeHashes"] = { + [3195625581] = { + "Creates Consecrated Ground on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { + "100% chance to create Consecrated Ground when you Block", + ["affix"] = "", + ["group"] = "ConsecratedGroundOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2355, + }, + ["tradeHashes"] = { + [573884683] = { + "100% chance to create Consecrated Ground when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ControlledDestructionSupportUnique__1"] = { + "Socketed Gems are Supported by Level 10 Controlled Destruction", + ["affix"] = "", + ["group"] = "ControlledDestructionSupportLevel10Boolean", + ["level"] = 45, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 287, + }, + ["tradeHashes"] = { + [3425526049] = { + "Socketed Gems are Supported by Level 10 Controlled Destruction", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ControlledDestructionSupportUnique__1New_"] = { + "Socketed Gems are Supported by Level 10 Controlled Destruction", + ["affix"] = "", + ["group"] = "ControlledDestructionSupport", + ["level"] = 45, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 387, + }, + ["tradeHashes"] = { + [3718597497] = { + "Socketed Gems are Supported by Level 10 Controlled Destruction", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertColdToFireUniqueRing15"] = { + "40% of Cold Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertColdToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + }, + ["statOrder"] = { + 1715, + }, + ["tradeHashes"] = { + [268659529] = { + "40% of Cold Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertFireToChaosUniqueBodyInt4Updated"] = { + "15% of Fire Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ConvertFireToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 1718, + }, + ["tradeHashes"] = { + [147385515] = { + "15% of Fire Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertFireToChaosUniqueDagger10Updated"] = { + "30% of Fire Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ConvertFireToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 1718, + }, + ["tradeHashes"] = { + [147385515] = { + "30% of Fire Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertLightningDamageToChaosUniqueBow10"] = { + "100% of Lightning Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ConvertLightningDamageToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "chaos", + }, + ["statOrder"] = { + 1714, + }, + ["tradeHashes"] = { + [2109189637] = { + "100% of Lightning Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { + "100% of Lightning Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ConvertLightningDamageToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "chaos", + }, + ["statOrder"] = { + 1714, + }, + ["tradeHashes"] = { + [2109189637] = { + "100% of Lightning Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertLightningToColdUniqueRing34"] = { + "40% of Lightning Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertLightningToCold", + ["level"] = 25, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "lightning", + }, + ["statOrder"] = { + 1713, + }, + ["tradeHashes"] = { + [3627052716] = { + "40% of Lightning Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUniqueGlovesDex1"] = { + "100% of Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1705, + }, + ["tradeHashes"] = { + [1576601839] = { + "100% of Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { + "25% of Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1705, + }, + ["tradeHashes"] = { + [1576601839] = { + "25% of Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUniqueQuiver5"] = { + "Gain 20% of Physical Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "PhysicalAddedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1675, + }, + ["tradeHashes"] = { + [758893621] = { + "Gain 20% of Physical Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUnique__1"] = { + "25% of Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1705, + }, + ["tradeHashes"] = { + [1576601839] = { + "25% of Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUnique__2"] = { + "50% of Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1705, + }, + ["tradeHashes"] = { + [1576601839] = { + "50% of Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToColdUnique__3"] = { + "(0-50)% of Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1705, + }, + ["tradeHashes"] = { + [1576601839] = { + "(0-50)% of Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUniqueOneHandSword4"] = { + "100% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "100% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUniqueQuiver1_"] = { + "50% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "50% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUniqueShieldStr3"] = { + "25% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "25% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUnique__1"] = { + "50% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "50% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUnique__2_"] = { + "30% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "30% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToFireUnique__3__"] = { + "(0-50)% of Physical Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1702, + }, + ["tradeHashes"] = { + [178327868] = { + "(0-50)% of Physical Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { + "25% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "25% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicaltoLightningUnique__1"] = { + "50% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "50% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicaltoLightningUnique__2"] = { + "30% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "30% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicaltoLightningUnique__3"] = { + "50% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "50% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicaltoLightningUnique__4"] = { + "50% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "50% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ConvertPhysicaltoLightningUnique__5"] = { + "(0-50)% of Physical Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ConvertPhysicalToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1707, + }, + ["tradeHashes"] = { + [4121092210] = { + "(0-50)% of Physical Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { + "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", + ["affix"] = "", + ["group"] = "CorruptThresholdSoulEaterOnVaalSkillUse", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 2840, + }, + ["tradeHashes"] = { + [1677654268] = { + "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptedMagicJewelModEffectUnique__1"] = { + "(0-150)% increased Effect of Jewel Socket Passive Skills", + "containing Corrupted Magic Jewels", + ["affix"] = "", + ["group"] = "CorruptedMagicJewelModEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7905, + 7905.1, + }, + ["tradeHashes"] = { + [461663422] = { + "(0-150)% increased Effect of Jewel Socket Passive Skills", + "containing Corrupted Magic Jewels", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeAdditionalAmmo1"] = { + "Loads 2 additional bolts", + ["affix"] = "", + ["group"] = "AdditionalAmmo", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads 2 additional bolts", + }, + }, + ["weightKey"] = { + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAdditionalArrows1"] = { + "Bow Attacks fire 2 additional Arrows", + ["affix"] = "", + ["group"] = "AdditionalArrows", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 990, + }, + ["tradeHashes"] = { + [3885405204] = { + "Bow Attacks fire 2 additional Arrows", + }, + }, + ["weightKey"] = { + "bow", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAdditionalChainChance"] = { + "Projectiles have (20-40)% additional chance to Chain", + ["affix"] = "", + ["group"] = "AdditionalChainChance", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4643, + }, + ["tradeHashes"] = { + [3919642001] = { + "Projectiles have (20-40)% additional chance to Chain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeAdditionalFissureChance"] = { + "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", + ["affix"] = "", + ["group"] = "AdditionalFissureChance", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 9894, + }, + ["tradeHashes"] = { + [2544540062] = { + "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { + "(6-9)% additional Physical Damage Reduction", + ["affix"] = "", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "(6-9)% additional Physical Damage Reduction", + }, + }, + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAllDamage1"] = { + "(40-60)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(40-60)% increased Damage", + }, + }, + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeAllResistances1"] = { + "+(15-35)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "upgraded_corruption_mod", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(15-35)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { + "Allies in your Presence deal (50-75)% increased Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal (50-75)% increased Damage", + }, + }, + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { + "Allies in your Presence have (30-45)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (30-45)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { + "Allies in your Presence have (15-25)% increased Attack Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (15-25)% increased Attack Speed", + }, + }, + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { + "Allies in your Presence have (15-25)% increased Cast Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "upgraded_corruption_mod", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (15-25)% increased Cast Speed", + }, + }, + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { + "+(30-50)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(30-50)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeArmourBreak1"] = { + "Break (25-40)% increased Armour", + ["affix"] = "", + ["group"] = "ArmourBreak", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4407, + }, + ["tradeHashes"] = { + [1776411443] = { + "Break (25-40)% increased Armour", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeBleedDotMultiplier"] = { + "(40-60)% increased Magnitude of Bleeding you inflict", + ["affix"] = "", + ["group"] = "BleedDotMultiplier", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "upgraded_corruption_mod", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(40-60)% increased Magnitude of Bleeding you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeBlindEffect"] = { + "(30-50)% increased Blind Effect", + ["affix"] = "", + ["group"] = "BlindEffect", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4928, + }, + ["tradeHashes"] = { + [1585769763] = { + "(30-50)% increased Blind Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeChainFromTerrain1"] = { + "Projectiles have (25-40)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (25-40)% chance to Chain an additional time from terrain", + }, + }, + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeChanceForNoBolt"] = { + "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", + ["affix"] = "", + ["group"] = "ChanceForNoBolt", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 5903, + }, + ["tradeHashes"] = { + [4273162558] = { + "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeChanceToPierce1"] = { + "(50-75)% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(50-75)% chance to Pierce an Enemy", + }, + }, + ["weightKey"] = { + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeChaosResistance1"] = { + "+(31-47)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "upgraded_corruption_mod", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(31-47)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + "body_armour", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeCharmChargeGeneration1"] = { + "Charms gain (0.33-0.58) charges per Second", + ["affix"] = "", + ["group"] = "CharmChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "charm", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain (0.33-0.58) charges per Second", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeCharmChargesGained"] = { + "(15-30)% increased Charm Charges gained", + ["affix"] = "", + ["group"] = "CharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(15-30)% increased Charm Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeCharmIncreasedDuration"] = { + "(15-30)% increased Duration", + ["affix"] = "", + ["group"] = "CharmIncreasedDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(15-30)% increased Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeColdExposureOnHit"] = { + "(25-50)% chance to inflict Exposure on Hit", + ["affix"] = "", + ["group"] = "ColdExposureOnHit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4704, + }, + ["tradeHashes"] = { + [2630708439] = { + "(25-50)% chance to inflict Exposure on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeColdPenetration1"] = { + "Damage Penetrates (25-40)% Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (25-40)% Cold Resistance", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeColdResistance1"] = { + "+(50-75)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "upgraded_corruption_mod", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(50-75)% to Cold Resistance", + }, + }, + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { + "(30-50)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(30-50)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { + "(10-20)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(10-20)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeDamageTakenGainedAsLife"] = { + "(10-20)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-20)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { + "(25-35)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(25-35)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { + "(25-35)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(25-35)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + "body_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { + "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "", + ["group"] = "DamageTakenGoesToLifeManaESPercent", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeDeflectDamageTaken"] = { + "Prevent +(2-3)% of Damage from Deflected Hits", + ["affix"] = "", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +(2-3)% of Damage from Deflected Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { + "(5-10)% of Damage taken from Deflected Hits Recouped as Life", + ["affix"] = "", + ["group"] = "DeflectDamageTakenRecoupedAsLife", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6116, + }, + ["tradeHashes"] = { + [3471443885] = { + "(5-10)% of Damage taken from Deflected Hits Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeDexterity1"] = { + "+(35-50) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(35-50) to Dexterity", + }, + }, + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeEnergyShieldDelay1"] = { + "(35-50)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(35-50)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + "focus", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["CorruptionUpgradeEvasionAppliesToDeflection"] = { + "Gain Deflection Rating equal to (30-50)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (30-50)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeFirePenetration1"] = { + "Damage Penetrates (25-40)% Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (25-40)% Fire Resistance", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeFireResistance1"] = { + "+(50-75)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "upgraded_corruption_mod", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(50-75)% to Fire Resistance", + }, + }, + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeFlaskManaRecovery"] = { + "(15-30)% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "FlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "(15-30)% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeFreezeDamageIncrease1"] = { + "(50-75)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(50-75)% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeFreezeDuration"] = { + "(20-30)% increased Freeze Duration on Enemies", + ["affix"] = "", + ["group"] = "FreezeDuration", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "(20-30)% increased Freeze Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGainLifeOnBlock1"] = { + "(40-55) Life gained when you Block", + ["affix"] = "", + ["group"] = "GainLifeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(40-55) Life gained when you Block", + }, + }, + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeGainManaOnBlock1"] = { + "(20-30) Mana gained when you Block", + ["affix"] = "", + ["group"] = "GainManaOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(20-30) Mana gained when you Block", + }, + }, + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { + "(30-50)% Global chance to Blind Enemies on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBlindOnHit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 2703, + }, + ["tradeHashes"] = { + [2221570601] = { + "(30-50)% Global chance to Blind Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { + "+2 to Level of all Chaos Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseChaosSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "chaos", + "caster", + "gem", + }, + ["statOrder"] = { + 965, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [4226189338] = { + "+2 to Level of all Chaos Spell Skills", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { + "+2 to Level of all Cold Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+2 to Level of all Cold Spell Skills", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalDeflectionRating"] = { + "(20-30)% increased Deflection Rating", + ["affix"] = "", + ["group"] = "GlobalDeflectionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "evasion", + }, + ["statOrder"] = { + 6119, + }, + ["tradeHashes"] = { + [3040571529] = { + "(20-30)% increased Deflection Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalElementalGemLevel"] = { + "+(1-2) to Level of all Elemental Skills", + ["affix"] = "", + ["group"] = "GlobalElementalGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "gem", + }, + ["statOrder"] = { + 957, + }, + ["tradeHashes"] = { + [2901213448] = { + "+(1-2) to Level of all Elemental Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { + "+2 to Level of all Fire Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+2 to Level of all Fire Spell Skills", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { + "(15-30)% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "GlobalFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(15-30)% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { + "+(2-3) to Level of all Cold Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+(2-3) to Level of all Cold Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { + "+(2-3) to Level of all Fire Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseFireSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "fire", + "caster", + "gem", + }, + ["statOrder"] = { + 959, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [591105508] = { + "+(2-3) to Level of all Fire Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { + "+(2-3) to Level of all Lightning Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+(2-3) to Level of all Lightning Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { + "+(2-3) to Level of all Physical Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+(2-3) to Level of all Physical Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { + "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { + "+2 to Level of all Lightning Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseLightningSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "lightning", + "caster", + "gem", + }, + ["statOrder"] = { + 963, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [1545858329] = { + "+2 to Level of all Lightning Spell Skills", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalMaimOnHit"] = { + "Attacks have (30-50)% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "GlobalMaimOnHit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 7956, + }, + ["tradeHashes"] = { + [1510714129] = { + "Attacks have (30-50)% chance to Maim on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { + "+2 to Level of all Melee Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+2 to Level of all Melee Skills", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { + "+2 to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+2 to Level of all Minion Skills", + }, + }, + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { + "+2 to Level of all Physical Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreasePhysicalSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "caster", + "gem", + }, + ["statOrder"] = { + 1476, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1600707273] = { + "+2 to Level of all Physical Spell Skills", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalSkillGemLevel1"] = { + "+2 to Level of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "gem", + }, + ["statOrder"] = { + 949, + }, + ["tradeHashes"] = { + [4283407333] = { + "+2 to Level of all Skills", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeGlobalSkillGemQuality"] = { + "+10% to Quality of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+10% to Quality of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeGoldFoundIncrease1"] = { + "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeHeraldReservationEfficiency"] = { + "(20-30)% increased Reservation Efficiency of Herald Skills", + ["affix"] = "", + ["group"] = "HeraldReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 9765, + }, + ["tradeHashes"] = { + [1697191405] = { + "(20-30)% increased Reservation Efficiency of Herald Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeIgniteChanceIncrease1"] = { + "(45-65)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(45-65)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIgniteEffect"] = { + "(20-30)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(20-30)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeIncreasedAccuracy1"] = { + "+(150-300) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(150-300) to Accuracy Rating", + }, + }, + ["weightKey"] = { + "helmet", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedCastSpeed1"] = { + "(20-35)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "upgraded_corruption_mod", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(20-35)% increased Cast Speed", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { + "(40-60)% increased maximum Energy Shield", + ["affix"] = "", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(40-60)% increased maximum Energy Shield", + }, + }, + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { + "(50-75)% increased Freeze Threshold", + ["affix"] = "", + ["group"] = "FreezeThreshold", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2984, + }, + ["tradeHashes"] = { + [3780644166] = { + "(50-75)% increased Freeze Threshold", + }, + }, + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedLife1"] = { + "+(120-160) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(120-160) to maximum Life", + }, + }, + ["weightKey"] = { + "body_armour", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedMana1"] = { + "+(80-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-100) to maximum Mana", + }, + }, + ["weightKey"] = { + "focus", + "quiver", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(40-60)% increased Armour", + ["affix"] = "", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(40-60)% increased Armour", + }, + }, + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedSkillSpeed1"] = { + "(8-16)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(8-16)% increased Skill Speed", + }, + }, + ["weightKey"] = { + "ring", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedSpirit1"] = { + "+(40-50) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(40-50) to Spirit", + }, + }, + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIncreasedStunThreshold1"] = { + "(50-75)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(50-75)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeIntelligence1"] = { + "+(35-50) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(35-50) to Intelligence", + }, + }, + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeItemFoundRarityIncrease1"] = { + "(25-35)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(25-35)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeJewelChaosResist1"] = { + "+(10-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "upgraded_corruption_mod", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(10-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelColdResist1"] = { + "+(15-20)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "upgraded_corruption_mod", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(15-20)% to Cold Resistance", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelDexterity1"] = { + "+(14-16) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(14-16) to Dexterity", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelFireResist1"] = { + "+(15-20)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "upgraded_corruption_mod", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-20)% to Fire Resistance", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelIntelligence1"] = { + "+(14-16) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(14-16) to Intelligence", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelLightningResist1"] = { + "+(15-20)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "upgraded_corruption_mod", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(15-20)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeJewelStrength1"] = { + "+(14-16) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(14-16) to Strength", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 1, + }, + }, + ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { + "Life Flasks gain (0.33-0.58) charges per Second", + ["affix"] = "", + ["group"] = "LifeFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain (0.33-0.58) charges per Second", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { + "Gain (40-55) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (40-55) Life per enemy killed", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLifeLeech1"] = { + "Leech 9% of Physical Attack Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech 9% of Physical Attack Damage as Life", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLifeRecoveryRate"] = { + "(10-20)% increased Life Recovery rate", + ["affix"] = "", + ["group"] = "LifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1445, + }, + ["tradeHashes"] = { + [3240073117] = { + "(10-20)% increased Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeLifeRegenerationRate1"] = { + "(35-50)% increased Life Regeneration rate", + ["affix"] = "", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "(35-50)% increased Life Regeneration rate", + }, + }, + ["weightKey"] = { + "helmet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLightningPenetration1"] = { + "Damage Penetrates (25-40)% Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (25-40)% Lightning Resistance", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLightningResistance1"] = { + "+(50-75)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "upgraded_corruption_mod", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(50-75)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + "boots", + "belt", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedChaosDamage1"] = { + "Adds (27-31) to (42-48) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "upgraded_corruption_mod", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (27-31) to (42-48) Chaos damage", + }, + }, + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { + "Adds (40-46) to (67-75) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "upgraded_corruption_mod", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (40-46) to (67-75) Chaos damage", + }, + }, + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedColdDamage1"] = { + "Adds (28-42) to (53-69) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (28-42) to (53-69) Cold Damage", + }, + }, + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { + "Adds (51-57) to (88-96) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (51-57) to (88-96) Cold Damage", + }, + }, + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedFireDamage1"] = { + "Adds (30-44) to (55-72) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (30-44) to (55-72) Fire Damage", + }, + }, + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { + "Adds (73-80) to (91-101) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (73-80) to (91-101) Fire Damage", + }, + }, + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedLightningDamage1"] = { + "Adds (1-2) to (79-103) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-2) to (79-103) Lightning Damage", + }, + }, + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { + "Adds (1-3) to (131-141) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-3) to (131-141) Lightning Damage", + }, + }, + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalBlockChance1"] = { + "(20-30)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(20-30)% increased Block chance", + }, + }, + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalChanceToBleed1"] = { + "(25-50)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "upgraded_corruption_mod", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(25-50)% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalChanceToBlind1"] = { + "(25-50)% chance to Blind Enemies on hit", + ["affix"] = "", + ["group"] = "BlindingHit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 2013, + }, + ["tradeHashes"] = { + [2301191210] = { + "(25-50)% chance to Blind Enemies on hit", + }, + }, + ["weightKey"] = { + "bow", + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalChanceToMaim1"] = { + "(25-50)% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToMaim", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 7798, + }, + ["tradeHashes"] = { + [2763429652] = { + "(25-50)% chance to Maim on Hit", + }, + }, + ["weightKey"] = { + "bow", + "crossbow", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalChanceToPoison1"] = { + "(25-50)% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "upgraded_corruption_mod", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "(25-50)% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + "sword", + "spear", + "dagger", + "warstaff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { + "+(15-25)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(15-25)% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { + "(40-60)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(40-60)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + "str_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { + "(40-60)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(40-60)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + "str_dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { + "(12-16)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(12-16)% increased Attack Speed", + }, + }, + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { + "(40-60)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(40-60)% increased Energy Shield", + }, + }, + ["weightKey"] = { + "int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { + "(40-60)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(40-60)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + "dex_int_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + "dex_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { + "(40-60)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "upgraded_corruption_mod", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(40-60)% increased Physical Damage", + }, + }, + ["weightKey"] = { + "weapon", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(40-60)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "upgraded_corruption_mod", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(40-60)% increased Armour", + }, + }, + ["weightKey"] = { + "str_armour", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { + "(35-45)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(35-45)% increased Spirit", + }, + }, + ["weightKey"] = { + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalRageOnHit1"] = { + "Grants (4-6) Rage on Hit", + ["affix"] = "", + ["group"] = "LocalRageOnHit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 7705, + }, + ["tradeHashes"] = { + [1725749947] = { + "Grants (4-6) Rage on Hit", + }, + }, + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalStunDamageIncrease1"] = { + "Causes (50-75)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (50-75)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { + "(20-40)% increased Melee Strike Range with this weapon", + ["affix"] = "", + ["group"] = "LocalWeaponRangeIncrease", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 7600, + }, + ["tradeHashes"] = { + [548198834] = { + "(20-40)% increased Melee Strike Range with this weapon", + }, + }, + ["weightKey"] = { + "mace", + "sword", + "axe", + "flail", + "warstaff", + "dagger", + "spear", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { + "Mana Flasks gain (0.33-0.58) charges per Second", + ["affix"] = "", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain (0.33-0.58) charges per Second", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { + "Gain (20-30) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (20-30) Mana per enemy killed", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "quiver", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeManaLeech1"] = { + "Leech 6% of Physical Attack Damage as Mana", + ["affix"] = "", + ["group"] = "ManaLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech 6% of Physical Attack Damage as Mana", + }, + }, + ["weightKey"] = { + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeManaRecoveryRate"] = { + "(10-20)% increased Mana Recovery rate", + ["affix"] = "", + ["group"] = "ManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 1450, + }, + ["tradeHashes"] = { + [3513180117] = { + "(10-20)% increased Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeManaRegeneration1"] = { + "(35-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(35-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + "helmet", + "ring", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumBlockChance1"] = { + "+(4-5)% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "+(4-5)% to maximum Block chance", + }, + }, + ["weightKey"] = { + "shield", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumChaosResistance"] = { + "+(1-3)% to Maximum Chaos Resistance", + ["affix"] = "", + ["group"] = "MaximumChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "upgraded_corruption_mod", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+(1-3)% to Maximum Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMaximumColdResistance1"] = { + "+(4-5)% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "upgraded_corruption_mod", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(4-5)% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumElementalResistance1"] = { + "+2% to all Maximum Elemental Resistances", + ["affix"] = "", + ["group"] = "MaximumElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "upgraded_corruption_mod", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+2% to all Maximum Elemental Resistances", + }, + }, + ["weightKey"] = { + "body_armour", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumEnduranceCharges1"] = { + "+2 to Maximum Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1559, + }, + ["tradeHashes"] = { + [1515657623] = { + "+2 to Maximum Endurance Charges", + }, + }, + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumFireResistance1"] = { + "+(4-5)% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "upgraded_corruption_mod", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+(4-5)% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + "belt", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumFrenzyCharges1"] = { + "+2 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+2 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + "gloves", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { + "(5-10)% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "upgraded_corruption_mod", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "(5-10)% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMaximumLightningResistance1"] = { + "+(4-5)% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "upgraded_corruption_mod", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(4-5)% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumPowerCharges1"] = { + "+2 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+2 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + "helmet", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeMaximumRage"] = { + "+(5-10) to Maximum Rage", + ["affix"] = "", + ["group"] = "MaximumRage", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(5-10) to Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMeleeSplash"] = { + "Strikes deal Splash Damage", + ["affix"] = "", + ["group"] = "MeleeSplash", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attack", + }, + ["statOrder"] = { + 1137, + }, + ["tradeHashes"] = { + [3675300253] = { + "Strikes deal Splash Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMetaReservationEfficiency"] = { + "Meta Skills have (20-30)% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "MetaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 9766, + }, + ["tradeHashes"] = { + [1672384027] = { + "Meta Skills have (20-30)% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMinionDuration"] = { + "(20-40)% increased Minion Duration", + ["affix"] = "", + ["group"] = "MinionDuration", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "minion", + }, + ["statOrder"] = { + 4728, + }, + ["tradeHashes"] = { + [999511066] = { + "(20-40)% increased Minion Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMinionReservationEfficiency"] = { + "(20-30)% increased Reservation Efficiency of Minion Skills", + ["affix"] = "", + ["group"] = "MinionReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 9767, + }, + ["tradeHashes"] = { + [1805633363] = { + "(20-30)% increased Reservation Efficiency of Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeMovementVelocity1"] = { + "(10-15)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(10-15)% increased Movement Speed", + }, + }, + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { + "Gain (20-35)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "upgraded_corruption_mod", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (20-35)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { + "Gain (20-35)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (20-35)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { + "Gain (20-35)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (20-35)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { + "Gain (20-35)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (20-35)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { + "Gain (20-35)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "upgraded_corruption_mod", + "damage", + "physical", + }, + ["statOrder"] = { + 1671, + }, + ["tradeHashes"] = { + [4019237939] = { + "Gain (20-35)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { + "+(1-2) to Level of all Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+(1-2) to Level of all Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentDamageGoesToMana"] = { + "(10-20)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "upgraded_corruption_mod", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(10-20)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentOfLeechIsInstant"] = { + "(10-20)% of Leech is Instant", + ["affix"] = "", + ["group"] = "PercentOfLeechIsInstant", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 7425, + }, + ["tradeHashes"] = { + [3561837752] = { + "(10-20)% of Leech is Instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentageAllAttributes"] = { + "(5-10)% increased Attributes", + ["affix"] = "", + ["group"] = "PercentageAllAttributes", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 998, + }, + ["tradeHashes"] = { + [3143208761] = { + "(5-10)% increased Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentageAllAttributesCopy"] = { + "(3-6)% increased Attributes", + ["affix"] = "", + ["group"] = "PercentageAllAttributes", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 998, + }, + ["tradeHashes"] = { + [3143208761] = { + "(3-6)% increased Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentageDexterity"] = { + "(5-10)% increased Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(5-10)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentageIntelligence"] = { + "(5-10)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(5-10)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePercentageStrength"] = { + "(5-10)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(5-10)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { + "(20-30)% reduced Physical Damage taken over time", + ["affix"] = "", + ["group"] = "PhysicalDamageOverTimeTaken", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + }, + ["statOrder"] = { + 4736, + }, + ["tradeHashes"] = { + [511024200] = { + "(20-30)% reduced Physical Damage taken over time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { + "(3-6)% of Physical Damage from Hits taken as Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsChaos", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "chaos", + }, + ["statOrder"] = { + 2212, + }, + ["tradeHashes"] = { + [4129825612] = { + "(3-6)% of Physical Damage from Hits taken as Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { + "(3-6)% of Physical Damage from Hits taken as Cold Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsCold", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 2206, + }, + ["tradeHashes"] = { + [1871056256] = { + "(3-6)% of Physical Damage from Hits taken as Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { + "(3-6)% of Physical Damage from Hits taken as Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsFirePercent", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2197, + }, + ["tradeHashes"] = { + [3342989455] = { + "(3-6)% of Physical Damage from Hits taken as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { + "(3-6)% of Physical damage from Hits taken as Lightning damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsLightningPercent", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2201, + }, + ["tradeHashes"] = { + [425242359] = { + "(3-6)% of Physical damage from Hits taken as Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { + "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsRandomElement", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "physical", + "elemental", + }, + ["statOrder"] = { + 2211, + }, + ["tradeHashes"] = { + [1904530666] = { + "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePoisonEffect"] = { + "(40-60)% increased Magnitude of Poison you inflict", + ["affix"] = "", + ["group"] = "PoisonEffect", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(40-60)% increased Magnitude of Poison you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradePresenceRadius"] = { + "(30-60)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(30-60)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeProjectileSpeed"] = { + "(20-40)% increased Projectile Speed", + ["affix"] = "", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(20-40)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeReducedChillDurationOnSelf"] = { + "(20-30)% reduced Chill Duration on you", + ["affix"] = "", + ["group"] = "ReducedChillDurationOnSelf", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(20-30)% reduced Chill Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { + "(20-30)% reduced Magnitude of Ignite on you", + ["affix"] = "", + ["group"] = "ReducedIgniteEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 7261, + }, + ["tradeHashes"] = { + [1269971728] = { + "(20-30)% reduced Magnitude of Ignite on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { + "(30-50)% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "(30-50)% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + "armour", + "weapon", + "wand", + "staff", + "sceptre", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeReducedShockEffectOnSelf"] = { + "(20-30)% reduced effect of Shock on you", + ["affix"] = "", + ["group"] = "ReducedShockEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9859, + }, + ["tradeHashes"] = { + [3801067695] = { + "(20-30)% reduced effect of Shock on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeShockChanceIncrease1"] = { + "(25-50)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(25-50)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeShockEffect"] = { + "(20-30)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(20-30)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeSlowPotency"] = { + "(10-20)% increased Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(10-20)% increased Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeSlowPotency1"] = { + "(40-50)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(40-50)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + "boots", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { + "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { + "(50-75)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "upgraded_corruption_mod", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(50-75)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + "wand", + "staff", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { + "(60-90)% increased Critical Spell Damage Bonus", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "upgraded_corruption_mod", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(60-90)% increased Critical Spell Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { + "(120-180)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "upgraded_corruption_mod", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(120-180)% increased Spell Damage", + }, + }, + ["weightKey"] = { + "staff", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["CorruptionUpgradeSpellDamageOnWeapon1"] = { + "(60-90)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "upgraded_corruption_mod", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(60-90)% increased Spell Damage", + }, + }, + ["weightKey"] = { + "wand", + "focus", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeSpellsHinderOnHitChance"] = { + "(30-50)% chance to Hinder Enemies on Hit with Spells", + ["affix"] = "", + ["group"] = "SpellsHinderOnHitChance", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "caster", + }, + ["statOrder"] = { + 10035, + }, + ["tradeHashes"] = { + [3002506763] = { + "(30-50)% chance to Hinder Enemies on Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeStrength1"] = { + "+(35-50) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(35-50) to Strength", + }, + }, + ["weightKey"] = { + "belt", + "ring", + "amulet", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeTemporaryMinionLimit"] = { + "Temporary Minion Skills have +2 to Limit of Minions summoned", + ["affix"] = "", + ["group"] = "TemporaryMinionLimit", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "minion", + }, + ["statOrder"] = { + 10247, + }, + ["tradeHashes"] = { + [1058934731] = { + "Temporary Minion Skills have +2 to Limit of Minions summoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeThornsCriticalStrikeChance"] = { + "+(0.05-0.1)% to Thorns Critical Hit Chance", + ["affix"] = "", + ["group"] = "ThornsCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + "critical", + }, + ["statOrder"] = { + 4758, + }, + ["tradeHashes"] = { + [2715190555] = { + "+(0.05-0.1)% to Thorns Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeThornsDamageIncrease1"] = { + "(100-150)% increased Thorns damage", + ["affix"] = "", + ["group"] = "ThornsDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + }, + ["statOrder"] = { + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(100-150)% increased Thorns damage", + }, + }, + ["weightKey"] = { + "body_armour", + "shield", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { + "(100-150)% increased Thorns damage if you've Blocked Recently", + ["affix"] = "", + ["group"] = "ThornsDamageIncreaseIfBlockedRecently", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + }, + ["statOrder"] = { + 10255, + }, + ["tradeHashes"] = { + [483561599] = { + "(100-150)% increased Thorns damage if you've Blocked Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { + "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", + ["affix"] = "", + ["group"] = "ThornsFromPercentBodyArmour", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "damage", + }, + ["statOrder"] = { + 4664, + }, + ["tradeHashes"] = { + [1793740180] = { + "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { + "Gain (35-50)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "upgraded_corruption_mod", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (35-50)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { + "Gain (35-50)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (35-50)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { + "Gain (35-50)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (35-50)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { + "Gain (35-50)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "upgraded_corruption_mod", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (35-50)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { + "Gain (35-50)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "upgraded_corruption_mod", + "damage", + "physical", + }, + ["statOrder"] = { + 1671, + }, + ["tradeHashes"] = { + [4019237939] = { + "Gain (35-50)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { + "+(3-4) to Level of all Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "upgraded_corruption_mod", + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+(3-4) to Level of all Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CorruptionUpgradeWeaponElementalDamage1"] = { + "(60-90)% increased Elemental Damage with Attacks", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(60-90)% increased Elemental Damage with Attacks", + }, + }, + ["weightKey"] = { + "bow", + "one_hand_weapon", + "default", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { + "(120-150)% increased Elemental Damage with Attacks", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "upgraded_corruption_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(120-150)% increased Elemental Damage with Attacks", + }, + }, + ["weightKey"] = { + "bow", + "two_hand_weapon", + "default", + }, + ["weightVal"] = { + 0, + 1, + 0, + }, + }, + ["CounterAttacksAddedColdDamageUnique__1"] = { + "Adds 250 to 300 Cold Damage to Counterattacks", + ["affix"] = "", + ["group"] = "CounterAttacksAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 3858, + }, + ["tradeHashes"] = { + [1109700751] = { + "Adds 250 to 300 Cold Damage to Counterattacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CoverInAshWhenHitUnique__1"] = { + "Cover Enemies in Ash when they Hit you", + ["affix"] = "", + ["group"] = "CoverInAshWhenHit", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 4327, + }, + ["tradeHashes"] = { + [3748879662] = { + "Cover Enemies in Ash when they Hit you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { + "Trigger Level 20 Fog of War when your Trap is triggered", + ["affix"] = "", + ["group"] = "CreateSmokeCloudWhenTrapTriggered", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 594, + }, + ["tradeHashes"] = { + [208447205] = { + "Trigger Level 20 Fog of War when your Trap is triggered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { + "1% increased Critical Hit Chance per 8 Strength", + ["affix"] = "", + ["group"] = "CritChancePercentPerStrength", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2688, + }, + ["tradeHashes"] = { + [3068290007] = { + "1% increased Critical Hit Chance per 8 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CritChanceWithAxeJewel"] = { + "(12-16)% increased Critical Hit Chance with Axes", + ["affix"] = "of Biting FIX ME", + ["group"] = "CritChanceWithAxeForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1368, + }, + ["tradeHashes"] = { + [2560468845] = { + "(12-16)% increased Critical Hit Chance with Axes", + }, + }, + ["weightKey"] = { + "axe", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithBowJewel"] = { + "(12-16)% increased Critical Hit Chance with Bows", + ["affix"] = "of the Sniper FIX ME", + ["group"] = "CritChanceWithBowForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1361, + }, + ["tradeHashes"] = { + [2091591880] = { + "(12-16)% increased Critical Hit Chance with Bows", + }, + }, + ["weightKey"] = { + "bow", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithClawJewel"] = { + "(12-16)% increased Critical Hit Chance with Claws", + ["affix"] = "of the Eagle FIX ME", + ["group"] = "CritChanceWithClawForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1362, + }, + ["tradeHashes"] = { + [3428039188] = { + "(12-16)% increased Critical Hit Chance with Claws", + }, + }, + ["weightKey"] = { + "claw", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithDaggerJewel"] = { + "(12-16)% increased Critical Hit Chance with Daggers", + ["affix"] = "of Needling FIX ME", + ["group"] = "CritChanceWithDaggerForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1363, + }, + ["tradeHashes"] = { + [4018186542] = { + "(12-16)% increased Critical Hit Chance with Daggers", + }, + }, + ["weightKey"] = { + "dagger", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithMaceJewel"] = { + "(12-16)% increased Critical Hit Chance with Maces or Sceptres", + ["affix"] = "of Striking FIX ME", + ["group"] = "CritChanceWithMaceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1365, + }, + ["tradeHashes"] = { + [107161577] = { + "(12-16)% increased Critical Hit Chance with Maces or Sceptres", + }, + }, + ["weightKey"] = { + "mace", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithStaffJewel"] = { + "(12-16)% increased Critical Hit Chance with Quarterstaves", + ["affix"] = "of Tyranny FIX ME", + ["group"] = "CritChanceWithStaffForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1366, + }, + ["tradeHashes"] = { + [3621953418] = { + "(12-16)% increased Critical Hit Chance with Quarterstaves", + }, + }, + ["weightKey"] = { + "staff", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithSwordJewel"] = { + "(12-16)% increased Critical Hit Chance with Swords", + ["affix"] = "of Stinging FIX ME", + ["group"] = "CritChanceWithSwordForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1364, + }, + ["tradeHashes"] = { + [2630620421] = { + "(12-16)% increased Critical Hit Chance with Swords", + }, + }, + ["weightKey"] = { + "sword", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritChanceWithWandJewel"] = { + "(12-16)% increased Critical Hit Chance with Wands", + ["affix"] = "of Divination FIX ME", + ["group"] = "CritChanceWithWandForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1367, + }, + ["tradeHashes"] = { + [1729982003] = { + "(12-16)% increased Critical Hit Chance with Wands", + }, + }, + ["weightKey"] = { + "wand", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { + "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + ["affix"] = "", + ["group"] = "CritMultiIfDealtNonCritRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 5867, + }, + ["tradeHashes"] = { + [1626712767] = { + "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { + "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + ["affix"] = "", + ["group"] = "CritMultiIfDealtNonCritRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 5867, + }, + ["tradeHashes"] = { + [1626712767] = { + "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CritMultiplierWithAxeJewel"] = { + "+(8-10)% to Critical Damage Bonus with Axes", + ["affix"] = "of Execution FIX ME", + ["group"] = "CritMultiplierWithAxeForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1387, + }, + ["tradeHashes"] = { + [4219746989] = { + "+(8-10)% to Critical Damage Bonus with Axes", + }, + }, + ["weightKey"] = { + "axe", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithBowJewel"] = { + "(8-10)% increased Critical Damage Bonus with Bows", + ["affix"] = "of the Hunter FIX ME", + ["group"] = "CritMultiplierWithBowForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1388, + }, + ["tradeHashes"] = { + [1712221299] = { + "(8-10)% increased Critical Damage Bonus with Bows", + }, + }, + ["weightKey"] = { + "bow", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithClawJewel"] = { + "+(8-10)% to Critical Damage Bonus with Claws", + ["affix"] = "of the Bear FIX ME", + ["group"] = "CritMultiplierWithClawForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1391, + }, + ["tradeHashes"] = { + [2811834828] = { + "+(8-10)% to Critical Damage Bonus with Claws", + }, + }, + ["weightKey"] = { + "claw", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithDaggerJewel"] = { + "(8-10)% increased Critical Damage Bonus with Daggers", + ["affix"] = "of Assassination FIX ME", + ["group"] = "CritMultiplierWithDaggerForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1385, + }, + ["tradeHashes"] = { + [3998601568] = { + "(8-10)% increased Critical Damage Bonus with Daggers", + }, + }, + ["weightKey"] = { + "dagger", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithMaceJewel"] = { + "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", + ["affix"] = "of Crushing FIX ME", + ["group"] = "CritMultiplierWithMaceForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1386, + }, + ["tradeHashes"] = { + [458899422] = { + "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", + }, + }, + ["weightKey"] = { + "mace", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithStaffJewel"] = { + "(8-10)% increased Critical Damage Bonus with Quarterstaves", + ["affix"] = "of Trauma FIX ME", + ["group"] = "CritMultiplierWithStaffForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1392, + }, + ["tradeHashes"] = { + [1661096452] = { + "(8-10)% increased Critical Damage Bonus with Quarterstaves", + }, + }, + ["weightKey"] = { + "staff", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithSwordJewel"] = { + "+(8-10)% to Critical Damage Bonus with Swords", + ["affix"] = "of Severing FIX ME", + ["group"] = "CritMultiplierWithSwordForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1389, + }, + ["tradeHashes"] = { + [3114492047] = { + "+(8-10)% to Critical Damage Bonus with Swords", + }, + }, + ["weightKey"] = { + "sword", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CritMultiplierWithWandJewel_"] = { + "+(8-10)% to Critical Damage Bonus with Wands", + ["affix"] = "of Evocation FIX ME", + ["group"] = "CritMultiplierWithWandForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1390, + }, + ["tradeHashes"] = { + [1241396104] = { + "+(8-10)% to Critical Damage Bonus with Wands", + }, + }, + ["weightKey"] = { + "wand", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + }, + }, + ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { + "(120-140)% increased Critical Hit Chance against Blinded Enemies", + ["affix"] = "", + ["group"] = "CriticalChanceAgainstBlindedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3104, + }, + ["tradeHashes"] = { + [1939202111] = { + "(120-140)% increased Critical Hit Chance against Blinded Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { + "(30-50)% increased Critical Hit Chance against Blinded Enemies", + ["affix"] = "", + ["group"] = "CriticalChanceAgainstBlindedEnemies", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3104, + }, + ["tradeHashes"] = { + [1939202111] = { + "(30-50)% increased Critical Hit Chance against Blinded Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { + "100% increased Critical Hit Chance against Enemies that are on Full Life", + ["affix"] = "", + ["group"] = "CriticalChanceAgainstEnemiesOnFullLife", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3441, + }, + ["tradeHashes"] = { + [47954913] = { + "100% increased Critical Hit Chance against Enemies that are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { + "Critical Hit Chance is increased by Overcapped Lightning Resistance", + ["affix"] = "", + ["group"] = "CriticalChanceIncreasedByUncappedLightningResistance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5840, + }, + ["tradeHashes"] = { + [2478752719] = { + "Critical Hit Chance is increased by Overcapped Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { + "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", + ["affix"] = "", + ["group"] = "CriticalMultiplierPer100DexterityAura", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2739, + }, + ["tradeHashes"] = { + [1438488526] = { + "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalMultiplierPerBlockChanceUnique__1"] = { + "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", + ["affix"] = "", + ["group"] = "CriticalMultiplierPerBlockChance", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2908, + }, + ["tradeHashes"] = { + [956384511] = { + "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalMultiplierPerPowerChargeUnique__1"] = { + "(6-10)% increased Critical Damage Bonus per Power Charge", + ["affix"] = "", + ["group"] = "CriticalMultiplierPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2990, + }, + ["tradeHashes"] = { + [4164870816] = { + "(6-10)% increased Critical Damage Bonus per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { + "(150-200)% increased Critical Hit Chance with arrows that Fork", + ["affix"] = "", + ["group"] = "CriticalStrikeChanceForForkingArrows", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3972, + }, + ["tradeHashes"] = { + [4169623196] = { + "(150-200)% increased Critical Hit Chance with arrows that Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikeChanceInMainHandUnique_1"] = { + "(60-80)% increased Global Critical Hit Chance when in Main Hand", + ["affix"] = "", + ["group"] = "CriticalStrikeChanceInMainHand", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3836, + }, + ["tradeHashes"] = { + [3404168630] = { + "(60-80)% increased Global Critical Hit Chance when in Main Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikeChanceJewel"] = { + "(8-12)% increased Critical Hit Chance", + ["affix"] = "of Menace", + ["group"] = "CritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(8-12)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { + "3% increased Global Critical Hit Chance per Level", + ["affix"] = "", + ["group"] = "CriticalStrikeChancePerLevel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2707, + }, + ["tradeHashes"] = { + [3081076859] = { + "3% increased Global Critical Hit Chance per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { + "25% increased Critical Hit Chance per Grand Spectrum", + ["affix"] = "", + ["group"] = "CriticalStrikeChancePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3813, + }, + ["tradeHashes"] = { + [2948375275] = { + "25% increased Critical Hit Chance per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikeMultiplierJewel"] = { + "(9-12)% increased Critical Damage Bonus", + ["affix"] = "of Potency", + ["group"] = "CritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(9-12)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { + "+10% to Global Critical Damage Bonus per Green Socket", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplierPerGreenSocket", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2493, + }, + ["tradeHashes"] = { + [35810390] = { + "+10% to Global Critical Damage Bonus per Green Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { + "50% increased Lightning Damage", + ["affix"] = "", + ["group"] = "CriticalStrikesDealIncreasedLightningDamage", + ["level"] = 87, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "50% increased Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikesDealNoDamageUnique__1"] = { + "Critical Hits deal no Damage", + ["affix"] = "", + ["group"] = "CriticalStrikesDealNoDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 5896, + }, + ["tradeHashes"] = { + [3245481061] = { + "Critical Hits deal no Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { + "Leech from Critical Hits is instant", + ["affix"] = "", + ["group"] = "CriticalStrikesLeechIsInstant", + ["level"] = 94, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2319, + }, + ["tradeHashes"] = { + [3389184522] = { + "Leech from Critical Hits is instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CrossbowImplicitAdditionalAmmo1"] = { + "Loads an additional bolt", + ["affix"] = "", + ["group"] = "AdditionalAmmo", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads an additional bolt", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CrossbowImplicitAdditionalBallistaTotem1"] = { + "+1 to maximum number of Summoned Ballista Totems", + ["affix"] = "", + ["group"] = "AdditionalBallistaTotem", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4175, + }, + ["tradeHashes"] = { + [1823942939] = { + "+1 to maximum number of Summoned Ballista Totems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CrossbowImplicitBoltSpeed1"] = { + "(20-30)% increased Bolt Speed", + ["affix"] = "", + ["group"] = "BoltSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1553, + }, + ["tradeHashes"] = { + [1803308202] = { + "(20-30)% increased Bolt Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CrossbowImplicitChanceToPierce1"] = { + "(20-30)% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(20-30)% chance to Pierce an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CrossbowImplicitGrenadeProjectiles1"] = { + "Grenade Skills Fire an additional Projectile", + ["affix"] = "", + ["group"] = "GrenadeProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6945, + }, + ["tradeHashes"] = { + [1980802737] = { + "Grenade Skills Fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { + "Culling Strike against Burning Enemies", + ["affix"] = "", + ["group"] = "CullingAgainstBurningEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2592, + }, + ["tradeHashes"] = { + [1777334641] = { + "Culling Strike against Burning Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CullingCriticalStrikes"] = { + "Critical Strikes have Culling Strike", + ["affix"] = "", + ["group"] = "CullingCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3134, + }, + ["tradeHashes"] = { + [2996445420] = { + "Critical Strikes have Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseCastSpeedJewel_"] = { + "Curse Skills have (5-10)% increased Cast Speed", + ["affix"] = "of Blasphemy", + ["group"] = "CurseCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + "curse", + }, + ["statOrder"] = { + 1944, + }, + ["tradeHashes"] = { + [2378065031] = { + "Curse Skills have (5-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CurseCastSpeedUnique__1"] = { + "Curse Skills have (10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "CurseCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + "curse", + }, + ["statOrder"] = { + 1944, + }, + ["tradeHashes"] = { + [2378065031] = { + "Curse Skills have (10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseCastSpeedUnique__2"] = { + "Curse Skills have (8-12)% increased Cast Speed", + ["affix"] = "", + ["group"] = "CurseCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + "curse", + }, + ["statOrder"] = { + 1944, + }, + ["tradeHashes"] = { + [2378065031] = { + "Curse Skills have (8-12)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseEffectOnYouJewel"] = { + "(25-30)% reduced effect of Curses on you", + ["affix"] = "of Hexwarding", + ["group"] = "CurseEffectOnYouJewel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "(25-30)% reduced effect of Curses on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["CurseEffectivenessUniqueJewel45"] = { + "4% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectivenessForJewel", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "4% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseEffectivenessUnique__2_"] = { + "(15-20)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(15-20)% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseEffectivenessUnique__3_"] = { + "(5-10)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(5-10)% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseEffectivenessUnique__4"] = { + "(10-15)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(10-15)% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseLevel10VulnerabilityOnHitUnique__1"] = { + "Curse Enemies with Vulnerability on Hit", + ["affix"] = "", + ["group"] = "CurseLevel10VulnerabilityOnHit", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2304, + }, + ["tradeHashes"] = { + [2213584313] = { + "Curse Enemies with Vulnerability on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseRadiusJewel"] = { + "(8-10)% increased Area of Effect of Curses", + ["affix"] = "Hexing FIX ME", + ["group"] = "CurseRadiusForJewel", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(8-10)% increased Area of Effect of Curses", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CurseSelfDurationPerDevotion"] = { + "4% reduced Duration of Curses on you per 10 Devotion", + ["affix"] = "", + ["group"] = "CurseSelfDurationPerDevotion", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 9809, + }, + ["tradeHashes"] = { + [4235333770] = { + "4% reduced Duration of Curses on you per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["CurseTransferOnKillUniqueQuiver5"] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["affix"] = "", + ["group"] = "CurseTransferOnKill", + ["level"] = 5, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2684, + }, + ["tradeHashes"] = { + [986616727] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DaggerAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Daggers", + ["affix"] = "Slicing", + ["group"] = "DaggerAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1322, + }, + ["tradeHashes"] = { + [2538566497] = { + "(6-8)% increased Attack Speed with Daggers", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dagger", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 1, + }, + }, + ["DaggerDamageJewel"] = { + "(14-16)% increased Damage with Daggers", + ["affix"] = "Lethal", + ["group"] = "IncreasedDaggerDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1245, + }, + ["tradeHashes"] = { + [3586984690] = { + "(14-16)% increased Damage with Daggers", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dagger", + "specific_weapon", + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 1, + }, + }, + ["DaggerImplicitBreakArmour1"] = { + "Breaks (400-500) Armour on Critical Hit", + ["affix"] = "", + ["group"] = "LocalBreakArmourOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7615, + }, + ["tradeHashes"] = { + [4270348114] = { + "Breaks (400-500) Armour on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DaggerImplicitManaLeechLocal1"] = { + "Leeches 4% of Physical Damage as Mana", + ["affix"] = "", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches 4% of Physical Damage as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DaggerImplicitSpellLifeCostPercent1"] = { + "25% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "", + ["group"] = "SpellLifeCostPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 10038, + }, + ["tradeHashes"] = { + [3544050945] = { + "25% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageAgainstNearEnemiesUnique__1"] = { + "100% increased Damage with Hits against Hindered Enemies", + ["affix"] = "", + ["group"] = "DamageAgainstNearEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3762, + }, + ["tradeHashes"] = { + [528422616] = { + "100% increased Damage with Hits against Hindered Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageAuraUniqueHelmetDexInt2"] = { + "50% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "50% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageJewel"] = { + "(8-10)% increased Damage", + ["affix"] = "of Wounding", + ["group"] = "DamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(8-10)% increased Damage", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["DamageOverTimeJewel"] = { + "(10-12)% increased Damage over Time", + ["affix"] = "of Entropy", + ["group"] = "DamageOverTimeForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1167, + }, + ["tradeHashes"] = { + [967627487] = { + "(10-12)% increased Damage over Time", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["DamageOverTimeUnique___1"] = { + "(8-12)% increased Damage over Time", + ["affix"] = "", + ["group"] = "DamageOverTimeForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1167, + }, + ["tradeHashes"] = { + [967627487] = { + "(8-12)% increased Damage over Time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamagePer15DexterityUnique__1"] = { + "1% increased Damage per 15 Dexterity", + ["affix"] = "", + ["group"] = "DamagePer15Dexterity", + ["level"] = 72, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5998, + }, + ["tradeHashes"] = { + [2062174346] = { + "1% increased Damage per 15 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamagePer15DexterityUnique__2"] = { + "1% increased Damage per 15 Dexterity", + ["affix"] = "", + ["group"] = "DamagePer15Dexterity", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5998, + }, + ["tradeHashes"] = { + [2062174346] = { + "1% increased Damage per 15 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamagePerPoisonOnSelfUnique__1_"] = { + "15% increased Damage for each Poison on you up to a maximum of 75%", + ["affix"] = "", + ["group"] = "DamagePerPoisonOnSelf", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6008, + }, + ["tradeHashes"] = { + [1034580601] = { + "15% increased Damage for each Poison on you up to a maximum of 75%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageRemovedFromManaBeforeLifeTestMod"] = { + "30% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "30% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenFromGhostsUniqueOneHandSword12"] = { + "10% increased Damage taken from Ghosts", + ["affix"] = "", + ["group"] = "DamageTakenFromGhosts", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1973, + }, + ["tradeHashes"] = { + [2156764291] = { + "10% increased Damage taken from Ghosts", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { + "10% increased Damage taken from Skeletons", + ["affix"] = "", + ["group"] = "DamageTakenFromSkeletons", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1972, + }, + ["tradeHashes"] = { + [705686721] = { + "10% increased Damage taken from Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { + "10% increased Damage taken while on Full Energy Shield", + ["affix"] = "", + ["group"] = "DamageTakenOnFullES", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1969, + }, + ["tradeHashes"] = { + [969865219] = { + "10% increased Damage taken while on Full Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenOnFullESUnique__1"] = { + "15% increased Damage taken while on Full Energy Shield", + ["affix"] = "", + ["group"] = "DamageTakenOnFullES", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1969, + }, + ["tradeHashes"] = { + [969865219] = { + "15% increased Damage taken while on Full Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { + "1% increased Damage taken per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreaseDamageTakenPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2680, + }, + ["tradeHashes"] = { + [1625103793] = { + "1% increased Damage taken per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageTakenUniqueJewel24"] = { + "10% increased Damage taken", + ["affix"] = "", + ["group"] = "DamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1963, + }, + ["tradeHashes"] = { + [3691641145] = { + "10% increased Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageWithMovementSkillsUniqueBodyDex5"] = { + "(60-100)% increased Damage with Movement Skills", + ["affix"] = "", + ["group"] = "DamageWithMovementSkills", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1330, + }, + ["tradeHashes"] = { + [856021430] = { + "(60-100)% increased Damage with Movement Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DamageWithMovementSkillsUniqueClaw9"] = { + "20% increased Damage with Movement Skills", + ["affix"] = "", + ["group"] = "DamageWithMovementSkills", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1330, + }, + ["tradeHashes"] = { + [856021430] = { + "20% increased Damage with Movement Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoElementalDamageUnique__1"] = { + "Deal no Elemental Damage", + ["affix"] = "", + ["group"] = "DealNoElementalDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 6088, + }, + ["tradeHashes"] = { + [2998305364] = { + "Deal no Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoElementalDamageUnique__2"] = { + "Deal no Elemental Damage", + ["affix"] = "", + ["group"] = "DealNoElementalDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 6088, + }, + ["tradeHashes"] = { + [2998305364] = { + "Deal no Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoElementalDamageUnique__3"] = { + "Deal no Elemental Damage", + ["affix"] = "", + ["group"] = "DealNoElementalDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 6088, + }, + ["tradeHashes"] = { + [2998305364] = { + "Deal no Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoNonElementalDamageUnique__1"] = { + "Deal no Non-Elemental Damage", + ["affix"] = "", + ["group"] = "DealNoNonElementalDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 6091, + }, + ["tradeHashes"] = { + [4031851097] = { + "Deal no Non-Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoNonPhysicalDamageUniqueBelt__1"] = { + "Deal no Non-Physical Damage", + ["affix"] = "", + ["group"] = "DealNoNonPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2551, + }, + ["tradeHashes"] = { + [282353000] = { + "Deal no Non-Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DealNoPhysicalDamageUniqueBelt14"] = { + "Deal no Physical Damage", + ["affix"] = "", + ["group"] = "DealNoPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2550, + }, + ["tradeHashes"] = { + [3900877792] = { + "Deal no Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DeathWalk"] = { + "Triggers Level 20 Death Walk when Equipped", + ["affix"] = "", + ["group"] = "DeathWalk", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 573, + }, + ["tradeHashes"] = { + [651875072] = { + "Triggers Level 20 Death Walk when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DebuffTimePassedUnique__1"] = { + "Debuffs on you expire (15-20)% faster", + ["affix"] = "", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (15-20)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DebuffTimePassedUnique__2"] = { + "Debuffs on you expire (80-100)% faster", + ["affix"] = "", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (80-100)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DebuffTimePassedUnique__3"] = { + "Debuffs on you expire 100% faster", + ["affix"] = "", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire 100% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DefencesPer100StrengthAuraUnique__1"] = { + "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have", + ["affix"] = "", + ["group"] = "DefencesPer100StrengthAura", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 2738, + }, + ["tradeHashes"] = { + [1879586312] = { + "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { + "50% increased Attack, Cast and Movement Speed during Effect", + "Reduce Attack, Cast and Movement Speed 10% every second during Effect", + ["affix"] = "", + ["group"] = "DegradingMovementSpeedDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "flask", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 803, + 804, + }, + ["tradeHashes"] = { + [1878928358] = { + "50% increased Attack, Cast and Movement Speed during Effect", + }, + [3625168971] = { + "Reduce Attack, Cast and Movement Speed 10% every second during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodAllResistances1"] = { + "+20% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+20% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodIncreasedSkillSpeed1"] = { + "10% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "10% increased Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodItemFoundRarityIncrease1"] = { + "25% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "25% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodLifeRegenerationRatePercentage1"] = { + "Regenerate 3% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 3% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodManaGainedOnKillPercentage1"] = { + "Recover 2% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [1604736568] = { + "Recover 2% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodMovementVelocity1"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DemigodsVirtue1"] = { + "Virtuous", + ["affix"] = "", + ["group"] = "DemigodsVirtue", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10674, + }, + ["tradeHashes"] = { + [1132041585] = { + "Virtuous", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { + "100% chance to create Desecrated Ground when you Block", + ["affix"] = "", + ["group"] = "DesecratedGroundOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2356, + }, + ["tradeHashes"] = { + [3685028559] = { + "100% chance to create Desecrated Ground when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DespairReservationCostUnique__1"] = { + "Despair has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "DespairNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 6133, + }, + ["tradeHashes"] = { + [450601566] = { + "Despair has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { + "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", + ["affix"] = "", + ["group"] = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2865, + }, + ["tradeHashes"] = { + [842363566] = { + "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DexterityIntelligenceJewel"] = { + "+(8-10) to Dexterity and Intelligence", + ["affix"] = "of Cunning", + ["group"] = "DexterityIntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 997, + }, + ["tradeHashes"] = { + [2300185227] = { + "+(8-10) to Dexterity and Intelligence", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["DexterityIntelligenceUnique__1__"] = { + "+20 to Dexterity and Intelligence", + ["affix"] = "", + ["group"] = "DexterityIntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 997, + }, + ["tradeHashes"] = { + [2300185227] = { + "+20 to Dexterity and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DexterityJewel"] = { + "+(12-16) to Dexterity", + ["affix"] = "of Dexterity", + ["group"] = "DexterityForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(12-16) to Dexterity", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["DexterityRequirementsUnique__1"] = { + "+160 Dexterity Requirement", + ["affix"] = "", + ["group"] = "DexterityRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 818, + }, + ["tradeHashes"] = { + [1133453872] = { + "+160 Dexterity Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DexterityUniqueJewel13"] = { + "+(16-24) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(16-24) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DexterityUniqueJewel36"] = { + "+(16-24) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(16-24) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisableChestSlot"] = { + "Can't use Body Armour", + ["affix"] = "", + ["group"] = "DisableChestSlot", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2364, + }, + ["tradeHashes"] = { + [4007482102] = { + "Can't use Body Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisablesOtherRingSlot"] = { + "Can't use other Rings", + ["affix"] = "", + ["group"] = "DisablesOtherRingSlot", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1473, + }, + ["tradeHashes"] = { + [64726306] = { + "Can't use other Rings", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { + "Removes Elemental Ailments on Rampage", + ["affix"] = "", + ["group"] = "DispelStatusAilmentsOnRampage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 2700, + }, + ["tradeHashes"] = { + [627889781] = { + "Removes Elemental Ailments on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayBlindAuraUnique__1"] = { + "Nearby Enemies are Blinded", + ["affix"] = "", + ["group"] = "DisplayBlindAura", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3094, + }, + ["tradeHashes"] = { + [2826979740] = { + "Nearby Enemies are Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { + "Deals 450 Chaos Damage per second to nearby Enemies", + ["affix"] = "", + ["group"] = "DisplayChaosDegenerationAura", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 2465, + }, + ["tradeHashes"] = { + [2280313599] = { + "Deals 450 Chaos Damage per second to nearby Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayChaosDegenerationAuraUnique__1"] = { + "Deals 50 Chaos Damage per second to nearby Enemies", + ["affix"] = "", + ["group"] = "DisplayChaosDegenerationAura", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 2465, + }, + ["tradeHashes"] = { + [2280313599] = { + "Deals 50 Chaos Damage per second to nearby Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayDamageAuraUniqueHelmetDexInt2"] = { + "You and nearby allies gain 50% increased Damage", + ["affix"] = "", + ["group"] = "DisplayDamageAura", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2473, + }, + ["tradeHashes"] = { + [637766438] = { + "You and nearby allies gain 50% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayGrantsBloodOfferingUnique__1_"] = { + "Grants Level 15 Blood Offering Skill", + ["affix"] = "", + ["group"] = "DisplayGrantsBloodOffering", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 502, + }, + ["tradeHashes"] = { + [3985468650] = { + "Grants Level 15 Blood Offering Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayIronReflexesFor8SecondsUnique__1"] = { + "Every 16 seconds you gain Iron Reflexes for 8 seconds", + ["affix"] = "", + ["group"] = "DisplayIronReflexesFor8Seconds", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 10741, + }, + ["tradeHashes"] = { + [2200114771] = { + "Every 16 seconds you gain Iron Reflexes for 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { + "Nearby Allies gain 4% of maximum Life Regenerated per second", + ["affix"] = "", + ["group"] = "DisplayLifeRegenerationAura", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2736, + }, + ["tradeHashes"] = { + [3462673103] = { + "Nearby Allies gain 4% of maximum Life Regenerated per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayManaRegenerationAuaUniqueAmulet21"] = { + "Nearby Allies gain 80% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "DisplayManaRegenerationAua", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2741, + }, + ["tradeHashes"] = { + [778848857] = { + "Nearby Allies gain 80% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayManifestWeaponUnique__1"] = { + "Triggers Level 15 Manifest Dancing Dervishes on Rampage", + "Cannot be used while Manifested", + "Manifested Dancing Dervishes die when Rampage ends", + ["affix"] = "", + ["group"] = "DisplayManifestWeapon", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3045, + 3046, + 3047, + }, + ["tradeHashes"] = { + [1414945937] = { + "Manifested Dancing Dervishes die when Rampage ends", + }, + [398335579] = { + "Cannot be used while Manifested", + }, + [4007938693] = { + "Triggers Level 15 Manifest Dancing Dervishes on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayManifestWeaponUnique__2"] = { + "Triggers Level 15 Manifest Dancing Dervishes on Rampage", + "Cannot be used while Manifested", + "Manifested Dancing Dervishes die when Rampage ends", + ["affix"] = "", + ["group"] = "DisplayManifestWeapon", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3045, + 3046, + 3047, + }, + ["tradeHashes"] = { + [1414945937] = { + "Manifested Dancing Dervishes die when Rampage ends", + }, + [398335579] = { + "Cannot be used while Manifested", + }, + [4007938693] = { + "Triggers Level 15 Manifest Dancing Dervishes on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { + "Nearby Allies have +50% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "DisplayGrantsCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 7670, + }, + ["tradeHashes"] = { + [3152714748] = { + "Nearby Allies have +50% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { + "Nearby Allies have Culling Strike", + ["affix"] = "", + ["group"] = "DisplayGrantsCullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2313, + }, + ["tradeHashes"] = { + [1560540713] = { + "Nearby Allies have Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { + "Nearby Allies have +10 Fortification", + ["affix"] = "", + ["group"] = "DisplayGrantsFortify", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7672, + }, + ["tradeHashes"] = { + [244825991] = { + "Nearby Allies have +10 Fortification", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { + "Nearby Allies have 30% increased Item Rarity", + ["affix"] = "", + ["group"] = "DisplayIncreasedItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1465, + }, + ["tradeHashes"] = { + [1722463112] = { + "Nearby Allies have 30% increased Item Rarity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { + "Nearby Enemies are Hindered, with 25% reduced Movement Speed", + ["affix"] = "", + ["group"] = "DisplayNearbyEnemiesAreSlowed", + ["level"] = 1, + ["modTags"] = { + "speed", + "aura", + }, + ["statOrder"] = { + 3101, + }, + ["tradeHashes"] = { + [607839150] = { + "Nearby Enemies are Hindered, with 25% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { + "Socketed Gems are Supported by Level 18 Added Lightning Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsAddedLightningDamageLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 343, + }, + ["tradeHashes"] = { + [1647529598] = { + "Socketed Gems are Supported by Level 18 Added Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { + "Socketed Gems are Supported by Level 30 Added Lightning Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsAddedLightningDamageLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 343, + }, + ["tradeHashes"] = { + [1647529598] = { + "Socketed Gems are Supported by Level 30 Added Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { + "Socketed Gems are supported by Level 2 Chance to Flee", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsChancetoFleeLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 365, + }, + ["tradeHashes"] = { + [952060721] = { + "Socketed Gems are supported by Level 2 Chance to Flee", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { + "Socketed Gems are supported by Level 10 Chance to Flee", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsChancetoFleeLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 365, + }, + ["tradeHashes"] = { + [952060721] = { + "Socketed Gems are supported by Level 10 Chance to Flee", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { + "Socketed Gems are Supported by Level 30 Faster Attacks", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsFasterAttackLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 345, + }, + ["tradeHashes"] = { + [928701213] = { + "Socketed Gems are Supported by Level 30 Faster Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { + "Socketed Gems are Supported by Level 12 Faster Attacks", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsFasterAttackLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 345, + }, + ["tradeHashes"] = { + [928701213] = { + "Socketed Gems are Supported by Level 12 Faster Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { + "Socketed Gems are Supported by Level 13 Faster Attacks", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsFasterAttackLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 345, + }, + ["tradeHashes"] = { + [928701213] = { + "Socketed Gems are Supported by Level 13 Faster Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { + "Socketed Gems are Supported by Level 10 Increased Duration", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsIncreasedDurationLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 337, + }, + ["tradeHashes"] = { + [2091466357] = { + "Socketed Gems are Supported by Level 10 Increased Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { + "Socketed Gems are Supported by Level 30 Melee Physical Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 344, + }, + ["tradeHashes"] = { + [2985291457] = { + "Socketed Gems are Supported by Level 30 Melee Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { + "Socketed Gems are Supported by Level 10 Inspiration", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsReducedManaCost", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 361, + }, + ["tradeHashes"] = { + [1866911844] = { + "Socketed Gems are Supported by Level 10 Inspiration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { + "Socketed Gems are Supported by Level 20 Spell Totem", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsSpellTotemLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 340, + }, + ["tradeHashes"] = { + [2962840349] = { + "Socketed Gems are Supported by Level 20 Spell Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { + "Socketed Gems are Supported by Level 10 Faster Casting", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetFasterCast", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 366, + }, + ["tradeHashes"] = { + [2169938251] = { + "Socketed Gems are Supported by Level 10 Faster Casting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { + "Socketed Gems are Supported by Level 15 Faster Attacks", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsFasterAttackLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 345, + }, + ["tradeHashes"] = { + [928701213] = { + "Socketed Gems are Supported by Level 15 Faster Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { + "Socketed Minion Gems are Supported by Level 16 Life Leech", + ["affix"] = "", + ["group"] = "DisplaySocketedMinionGemsSupportedByLifeLeech", + ["level"] = 1, + ["modTags"] = { + "support", + "minion", + "gem", + }, + ["statOrder"] = { + 386, + }, + ["tradeHashes"] = { + [4006301249] = { + "Socketed Minion Gems are Supported by Level 16 Life Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { + "Socketed Gems Chain 1 additional times", + ["affix"] = "", + ["group"] = "DisplaySocketedSkillsChain", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 399, + }, + ["tradeHashes"] = { + [2788729902] = { + "Socketed Gems Chain 1 additional times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByAddedColdDamageUnique__1"] = { + "Socketed Gems are Supported by Level 15 Added Cold Damage", + ["affix"] = "", + ["group"] = "DisplaySupportedByAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 380, + }, + ["tradeHashes"] = { + [4020144606] = { + "Socketed Gems are Supported by Level 15 Added Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByColdPenetrationUnique__1"] = { + "Socketed Gems are Supported by Level 15 Cold Penetration", + ["affix"] = "", + ["group"] = "DisplaySupportedByColdPenetration", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 378, + }, + ["tradeHashes"] = { + [1991958615] = { + "Socketed Gems are Supported by Level 15 Cold Penetration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByElementalPenetrationUnique__1"] = { + "Socketed Gems are Supported by Level 25 Elemental Penetration", + ["affix"] = "", + ["group"] = "DisplaySupportedByElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 208, + }, + ["tradeHashes"] = { + [1994143317] = { + "Socketed Gems are Supported by Level 25 Elemental Penetration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByElementalPenetrationUnique__2"] = { + "Socketed Gems are Supported by Level 1 Elemental Penetration", + ["affix"] = "", + ["group"] = "DisplaySupportedByElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 208, + }, + ["tradeHashes"] = { + [1994143317] = { + "Socketed Gems are Supported by Level 1 Elemental Penetration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByHypothermiaUnique__1"] = { + "Socketed Gems are Supported by Level 15 Hypothermia", + ["affix"] = "", + ["group"] = "DisplaySupportedByHypothermia", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 376, + }, + ["tradeHashes"] = { + [13669281] = { + "Socketed Gems are Supported by Level 15 Hypothermia", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByIceBiteUnique__1"] = { + "Socketed Gems are Supported by Level 15 Ice Bite", + ["affix"] = "", + ["group"] = "DisplaySupportedByIceBite", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 377, + }, + ["tradeHashes"] = { + [1384629003] = { + "Socketed Gems are Supported by Level 15 Ice Bite", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByIceBiteUnique__2"] = { + "Socketed Gems are Supported by Level 15 Ice Bite", + ["affix"] = "", + ["group"] = "DisplaySupportedByIceBite", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 377, + }, + ["tradeHashes"] = { + [1384629003] = { + "Socketed Gems are Supported by Level 15 Ice Bite", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { + "Socketed Gems are Supported by Level 10 Knockback", + ["affix"] = "", + ["group"] = "DisplaySupportedByKnockback", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 368, + }, + ["tradeHashes"] = { + [4066711249] = { + "Socketed Gems are Supported by Level 10 Knockback", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByManaLeechUnique__1"] = { + "Socketed Gems are Supported by Level 1 Mana Leech", + ["affix"] = "", + ["group"] = "DisplaySupportedByManaLeech", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 379, + }, + ["tradeHashes"] = { + [2608615082] = { + "Socketed Gems are Supported by Level 1 Mana Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByReducedManaUnique__1"] = { + "Socketed Gems are Supported by Level 15 Inspiration", + ["affix"] = "", + ["group"] = "DisplaySupportedByReducedMana", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 381, + }, + ["tradeHashes"] = { + [749770518] = { + "Socketed Gems are Supported by Level 15 Inspiration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByReducedManaUnique__2"] = { + "Socketed Gems are Supported by Level 15 Inspiration", + ["affix"] = "", + ["group"] = "DisplaySupportedByReducedMana", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 381, + }, + ["tradeHashes"] = { + [749770518] = { + "Socketed Gems are Supported by Level 15 Inspiration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByTrapUniqueBootsDex6"] = { + "Socketed Gems are Supported by Level 15 Trap", + ["affix"] = "", + ["group"] = "DisplaySupportedByTrap", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 331, + }, + ["tradeHashes"] = { + [1122134690] = { + "Socketed Gems are Supported by Level 15 Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByTrapUniqueStaff4"] = { + "Socketed Gems are Supported by Level 8 Trap", + ["affix"] = "", + ["group"] = "DisplaySupportedByTrap", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 331, + }, + ["tradeHashes"] = { + [1122134690] = { + "Socketed Gems are Supported by Level 8 Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DisplaySupportedByTrapUnique__1"] = { + "Socketed Gems are Supported by Level 16 Trap", + ["affix"] = "", + ["group"] = "DisplaySupportedByTrap", + ["level"] = 40, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 331, + }, + ["tradeHashes"] = { + [1122134690] = { + "Socketed Gems are Supported by Level 16 Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DivineChargeOnHitUnique__1_"] = { + "+10 to maximum Divine Charges", + "Gain a Divine Charge on Hit", + ["affix"] = "", + ["group"] = "DivineChargeOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4048, + 4049, + }, + ["tradeHashes"] = { + [108334292] = { + "Gain a Divine Charge on Hit", + }, + [3997368968] = { + "+10 to maximum Divine Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DoubleDamagePer500StrengthUnique__1"] = { + "6% chance to deal Double Damage per 500 Strength", + ["affix"] = "", + ["group"] = "DoubleDamagePer500Strength", + ["level"] = 63, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5505, + }, + ["tradeHashes"] = { + [4104492115] = { + "6% chance to deal Double Damage per 500 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DualWieldingAttackSpeedJewel"] = { + "(4-6)% increased Attack Speed while Dual Wielding", + ["affix"] = "Harmonic", + ["group"] = "AttackSpeedWhileDualWieldingForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1314, + }, + ["tradeHashes"] = { + [4249220643] = { + "(4-6)% increased Attack Speed while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + }, + }, + ["DualWieldingCastSpeedJewel"] = { + "(3-5)% increased Cast Speed while Dual Wielding", + ["affix"] = "Resonant", + ["group"] = "CastSpeedWhileDualWieldingForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 1345, + }, + ["tradeHashes"] = { + [2382196858] = { + "(3-5)% increased Cast Speed while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + }, + }, + ["DualWieldingCritChanceJewel"] = { + "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", + ["affix"] = "Technical", + ["group"] = "DualWieldingCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1376, + }, + ["tradeHashes"] = { + [3702513529] = { + "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["DualWieldingCritMultiplierJewel"] = { + "+(15-18)% to Critical Damage Bonus while Dual Wielding", + ["affix"] = "Puncturing", + ["group"] = "DualWieldingCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 3910, + }, + ["tradeHashes"] = { + [2546185479] = { + "+(15-18)% to Critical Damage Bonus while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["DualWieldingMeleeDamageJewel"] = { + "(12-14)% increased Attack Damage while Dual Wielding", + ["affix"] = "Gladiator's", + ["group"] = "IncreasedDualWieldlingDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1217, + }, + ["tradeHashes"] = { + [444174528] = { + "(12-14)% increased Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["DualWieldingPhysicalDamageUnique__1"] = { + "40% increased Physical Attack Damage while Dual Wielding", + ["affix"] = "", + ["group"] = "DualWieldingPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1218, + }, + ["tradeHashes"] = { + [1274831335] = { + "40% increased Physical Attack Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["DualWieldingSpellDamageJewel_"] = { + "(14-16)% increased Spell Damage while Dual Wielding", + ["affix"] = "Sorcerer's", + ["group"] = "DualWieldingSpellDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1184, + }, + ["tradeHashes"] = { + [1678690824] = { + "(14-16)% increased Spell Damage while Dual Wielding", + }, + }, + ["weightKey"] = { + "shield_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + }, + }, + ["ESRechargeRateDuringFlaskEffect__1"] = { + "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", + ["affix"] = "", + ["group"] = "ESRechargeRateDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "defences", + "flask", + "energy_shield", + }, + ["statOrder"] = { + 3263, + }, + ["tradeHashes"] = { + [1827657795] = { + "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { + "4% reduced Elemental Ailment Duration on you per 10 Devotion", + ["affix"] = "", + ["group"] = "ElementalAilmentSelfDurationPerDevotion", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9810, + }, + ["tradeHashes"] = { + [730530528] = { + "4% reduced Elemental Ailment Duration on you per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalCritChanceJewel"] = { + "(10-14)% increased Critical Hit Chance with Elemental Skills", + ["affix"] = "of the Apocalypse", + ["group"] = "ElementalCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "critical", + }, + ["statOrder"] = { + 1380, + }, + ["tradeHashes"] = { + [439950087] = { + "(10-14)% increased Critical Hit Chance with Elemental Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ElementalCritMultiplier"] = { + "+(12-15)% to Critical Damage Bonus with Elemental Skills", + ["affix"] = "of the Elements", + ["group"] = "ElementalCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "critical", + }, + ["statOrder"] = { + 1402, + }, + ["tradeHashes"] = { + [1569407745] = { + "+(12-15)% to Critical Damage Bonus with Elemental Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ElementalDamageCanShockUnique__1__"] = { + "All Elemental Damage from Hits Contributes to Shock Chance", + ["affix"] = "", + ["group"] = "ElementalDamageCanShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2630, + }, + ["tradeHashes"] = { + [2933625540] = { + "All Elemental Damage from Hits Contributes to Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamagePerDevotion_"] = { + "4% increased Elemental Damage per 10 Devotion", + ["affix"] = "", + ["group"] = "ElementalDamagePerDevotion", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 6271, + }, + ["tradeHashes"] = { + [3103189267] = { + "4% increased Elemental Damage per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { + "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", + ["affix"] = "", + ["group"] = "ElementalDamagePercentAddedAsChaosPerShaperItem", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "chaos", + }, + ["statOrder"] = { + 4001, + }, + ["tradeHashes"] = { + [1860646468] = { + "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { + "25% of Elemental damage from Hits taken as Chaos damage", + ["affix"] = "", + ["group"] = "ElementalDamageTakenAsChaos", + ["level"] = 1, + ["modTags"] = { + "elemental", + "chaos", + }, + ["statOrder"] = { + 2215, + }, + ["tradeHashes"] = { + [1175213674] = { + "25% of Elemental damage from Hits taken as Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueBootsStr1"] = { + "(10-20)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(10-20)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueDescentBelt1"] = { + "10% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "10% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueHelmetInt9"] = { + "20% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "20% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueIntHelmet3"] = { + "(10-20)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(10-20)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueJewel10"] = { + "10% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "10% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueJewel_1"] = { + "(10-15)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(10-15)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueRing21"] = { + "30% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 38, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "30% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueRingVictors"] = { + "(10-20)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(10-20)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueSceptre1"] = { + "20% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "20% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueSceptre7"] = { + "(80-100)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(80-100)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUniqueStaff13"] = { + "(30-50)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(30-50)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUnique__1"] = { + "30% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "30% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUnique__2_"] = { + "(20-30)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(20-30)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUnique__3"] = { + "(30-40)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(30-40)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalDamageUnique__4"] = { + "(7-10)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(7-10)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalHitDisableColdUniqueJewel_1"] = { + "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", + ["affix"] = "", + ["group"] = "ElementalHitDisableColdJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 7871, + 7874, + }, + ["tradeHashes"] = { + [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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalHitDisableFireUniqueJewel_1"] = { + "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", + ["affix"] = "", + ["group"] = "ElementalHitDisableFireJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 7872, + 7875, + }, + ["tradeHashes"] = { + [1813069390] = { + "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", + }, + [63111803] = { + "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { + "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", + ["affix"] = "", + ["group"] = "ElementalHitDisableLightningJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 7873, + 7876, + }, + ["tradeHashes"] = { + [2053992416] = { + "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", + }, + [637033100] = { + "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalPenetrationMarakethSceptreImplicit1"] = { + "Damage Penetrates 4% Elemental Resistances", + ["affix"] = "", + ["group"] = "ElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates 4% Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalPenetrationMarakethSceptreImplicit2"] = { + "Damage Penetrates 6% Elemental Resistances", + ["affix"] = "", + ["group"] = "ElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates 6% Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { + "Penetrate 1% Elemental Resistances per Frenzy Charge", + ["affix"] = "", + ["group"] = "ElementalPenetrationPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2732, + }, + ["tradeHashes"] = { + [2724643145] = { + "Penetrate 1% Elemental Resistances per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalResistancesPerDevotion"] = { + "+2% to all Elemental Resistances per 10 Devotion", + ["affix"] = "", + ["group"] = "ElementalResistancesPerDevotion", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 6306, + }, + ["tradeHashes"] = { + [1910205563] = { + "+2% to all Elemental Resistances per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { + "+20% to all Elemental Resistances while on Low Life", + ["affix"] = "", + ["group"] = "ElementalResistsOnLowLife", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 1483, + }, + ["tradeHashes"] = { + [1637928656] = { + "+20% to all Elemental Resistances while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { + "50% increased Duration of Elemental Ailments on Enemies", + ["affix"] = "", + ["group"] = "ElementalStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1617, + }, + ["tradeHashes"] = { + [2604619892] = { + "50% increased Duration of Elemental Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalStatusAilmentDurationUniqueAmulet19"] = { + "20% reduced Duration of Elemental Ailments on Enemies", + ["affix"] = "", + ["group"] = "ElementalStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1617, + }, + ["tradeHashes"] = { + [2604619892] = { + "20% reduced Duration of Elemental Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalStatusAilmentDurationUnique__1_"] = { + "(10-15)% increased Duration of Elemental Ailments on Enemies", + ["affix"] = "", + ["group"] = "ElementalStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1617, + }, + ["tradeHashes"] = { + [2604619892] = { + "(10-15)% increased Duration of Elemental Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ElementalWeaknessReservationCostUnique__1"] = { + "Elemental Weakness has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "ElementalWeaknessNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 6313, + }, + ["tradeHashes"] = { + [3416664215] = { + "Elemental Weakness has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EmptyRoarVerisiumBleedDuration1"] = { + "(20-30)% increased Bleeding Duration", + ["affix"] = "", + ["group"] = "BleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "(20-30)% increased Bleeding Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnduranceChargeDurationJewel"] = { + "(10-14)% increased Endurance Charge Duration", + ["affix"] = "of Endurance", + ["group"] = "EnduranceChargeDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1864, + }, + ["tradeHashes"] = { + [1170174456] = { + "(10-14)% increased Endurance Charge Duration", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["EnduranceChargeDurationUniqueAmulet14"] = { + "30% reduced Endurance Charge Duration", + ["affix"] = "", + ["group"] = "EnduranceChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1864, + }, + ["tradeHashes"] = { + [1170174456] = { + "30% reduced Endurance Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnduranceChargeDurationUniqueBodyStrInt4"] = { + "30% increased Endurance Charge Duration", + ["affix"] = "", + ["group"] = "EnduranceChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1864, + }, + ["tradeHashes"] = { + [1170174456] = { + "30% increased Endurance Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnduranceChargeOnKillChanceProphecy"] = { + "30% chance to gain an Endurance Charge on kill", + ["affix"] = "", + ["group"] = "EnduranceChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 2403, + }, + ["tradeHashes"] = { + [1054322244] = { + "30% chance to gain an Endurance Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { + "Gain an Endurance Charge when you lose a Power Charge", + ["affix"] = "", + ["group"] = "EnduranceChargeOnPowerChargeExpiry", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 2410, + }, + ["tradeHashes"] = { + [1791875585] = { + "Gain an Endurance Charge when you lose a Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesBlockedAreIntimidatedUnique__1"] = { + "Permanently Intimidate enemies on Block", + ["affix"] = "", + ["group"] = "EnemiesBlockedAreIntimidated", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9428, + }, + ["tradeHashes"] = { + [2930706364] = { + "Permanently Intimidate enemies on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { + "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + ["affix"] = "", + ["group"] = "EnemiesChilledIncreasedDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6338, + }, + ["tradeHashes"] = { + [1816894864] = { + "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesDestroyedOnKillUnique__1"] = { + "Enemies killed by your Hits are destroyed", + ["affix"] = "", + ["group"] = "EnemiesDestroyedOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6343, + }, + ["tradeHashes"] = { + [2970902024] = { + "Enemies killed by your Hits are destroyed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { + "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", + ["affix"] = "", + ["group"] = "EnemiesExplodeOnDeath", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2477, + }, + ["tradeHashes"] = { + [3457687358] = { + "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { + "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", + ["affix"] = "", + ["group"] = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2567, + }, + ["tradeHashes"] = { + [1696792323] = { + "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { + "Enemies take 5% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + ["affix"] = "", + ["group"] = "EnemiesTakeIncreasedDamagePerAilmentType", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6260, + 6260.1, + }, + ["tradeHashes"] = { + [1509533589] = { + "Enemies take 5% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { + "Hits against you have 50% reduced Critical Damage Bonus", + ["affix"] = "", + ["group"] = "EnemyCriticalMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have 50% reduced Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { + "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsOnFullLife", + ["level"] = 68, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6405, + }, + ["tradeHashes"] = { + [3629143471] = { + "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { + "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsOnFullLife", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6405, + }, + ["tradeHashes"] = { + [3629143471] = { + "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { + "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2338, + }, + ["tradeHashes"] = { + [3753748365] = { + "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { + "Lightning Damage of Enemies Hitting you is Lucky", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsWithLightningDamage", + ["level"] = 37, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 6345, + }, + ["tradeHashes"] = { + [4224965099] = { + "Lightning Damage of Enemies Hitting you is Lucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyHitsRollLowDamageUniqueRing9"] = { + "Enemy hits on you roll low Damage", + ["affix"] = "", + ["group"] = "EnemyHitsRollLowDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2336, + }, + ["tradeHashes"] = { + [2482008875] = { + "Enemy hits on you roll low Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { + "Knockback direction is reversed", + ["affix"] = "", + ["group"] = "EnemyKnockbackDirectionReversed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2752, + }, + ["tradeHashes"] = { + [281201999] = { + "Knockback direction is reversed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldAndManaJewel"] = { + "(2-4)% increased maximum Energy Shield", + "(4-6)% increased maximum Mana", + ["affix"] = "Wise", + ["group"] = "EnergyShieldAndManaForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 886, + 894, + }, + ["tradeHashes"] = { + [2482852589] = { + "(2-4)% increased maximum Energy Shield", + }, + [2748665614] = { + "(4-6)% increased maximum Mana", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["EnergyShieldDelayDuringFlaskEffect__1"] = { + "50% slower start of Energy Shield Recharge during any Flask Effect", + ["affix"] = "", + ["group"] = "EnergyShieldDelayDuringFlaskEffect", + ["level"] = 35, + ["modTags"] = { + "defences", + "flask", + "energy_shield", + }, + ["statOrder"] = { + 3261, + }, + ["tradeHashes"] = { + [1912660783] = { + "50% slower start of Energy Shield Recharge during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldDelayJewel"] = { + "(4-6)% faster start of Energy Shield Recharge", + ["affix"] = "Serene", + ["group"] = "EnergyShieldDelayForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(4-6)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { + "Gain (15-20) Energy Shield per enemy killed", + ["affix"] = "", + ["group"] = "EnergyShieldGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2353, + }, + ["tradeHashes"] = { + [2528955616] = { + "Gain (15-20) Energy Shield per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { + "Gain (10-15) Energy Shield per enemy killed", + ["affix"] = "", + ["group"] = "EnergyShieldGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2353, + }, + ["tradeHashes"] = { + [2528955616] = { + "Gain (10-15) Energy Shield per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { + "Gain (15-25) Energy Shield per enemy killed", + ["affix"] = "", + ["group"] = "EnergyShieldGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2353, + }, + ["tradeHashes"] = { + [2528955616] = { + "Gain (15-25) Energy Shield per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { + "Recover Energy Shield equal to 2% of Armour when you Block", + ["affix"] = "", + ["group"] = "EnergyShieldGainedOnBlockBasedOnArmour", + ["level"] = 1, + ["modTags"] = { + "block", + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2249, + }, + ["tradeHashes"] = { + [3681057026] = { + "Recover Energy Shield equal to 2% of Armour when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { + "Gain 1 Energy Shield on Kill per Level", + ["affix"] = "", + ["group"] = "EnergyShieldGainedOnEnemyDeathPerLevel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2718, + }, + ["tradeHashes"] = { + [294153754] = { + "Gain 1 Energy Shield on Kill per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { + "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", + ["affix"] = "", + ["group"] = "EnergyShieldInRadiusIncreasesArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 2855, + }, + ["tradeHashes"] = { + [2605119037] = { + "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldJewel"] = { + "(6-8)% increased maximum Energy Shield", + ["affix"] = "Shimmering", + ["group"] = "EnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(6-8)% increased maximum Energy Shield", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { + "Lose 1% of maximum Energy Shield on Kill", + ["affix"] = "", + ["group"] = "EnergyShieldLostOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1518, + }, + ["tradeHashes"] = { + [1699499433] = { + "Lose 1% of maximum Energy Shield on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldOnHitJewel"] = { + "Gain (2-3) Energy Shield per Enemy Hit with Attacks", + ["affix"] = "of Focus", + ["group"] = "EnergyShieldGainPerTargetForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + "attack", + }, + ["statOrder"] = { + 1510, + }, + ["tradeHashes"] = { + [211381198] = { + "Gain (2-3) Energy Shield per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["EnergyShieldPer5StrengthUnique__1"] = { + "+2 maximum Energy Shield per 5 Strength", + ["affix"] = "", + ["group"] = "EnergyShieldPer5Strength", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 3451, + }, + ["tradeHashes"] = { + [3788706881] = { + "+2 maximum Energy Shield per 5 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldPerLevelUnique__1"] = { + "+1 Maximum Energy Shield per Level", + ["affix"] = "", + ["group"] = "EnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6433, + }, + ["tradeHashes"] = { + [3864993324] = { + "+1 Maximum Energy Shield per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldPerStrengthUnique__1"] = { + "1% increased Energy Shield per 10 Strength", + ["affix"] = "", + ["group"] = "EnergyShieldPerStrength", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6434, + }, + ["tradeHashes"] = { + [506942497] = { + "1% increased Energy Shield per 10 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRateJewel"] = { + "(6-8)% increased Energy Shield Recharge Rate", + ["affix"] = "Fevered", + ["group"] = "EnergyShieldRechargeRateForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(6-8)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["EnergyShieldRechargeOnBlockUnique__1"] = { + "20% chance for Energy Shield Recharge to start when you Block", + ["affix"] = "", + ["group"] = "EnergyShieldRechargeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "defences", + "energy_shield", + }, + ["statOrder"] = { + 3120, + }, + ["tradeHashes"] = { + [762154651] = { + "20% chance for Energy Shield Recharge to start when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { + "Energy Shield Recharge starts when you are Stunned", + ["affix"] = "", + ["group"] = "EnergyShieldRechargeStartsWhenStunned", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6447, + }, + ["tradeHashes"] = { + [788946728] = { + "Energy Shield Recharge starts when you are Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRecoveryRateUnique__1"] = { + "(50-100)% increased Energy Shield Recovery rate", + ["affix"] = "", + ["group"] = "EnergyShieldRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1440, + }, + ["tradeHashes"] = { + [988575597] = { + "(50-100)% increased Energy Shield Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { + "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 3856, + }, + ["tradeHashes"] = { + [4156715241] = { + "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRegenerationUnique__1"] = { + "Regenerate 1% of maximum Energy Shield per second", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationPerMinute", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2420, + }, + ["tradeHashes"] = { + [3594640492] = { + "Regenerate 1% of maximum Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRegenerationUnique__2"] = { + "Regenerate 1% of maximum Energy Shield per second", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationPerMinute", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2420, + }, + ["tradeHashes"] = { + [3594640492] = { + "Regenerate 1% of maximum Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRegenerationUnique__3"] = { + "Regenerate 2% of maximum Energy Shield per second", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationPerMinute", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2420, + }, + ["tradeHashes"] = { + [3594640492] = { + "Regenerate 2% of maximum Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { + "Regenerate 2% of maximum Energy Shield per second while on Low Life", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationperMinuteWhileOnLowLife", + ["level"] = 45, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1556, + }, + ["tradeHashes"] = { + [115109959] = { + "Regenerate 2% of maximum Energy Shield per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnergyShieldStartsAtZero"] = { + "Your Energy Shield starts at zero", + ["affix"] = "", + ["group"] = "EnergyShieldStartsAtZero", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 10080, + }, + ["tradeHashes"] = { + [2342431054] = { + "Your Energy Shield starts at zero", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnfeebleOnHitUniqueShieldStr3"] = { + "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", + ["affix"] = "", + ["group"] = "EnfeebleOnHitUncursed", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2301, + }, + ["tradeHashes"] = { + [3804297142] = { + "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EnfeebleReservationCostUnique__1"] = { + "Enfeeble has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "EnfeebleNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 6463, + }, + ["tradeHashes"] = { + [56919069] = { + "Enfeeble has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayAttributes1"] = { + "+(9-12) to Strength, Dexterity or Intelligence", + ["affix"] = "", + ["group"] = "EssenceDisplayAttributes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6476, + }, + ["tradeHashes"] = { + [1816568014] = { + "+(9-12) to Strength, Dexterity or Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayAttributes2"] = { + "+(17-20) to Strength, Dexterity or Intelligence", + ["affix"] = "", + ["group"] = "EssenceDisplayAttributes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6476, + }, + ["tradeHashes"] = { + [1816568014] = { + "+(17-20) to Strength, Dexterity or Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayAttributes3"] = { + "+(25-27) to Strength, Dexterity or Intelligence", + ["affix"] = "", + ["group"] = "EssenceDisplayAttributes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6476, + }, + ["tradeHashes"] = { + [1816568014] = { + "+(25-27) to Strength, Dexterity or Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayAttributes4"] = { + "+(28-30) to Strength, Dexterity or Intelligence", + ["affix"] = "", + ["group"] = "EssenceDisplayAttributes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6476, + }, + ["tradeHashes"] = { + [1816568014] = { + "+(28-30) to Strength, Dexterity or Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayAttributes5"] = { + "(7-10)% increased Strength, Dexterity or Intelligence", + ["affix"] = "", + ["group"] = "EssenceDisplayAttributesIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6477, + }, + ["tradeHashes"] = { + [415464603] = { + "(7-10)% increased Strength, Dexterity or Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences1"] = { + "(27-42)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(27-42)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences1Amulet"] = { + "(15-20)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(15-20)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences2"] = { + "(56-67)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(56-67)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences2Amulet"] = { + "(21-26)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(21-26)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences3"] = { + "(68-79)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(68-79)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences3Amulet"] = { + "(27-32)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(27-32)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences4"] = { + "(80-91)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(80-91)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EssenceDisplayDefences4Amulet"] = { + "(33-38)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "EssenceDisplayDefences", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6478, + }, + ["tradeHashes"] = { + [1683132557] = { + "(33-38)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionEnergyShieldJewel"] = { + "(6-12)% increased Evasion Rating", + "(2-4)% increased maximum Energy Shield", + ["affix"] = "Rogue's", + ["group"] = "EvasionEnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 884, + 886, + }, + ["tradeHashes"] = { + [2106365538] = { + "(6-12)% increased Evasion Rating", + }, + [2482852589] = { + "(2-4)% increased maximum Energy Shield", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { + "Evasion Rating is increased by Overcapped Cold Resistance", + ["affix"] = "", + ["group"] = "EvasionIncreasedByUncappedColdResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6498, + }, + ["tradeHashes"] = { + [2358015838] = { + "Evasion Rating is increased by Overcapped Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionOnFullLifeUniqueBodyDex4"] = { + "+1000 to Evasion Rating while on Full Life", + ["affix"] = "", + ["group"] = "EvasionOnFullLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1423, + }, + ["tradeHashes"] = { + [4082111882] = { + "+1000 to Evasion Rating while on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionOnFullLifeUnique__1_"] = { + "+1500 to Evasion Rating while on Full Life", + ["affix"] = "", + ["group"] = "EvasionOnFullLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1423, + }, + ["tradeHashes"] = { + [4082111882] = { + "+1500 to Evasion Rating while on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionOnLowLifeUniqueAmulet4"] = { + "+(150-250) to Evasion Rating while on Low Life", + ["affix"] = "", + ["group"] = "EvasionOnLowLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1422, + }, + ["tradeHashes"] = { + [3470876581] = { + "+(150-250) to Evasion Rating while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { + "1% increased Attack Damage per 450 Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRatingIncreasesWeaponDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2692, + }, + ["tradeHashes"] = { + [93696421] = { + "1% increased Attack Damage per 450 Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { + "10% increased Evasion Rating per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreasedEvasionRatingPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1426, + }, + ["tradeHashes"] = { + [660404777] = { + "10% increased Evasion Rating per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionRatingPerIntelligenceUnique__1"] = { + "2% increased Evasion Rating per 10 Intelligence", + ["affix"] = "", + ["group"] = "EvasionRatingPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6485, + }, + ["tradeHashes"] = { + [810772344] = { + "2% increased Evasion Rating per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { + "150% increased Global Evasion Rating when on Low Life", + ["affix"] = "", + ["group"] = "EvasionRatingPercentOnLowLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 2315, + }, + ["tradeHashes"] = { + [2695354435] = { + "150% increased Global Evasion Rating when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EventidePetalsVerisiumImplicitColdSkills1"] = { + "+(1-2) to Level of all Cold Skills", + ["affix"] = "", + ["group"] = "GlobalColdGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "gem", + }, + ["statOrder"] = { + 960, + }, + ["tradeHashes"] = { + [1078455967] = { + "+(1-2) to Level of all Cold Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EventidePetalsVerisiumImplicitMaxColdRes1"] = { + "+(2-3)% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(2-3)% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["EventidePetalsVerisiumImplicitRunicWardPercent1"] = { + "(15-20)% increased maximum Runic Ward", + ["affix"] = "", + ["group"] = "GlobalRunicWardPercent", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 891, + }, + ["tradeHashes"] = { + [4273473110] = { + "(15-20)% increased maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ExtraGore"] = { + "Extra gore", + ["affix"] = "", + ["group"] = "ExtraGore", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10755, + }, + ["tradeHashes"] = { + [3403461239] = { + "Extra gore", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { + "You have Far Shot while you do not have Iron Reflexes", + ["affix"] = "", + ["group"] = "FarShotWhileYouDoNotHaveIronReflexes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10750, + }, + ["tradeHashes"] = { + [3284029342] = { + "You have Far Shot while you do not have Iron Reflexes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FasterAilmentDamageJewel"] = { + "Damaging Ailments deal damage (4-6)% faster", + ["affix"] = "Decrepifying", + ["group"] = "FasterAilmentDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [538241406] = { + "Damaging Ailments deal damage (4-6)% faster", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { + "Ignites you inflict with Attacks deal Damage 35% faster", + ["affix"] = "", + ["group"] = "FasterBurnFromAttacksEnemies", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + "ailment", + }, + ["statOrder"] = { + 2348, + }, + ["tradeHashes"] = { + [1420236871] = { + "Ignites you inflict with Attacks deal Damage 35% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FasterBurnFromAttacksUniqueOneHandSword4"] = { + "Ignites you inflict deal Damage 50% faster", + ["affix"] = "", + ["group"] = "FasterBurnFromAttacks", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2346, + }, + ["tradeHashes"] = { + [2443492284] = { + "Ignites you inflict deal Damage 50% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireBeamLengthUnique__1"] = { + "10% increased Scorching Ray beam length", + ["affix"] = "", + ["group"] = "FireBeamLength", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 6560, + }, + ["tradeHashes"] = { + [702909553] = { + "10% increased Scorching Ray beam length", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireColdResistanceJewel"] = { + "+(10-12)% to Fire and Cold Resistances", + ["affix"] = "of the Hearth", + ["group"] = "FireColdResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "cold", + "resistance", + }, + ["statOrder"] = { + 1016, + }, + ["tradeHashes"] = { + [2915988346] = { + "+(10-12)% to Fire and Cold Resistances", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FireCritChanceJewel"] = { + "(14-18)% increased Critical Hit Chance with Fire Skills", + ["affix"] = "Incinerating", + ["group"] = "FireCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "critical", + }, + ["statOrder"] = { + 1377, + }, + ["tradeHashes"] = { + [1104796138] = { + "(14-18)% increased Critical Hit Chance with Fire Skills", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FireCritMultiplier"] = { + "+(15-18)% to Critical Damage Bonus with Fire Skills", + ["affix"] = "Infernal", + ["group"] = "FireCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "critical", + }, + ["statOrder"] = { + 1399, + }, + ["tradeHashes"] = { + [2307547323] = { + "+(15-18)% to Critical Damage Bonus with Fire Skills", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FireDamageArmourPenetrationUnique__1"] = { + "Break Armour equal to 15% of Fire Damage dealt", + ["affix"] = "", + ["group"] = "FireDamageArmourPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 4413, + }, + ["tradeHashes"] = { + [2451508632] = { + "Break Armour equal to 15% of Fire Damage dealt", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamageCanPoisonUnique__1"] = { + "Fire Damage from Hits also Contributes to Poison Magnitude", + ["affix"] = "", + ["group"] = "FireDamageCanPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2619, + }, + ["tradeHashes"] = { + [1985969957] = { + "Fire Damage from Hits also Contributes to Poison Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamageJewel"] = { + "(14-16)% increased Fire Damage", + ["affix"] = "Flaming", + ["group"] = "FireDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(14-16)% increased Fire Damage", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FireDamagePerBuffUniqueJewel17"] = { + "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", + ["affix"] = "", + ["group"] = "FireDamagePerBuff", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 1213, + }, + ["tradeHashes"] = { + [761505024] = { + "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamagePerStrengthUnique__1"] = { + "1% increased Fire Damage per 20 Strength", + ["affix"] = "", + ["group"] = "FireDamagePerStrength", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6568, + }, + ["tradeHashes"] = { + [2241902512] = { + "1% increased Fire Damage per 20 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamagePercentPerArmourBreakUnique__1"] = { + "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", + ["affix"] = "", + ["group"] = "FireDamagePercentPerArmourBreak", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6562, + }, + ["tradeHashes"] = { + [1325331627] = { + "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { + "10% of Fire Damage from Hits taken as Physical Damage", + ["affix"] = "", + ["group"] = "FireDamageTakenAsPhysicalNegate", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2218, + }, + ["tradeHashes"] = { + [1029319062] = { + "10% of Fire Damage from Hits taken as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamageTakenConvertedToPhysicalUnique__1"] = { + "100% of Fire Damage from Hits taken as Physical Damage", + ["affix"] = "", + ["group"] = "FireDamageTakenAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2217, + }, + ["tradeHashes"] = { + [3205239847] = { + "100% of Fire Damage from Hits taken as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireDamageToNearbyEnemiesOnKillUnique"] = { + "Trigger Level 1 Fire Burst on Kill", + ["affix"] = "", + ["group"] = "FireDamageToNearbyEnemiesOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 551, + }, + ["tradeHashes"] = { + [4240751513] = { + "Trigger Level 1 Fire Burst on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireGemCastSpeedJewel"] = { + "(3-5)% increased Cast Speed with Fire Skills", + ["affix"] = "Pyromantic", + ["group"] = "FireGemCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "elemental", + "fire", + "caster", + "speed", + }, + ["statOrder"] = { + 1273, + }, + ["tradeHashes"] = { + [1476643878] = { + "(3-5)% increased Cast Speed with Fire Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["FireLightningResistanceJewel"] = { + "+(10-12)% to Fire and Lightning Resistances", + ["affix"] = "of Insulation", + ["group"] = "FireLightningResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1018, + }, + ["tradeHashes"] = { + [3441501978] = { + "+(10-12)% to Fire and Lightning Resistances", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FirePenetrationIfBlockedRecentlyUnique__1"] = { + "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", + ["affix"] = "", + ["group"] = "FirePenetrationIfBlockedRecently", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6585, + }, + ["tradeHashes"] = { + [2341811700] = { + "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FirePenetrationUnique__1"] = { + "Damage Penetrates 10% Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistancePenetration", + ["level"] = 81, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 10% Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { + "Passives granting Fire Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain an Endurance Charge on Kill", + ["affix"] = "", + ["group"] = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 7880, + 7880.1, + }, + ["tradeHashes"] = { + [1645524575] = { + "Passives granting Fire Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain an Endurance Charge on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { + "Passives granting Fire Resistance or all Elemental Resistances in Radius", + "also grant Chance to Block Attack Damage at 50% of its value", + ["affix"] = "", + ["group"] = "FireResistConvertedToBlockChanceScaledJewel", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 7879, + 7879.1, + }, + ["tradeHashes"] = { + [3931143552] = { + "Passives granting Fire Resistance or all Elemental Resistances in Radius", + "also grant Chance to Block Attack Damage at 50% of its value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireResistOnLowLifeUniqueShieldStrInt5"] = { + "+25% to Fire Resistance while on Low Life", + ["affix"] = "", + ["group"] = "FireResistOnLowLife", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1015, + }, + ["tradeHashes"] = { + [38301299] = { + "+25% to Fire Resistance while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireResistanceJewel"] = { + "+(12-15)% to Fire Resistance", + ["affix"] = "of the Dragon", + ["group"] = "FireResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(12-15)% to Fire Resistance", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { + "+(75-100)% to Fire Resistance when Socketed with a Red Gem", + ["affix"] = "", + ["group"] = "FireResistanceWhenSocketedWithRedGem", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + "gem", + }, + ["statOrder"] = { + 1485, + }, + ["tradeHashes"] = { + [3051845758] = { + "+(75-100)% to Fire Resistance when Socketed with a Red Gem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireSkillsChanceToPoisonUnique__1"] = { + "Fire Skills have 20% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "FireSkillsChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 6589, + }, + ["tradeHashes"] = { + [2424717327] = { + "Fire Skills have 20% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FireSpellDamagePerBuffUniqueJewel17"] = { + "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", + ["affix"] = "", + ["group"] = "FireSpellDamagePerBuff", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1214, + }, + ["tradeHashes"] = { + [3434279150] = { + "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishDetectionUnique__1_"] = { + "Glows while in an Area containing a Unique Fish", + ["affix"] = "", + ["group"] = "FishingDetection", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3782, + }, + ["tradeHashes"] = { + [931560398] = { + "Glows while in an Area containing a Unique Fish", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingCastDistanceUnique__1__"] = { + "20% increased Fishing Range", + ["affix"] = "", + ["group"] = "FishingCastDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2604, + }, + ["tradeHashes"] = { + [170497091] = { + "20% increased Fishing Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingLineStrengthUnique__1"] = { + "100% increased Fishing Line Strength", + ["affix"] = "", + ["group"] = "FishingLineStrength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2600, + }, + ["tradeHashes"] = { + [1842038569] = { + "100% increased Fishing Line Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingLureTypeUniqueFishingRod1"] = { + "Siren Worm Bait", + ["affix"] = "", + ["group"] = "FishingLureType", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2602, + }, + ["tradeHashes"] = { + [3360430812] = { + "Siren Worm Bait", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingLureTypeUnique__1__"] = { + "Thaumaturgical Lure", + ["affix"] = "", + ["group"] = "FishingLureType", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2602, + }, + ["tradeHashes"] = { + [3360430812] = { + "Thaumaturgical Lure", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingPoolConsumptionUnique__1__"] = { + "50% increased Fishing Pool Consumption", + ["affix"] = "", + ["group"] = "FishingPoolConsumption", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2601, + }, + ["tradeHashes"] = { + [1550221644] = { + "50% increased Fishing Pool Consumption", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingQuantityUniqueFishingRod1"] = { + "(40-50)% reduced Quantity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingQuantity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2605, + }, + ["tradeHashes"] = { + [3802667447] = { + "(40-50)% reduced Quantity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingQuantityUnique__1"] = { + "(10-20)% increased Quantity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingQuantity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2605, + }, + ["tradeHashes"] = { + [3802667447] = { + "(10-20)% increased Quantity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingQuantityUnique__2"] = { + "20% increased Quantity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingQuantity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2605, + }, + ["tradeHashes"] = { + [3802667447] = { + "20% increased Quantity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingRarityUniqueFishingRod1"] = { + "(50-60)% increased Rarity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2606, + }, + ["tradeHashes"] = { + [3310914132] = { + "(50-60)% increased Rarity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingRarityUnique__1"] = { + "40% increased Rarity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2606, + }, + ["tradeHashes"] = { + [3310914132] = { + "40% increased Rarity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FishingRarityUnique__2_"] = { + "(20-30)% increased Rarity of Fish Caught", + ["affix"] = "", + ["group"] = "FishingRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2606, + }, + ["tradeHashes"] = { + [3310914132] = { + "(20-30)% increased Rarity of Fish Caught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlailImplicitIgnoreBlock1"] = { + "Unblockable", + ["affix"] = "", + ["group"] = "LocalIgnoreBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7624, + }, + ["tradeHashes"] = { + [1137147997] = { + "Unblockable", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlailImplicitRollCritTwice1"] = { + "Bifurcates Critical Hits", + ["affix"] = "", + ["group"] = "RollCriticalChanceTwice", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1356, + }, + ["tradeHashes"] = { + [1451444093] = { + "Bifurcates Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlammabilityOnHitUniqueOneHandAxe7"] = { + "Curse Enemies with Flammability on Hit", + ["affix"] = "", + ["group"] = "FlammabilityOnHit", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2297, + }, + ["tradeHashes"] = { + [654274615] = { + "Curse Enemies with Flammability on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlammabilityOnHitUnique__1"] = { + "Curse Enemies with Flammability on Hit", + ["affix"] = "", + ["group"] = "FlammabilityOnHitLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2310, + }, + ["tradeHashes"] = { + [338121249] = { + "Curse Enemies with Flammability on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlammabilityReservationCostUnique__1"] = { + "Flammability has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "FlammabilityNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 6635, + }, + ["tradeHashes"] = { + [1195140808] = { + "Flammability has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { + "Skills fire 2 additional Projectiles during Effect", + ["affix"] = "", + ["group"] = "FlaskAdditionalProjectilesDuringEffect", + ["level"] = 85, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 761, + }, + ["tradeHashes"] = { + [323705912] = { + "Skills fire 2 additional Projectiles during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { + "Gain a Flask Charge when you deal a Critical Hit", + ["affix"] = "", + ["group"] = "FlaskChargesOnCrit", + ["level"] = 1, + ["modTags"] = { + "flask", + "critical", + }, + ["statOrder"] = { + 2710, + }, + ["tradeHashes"] = { + [1546046884] = { + "Gain a Flask Charge when you deal a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { + "Consecrated Ground created by this Flask has Tripled Radius", + ["affix"] = "", + ["group"] = "FlaskConsecratedGroundAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 648, + }, + ["tradeHashes"] = { + [806698863] = { + "Consecrated Ground created by this Flask has Tripled Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsecratedGroundDamageTakenUnique__1"] = { + "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", + ["affix"] = "", + ["group"] = "FlaskConsecratedGroundDamageTaken", + ["level"] = 1, + ["modTags"] = { + "flask", + "damage", + }, + ["statOrder"] = { + 745, + }, + ["tradeHashes"] = { + [1866211373] = { + "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsecratedGroundDurationUnique__1"] = { + "(15-30)% reduced Duration", + ["affix"] = "", + ["group"] = "FlaskConsecratedGroundDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 932, + }, + ["tradeHashes"] = { + [1256719186] = { + "(15-30)% reduced Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { + "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", + ["affix"] = "", + ["group"] = "FlaskConsecratedGroundEffectCriticalStrike", + ["level"] = 1, + ["modTags"] = { + "flask", + "critical", + }, + ["statOrder"] = { + 779, + }, + ["tradeHashes"] = { + [3278399103] = { + "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsecratedGroundEffectUnique__1_"] = { + "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", + ["affix"] = "", + ["group"] = "FlaskConsecratedGroundEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + "critical", + }, + ["statOrder"] = { + 741, + }, + ["tradeHashes"] = { + [1535051459] = { + "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskConsumesFrenzyChargesUnique__1"] = { + "Consumes Frenzy Charges on use", + ["affix"] = "", + ["group"] = "FlaskConsumesFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "flask", + "frenzy_charge", + }, + ["statOrder"] = { + 651, + }, + ["tradeHashes"] = { + [570159344] = { + "Consumes Frenzy Charges on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskCurseImmunityUnique___1"] = { + "Removes Curses on use", + ["affix"] = "", + ["group"] = "FlaskCurseImmunity", + ["level"] = 1, + ["modTags"] = { + "flask", + "caster", + "curse", + }, + ["statOrder"] = { + 665, + }, + ["tradeHashes"] = { + [3895393544] = { + "Removes Curses on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskDurationConsumedPerUse"] = { + "50% increased Duration. -1% to this value when used", + ["affix"] = "", + ["group"] = "FlaskDurationConsumedPerUse", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 932, + }, + ["tradeHashes"] = { + [1256719186] = { + "50% increased Duration. -1% to this value when used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskDurationJewel"] = { + "(6-10)% increased Flask Effect Duration", + ["affix"] = "Prolonging", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(6-10)% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { + "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", + ["affix"] = "", + ["group"] = "FlaskElementalDamageTakenOfLowestResist", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 806, + }, + ["tradeHashes"] = { + [1869678332] = { + "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { + "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", + ["affix"] = "", + ["group"] = "FlaskElementalPenetrationOfHighestResist", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "flask", + "damage", + "elemental", + }, + ["statOrder"] = { + 807, + }, + ["tradeHashes"] = { + [2444301311] = { + "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskElementalResistancesUniqueFlask1_"] = { + "+50% to Elemental Resistances during Effect", + ["affix"] = "", + ["group"] = "FlaskElementalResistances", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "flask", + "elemental", + "resistance", + }, + ["statOrder"] = { + 790, + }, + ["tradeHashes"] = { + [3110554274] = { + "+50% to Elemental Resistances during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskGainEnduranceChargeUniqueFlask2"] = { + "Gain (1-3) Endurance Charge on use", + ["affix"] = "", + ["group"] = "FlaskGainEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "flask", + }, + ["statOrder"] = { + 654, + }, + ["tradeHashes"] = { + [3986030307] = { + "Gain (1-3) Endurance Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskGainEnduranceChargeUnique__1_"] = { + "Gain 1 Endurance Charge on use", + ["affix"] = "", + ["group"] = "FlaskGainEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "flask", + }, + ["statOrder"] = { + 654, + }, + ["tradeHashes"] = { + [3986030307] = { + "Gain 1 Endurance Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskGainFrenzyChargeUniqueFlask2"] = { + "Gain (1-3) Frenzy Charge on use", + ["affix"] = "", + ["group"] = "FlaskGainFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "flask", + "frenzy_charge", + }, + ["statOrder"] = { + 655, + }, + ["tradeHashes"] = { + [3230795453] = { + "Gain (1-3) Frenzy Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskGainPowerChargeUniqueFlask2"] = { + "Gain (1-3) Power Charge on use", + ["affix"] = "", + ["group"] = "FlaskGainPowerCharge", + ["level"] = 1, + ["modTags"] = { + "flask", + "power_charge", + }, + ["statOrder"] = { + 656, + }, + ["tradeHashes"] = { + [2697049014] = { + "Gain (1-3) Power Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskImmuneToDamage__1"] = { + "Immunity to Damage during Effect", + ["affix"] = "", + ["group"] = "FlaskImmuneToDamage", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 750, + }, + ["tradeHashes"] = { + [4267616253] = { + "Immunity to Damage during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskImmuneToStunFreezeCursesUnique__1"] = { + "Immunity to Freeze, Chill, Curses and Stuns during Effect", + ["affix"] = "", + ["group"] = "KiarasDeterminationBuff", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 786, + }, + ["tradeHashes"] = { + [803730540] = { + "Immunity to Freeze, Chill, Curses and Stuns during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { + "(10-20)% increased Area of Effect during Effect", + ["affix"] = "", + ["group"] = "FlaskIncreasedAreaOfEffectDuringEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 738, + }, + ["tradeHashes"] = { + [215882879] = { + "(10-20)% increased Area of Effect during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskItemQuantityUniqueFlask1"] = { + "(8-12)% increased Quantity of Items found during Effect", + ["affix"] = "", + ["group"] = "FlaskItemQuantity", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 784, + }, + ["tradeHashes"] = { + [3736953565] = { + "(8-12)% increased Quantity of Items found during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskItemRarityUniqueFlask1"] = { + "(20-30)% increased Rarity of Items found during Effect", + ["affix"] = "", + ["group"] = "FlaskItemRarity", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 785, + }, + ["tradeHashes"] = { + [1740200922] = { + "(20-30)% increased Rarity of Items found during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLifeGainOnSkillUseUnique__1"] = { + "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", + ["affix"] = "", + ["group"] = "FlaskZerphisLastBreath", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 730, + }, + ["tradeHashes"] = { + [3686711832] = { + "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { + "50% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "50% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLifeRecoveryRateUniqueJewel46"] = { + "10% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "10% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLifeRecoveryRateUniqueSceptre5"] = { + "10% reduced Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "10% reduced Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLifeRecoveryUniqueAmulet25"] = { + "100% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "100% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskLightRadiusUniqueFlask1"] = { + "25% increased Light Radius during Effect", + ["affix"] = "", + ["group"] = "FlaskLightRadius", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 787, + }, + ["tradeHashes"] = { + [2745936267] = { + "25% increased Light Radius during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { + "50% increased Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "50% increased Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskManaRecoveryRateUniqueSceptre5"] = { + "(30-40)% increased Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(30-40)% increased Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskManaRecoveryUniqueBodyDex7"] = { + "(60-100)% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "(60-100)% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskManaRecoveryUniqueShieldInt3"] = { + "15% increased Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "15% increased Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskMaximumElementalResistancesUniqueFlask1"] = { + "+4% to all maximum Elemental Resistances during Effect", + ["affix"] = "", + ["group"] = "FlaskMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "flask", + "elemental", + "resistance", + }, + ["statOrder"] = { + 774, + }, + ["tradeHashes"] = { + [4026156644] = { + "+4% to all maximum Elemental Resistances during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { + "Removes 80% of your maximum Energy Shield on use", + ["affix"] = "", + ["group"] = "FlaskRemovePercentageOfEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "flask", + "energy_shield", + }, + ["statOrder"] = { + 642, + }, + ["tradeHashes"] = { + [2917449574] = { + "Removes 80% of your maximum Energy Shield on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskStunImmunityUnique__1"] = { + "Cannot be Stunned during Effect", + ["affix"] = "", + ["group"] = "FlaskStunImmunity", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 740, + }, + ["tradeHashes"] = { + [3589217170] = { + "Cannot be Stunned during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { + "You take 50% of your maximum Life as Chaos Damage on use", + ["affix"] = "", + ["group"] = "FlaskTakeChaosDamagePercentageOfLife", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "flask", + "damage", + "chaos", + }, + ["statOrder"] = { + 643, + }, + ["tradeHashes"] = { + [2301696196] = { + "You take 50% of your maximum Life as Chaos Damage on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlaskZealotsOathUnique__1"] = { + "Life Recovery from Flasks also applies to Energy Shield during Effect", + "Zealot's Oath during Effect", + ["affix"] = "", + ["group"] = "FlaskZealotsOath", + ["level"] = 1, + ["modTags"] = { + "defences", + "flask", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 630, + 811, + }, + ["tradeHashes"] = { + [74462130] = { + "Life Recovery from Flasks also applies to Energy Shield during Effect", + }, + [851224302] = { + "Zealot's Oath during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlasksApplyToMinionsUnique__1"] = { + "Flasks you Use apply to your Raised Zombies and Spectres", + ["affix"] = "", + ["group"] = "FlasksApplyToMinions", + ["level"] = 1, + ["modTags"] = { + "flask", + "minion", + }, + ["statOrder"] = { + 3426, + }, + ["tradeHashes"] = { + [3127641775] = { + "Flasks you Use apply to your Raised Zombies and Spectres", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FlatEnergyShieldRegenerationUnique__1"] = { + "Regenerate (80-100) Energy Shield per second", + ["affix"] = "", + ["group"] = "FlatEnergyShieldRegenerationPerMinute", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2419, + }, + ["tradeHashes"] = { + [1330109706] = { + "Regenerate (80-100) Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { + "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", + ["affix"] = "", + ["group"] = "FortifyOnHitWithMeleeAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7706, + }, + ["tradeHashes"] = { + [186482813] = { + "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FortifyOnMeleeHitUniqueJewel22"] = { + "Melee Hits have 10% chance to Fortify", + ["affix"] = "", + ["group"] = "FortifyOnMeleeHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2014, + }, + ["tradeHashes"] = { + [1166417447] = { + "Melee Hits have 10% chance to Fortify", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FortifyOnMeleeStunUnique__1"] = { + "Melee Hits which Stun Fortify", + ["affix"] = "", + ["group"] = "FortifyOnMeleeStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5516, + }, + ["tradeHashes"] = { + [3206381437] = { + "Melee Hits which Stun Fortify", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FreezeChanceAndDurationJewel"] = { + "(3-5)% chance to Freeze", + "(12-16)% increased Freeze Duration on Enemies", + ["affix"] = "of Freezing", + ["group"] = "FreezeChanceAndDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1056, + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "(12-16)% increased Freeze Duration on Enemies", + }, + [2309614417] = { + "(3-5)% chance to Freeze", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["FreezeChillDurationUnique__1"] = { + "10000% increased Chill Duration on Enemies", + "10000% increased Freeze Duration on Enemies", + ["affix"] = "", + ["group"] = "ChillAndFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "10000% increased Freeze Duration on Enemies", + }, + [3485067555] = { + "10000% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FreezeDurationJewel"] = { + "(12-16)% increased Chill and Freeze Duration on Enemies", + ["affix"] = "of the Glacier", + ["group"] = "FreezeDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5642, + }, + ["tradeHashes"] = { + [1308198396] = { + "(12-16)% increased Chill and Freeze Duration on Enemies", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["FreezeDurationOnSelfUnique__1"] = { + "10000% increased Freeze Duration on you", + ["affix"] = "", + ["group"] = "ReducedFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "10000% increased Freeze Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FreezeDurationUniqueGlovesStrInt3"] = { + "100% increased Freeze Duration on Enemies", + ["affix"] = "", + ["group"] = "ChillAndFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "100% increased Freeze Duration on Enemies", + }, + [3485067555] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FreezeDurationUnique__1"] = { + "25% increased Freeze Duration on Enemies", + ["affix"] = "", + ["group"] = "ChillAndFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "25% increased Freeze Duration on Enemies", + }, + [3485067555] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeDurationJewel"] = { + "(10-14)% increased Frenzy Charge Duration", + ["affix"] = "of Frenzy", + ["group"] = "FrenzyChargeDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1866, + }, + ["tradeHashes"] = { + [3338298622] = { + "(10-14)% increased Frenzy Charge Duration", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["FrenzyChargeDurationUniqueBootsStrDex2"] = { + "40% reduced Frenzy Charge Duration", + ["affix"] = "", + ["group"] = "FrenzyChargeDuration", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1866, + }, + ["tradeHashes"] = { + [3338298622] = { + "40% reduced Frenzy Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeDurationUnique__1"] = { + "20% reduced Frenzy Charge Duration", + ["affix"] = "", + ["group"] = "FrenzyChargeDuration", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1866, + }, + ["tradeHashes"] = { + [3338298622] = { + "20% reduced Frenzy Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { + "Gain a Frenzy Charge on Hit while Bleeding", + ["affix"] = "", + ["group"] = "FrenzyChargeOnHitWhileBleeding", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 6794, + }, + ["tradeHashes"] = { + [2977774856] = { + "Gain a Frenzy Charge on Hit while Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { + "Gain a Frenzy Charge if an Attack Ignites an Enemy", + ["affix"] = "", + ["group"] = "FrenzyChargeOnIgnite", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2593, + }, + ["tradeHashes"] = { + [3598983877] = { + "Gain a Frenzy Charge if an Attack Ignites an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceProphecy"] = { + "30% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "30% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { + "10% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 20, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "10% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { + "(20-30)% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "(20-30)% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { + "33% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "33% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceUnique__1"] = { + "15% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "15% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargeOnKillChanceUnique__2"] = { + "25% chance to gain a Frenzy Charge on kill", + ["affix"] = "", + ["group"] = "FrenzyChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 2405, + }, + ["tradeHashes"] = { + [1826802197] = { + "25% chance to gain a Frenzy Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrenzyChargePer50RampageStacksUnique__1"] = { + "Gain a Frenzy Charge on every 50th Rampage Kill", + ["affix"] = "", + ["group"] = "FrenzyChargePer50RampageStacks", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 4037, + }, + ["tradeHashes"] = { + [637690626] = { + "Gain a Frenzy Charge on every 50th Rampage Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrostbiteReservationCostUnique__1"] = { + "Frostbite has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "FrostbiteNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 6688, + }, + ["tradeHashes"] = { + [3062707366] = { + "Frostbite has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrozenMonstersTakeIncreasedDamage"] = { + "Enemies Frozen by you take 20% increased Damage", + ["affix"] = "", + ["group"] = "FrozenMonstersTakeIncreasedDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2244, + }, + ["tradeHashes"] = { + [849085925] = { + "Enemies Frozen by you take 20% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { + "Enemies Frozen by you take 20% increased Damage", + ["affix"] = "", + ["group"] = "FrozenMonstersTakeIncreasedDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2244, + }, + ["tradeHashes"] = { + [849085925] = { + "Enemies Frozen by you take 20% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { + "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", + ["affix"] = "", + ["group"] = "GainARandomChargePerSecondWhileStationary", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 6853, + }, + ["tradeHashes"] = { + [1438403666] = { + "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainArmourIfBlockedRecentlyUnique__1"] = { + "+(1500-3000) Armour if you've Blocked Recently", + ["affix"] = "", + ["group"] = "GainArmourIfBlockedRecently", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 4106, + }, + ["tradeHashes"] = { + [4091848539] = { + "+(1500-3000) Armour if you've Blocked Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainDebilitatingPresenceUnique__1"] = { + "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", + ["affix"] = "", + ["group"] = "GainDebilitatingPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10637, + }, + ["tradeHashes"] = { + [3442107889] = { + "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainDivinityOnMaxDivineChargeUnique__1"] = { + "You gain Divinity for 10 seconds on reaching maximum Divine Charges", + "Lose all Divine Charges when you gain Divinity", + ["affix"] = "", + ["group"] = "GainDivinityOnMaxDivineCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4051, + 4051.1, + }, + ["tradeHashes"] = { + [1174243390] = { + "You gain Divinity for 10 seconds on reaching maximum Divine Charges", + "Lose all Divine Charges when you gain Divinity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { + "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", + ["affix"] = "", + ["group"] = "GainESWhenSpiritChargeExpiresOrConsumed", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 4047, + }, + ["tradeHashes"] = { + [1996775727] = { + "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainEnduranceChargeWhenCriticallyHit"] = { + "Gain an Endurance Charge when you take a Critical Hit", + ["affix"] = "", + ["group"] = "GainEnduranceChargeWhenCriticallyHit", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "critical", + }, + ["statOrder"] = { + 1590, + }, + ["tradeHashes"] = { + [2609824731] = { + "Gain an Endurance Charge when you take a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { + "+(200-250) Energy Shield gained on killing a Shocked enemy", + ["affix"] = "", + ["group"] = "GainEnergyShieldOnKillShockedEnemy", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2354, + }, + ["tradeHashes"] = { + [347328113] = { + "+(200-250) Energy Shield gained on killing a Shocked enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { + "+(90-120) Energy Shield gained on killing a Shocked enemy", + ["affix"] = "", + ["group"] = "GainEnergyShieldOnKillShockedEnemy", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2354, + }, + ["tradeHashes"] = { + [347328113] = { + "+(90-120) Energy Shield gained on killing a Shocked enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { + "Recover 50 Energy Shield when your Trap is triggered by an Enemy", + ["affix"] = "", + ["group"] = "GainEnergyShieldOnTrapTriggered", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 3893, + }, + ["tradeHashes"] = { + [1073384532] = { + "Recover 50 Energy Shield when your Trap is triggered by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainFrenzyChargeOnCriticalHit"] = { + "Gain a Frenzy Charge on Critical Hit", + ["affix"] = "", + ["group"] = "FrenzyChargeOnCriticalHit", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + "critical", + }, + ["statOrder"] = { + 1583, + }, + ["tradeHashes"] = { + [398702949] = { + "Gain a Frenzy Charge on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { + "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", + ["affix"] = "", + ["group"] = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 6798, + }, + ["tradeHashes"] = { + [496822696] = { + "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { + "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", + ["affix"] = "", + ["group"] = "GainFrenzyChargeOnTrapTriggered", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 3281, + }, + ["tradeHashes"] = { + [3738335639] = { + "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnBlockUniqueAmulet16"] = { + "(34-48) Life gained when you Block", + ["affix"] = "", + ["group"] = "GainLifeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1519, + }, + ["tradeHashes"] = { + [762600725] = { + "(34-48) Life gained when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnBlockUnique__1"] = { + "Recover (250-500) Life when you Block", + ["affix"] = "", + ["group"] = "RecoverLifeOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 1522, + }, + ["tradeHashes"] = { + [1678831767] = { + "Recover (250-500) Life when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnIgnitingEnemyUnique__1"] = { + "Recover (40-60) Life when you Ignite an Enemy", + ["affix"] = "", + ["group"] = "GainLifeOnIgnitingEnemy", + ["level"] = 81, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 9679, + }, + ["tradeHashes"] = { + [4045269075] = { + "Recover (40-60) Life when you Ignite an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnIgnitingEnemyUnique__2"] = { + "Recover (20-30) Life when you Ignite an Enemy", + ["affix"] = "", + ["group"] = "GainLifeOnIgnitingEnemy", + ["level"] = 36, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 9679, + }, + ["tradeHashes"] = { + [4045269075] = { + "Recover (20-30) Life when you Ignite an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnTrapTriggeredUnique__1"] = { + "Recover 100 Life when your Trap is triggered by an Enemy", + ["affix"] = "", + ["group"] = "GainLifeOnTrapTriggered", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3892, + }, + ["tradeHashes"] = { + [3952196842] = { + "Recover 100 Life when your Trap is triggered by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeOnTrapTriggeredUnique__2__"] = { + "Recover (20-30) Life when your Trap is triggered by an Enemy", + ["affix"] = "", + ["group"] = "GainLifeOnTrapTriggered", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3892, + }, + ["tradeHashes"] = { + [3952196842] = { + "Recover (20-30) Life when your Trap is triggered by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { + "Recover (2-3)% of maximum Life when you lose a Spirit Charge", + ["affix"] = "", + ["group"] = "GainLifeWhenSpiritChargeExpiresOrConsumed", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 4046, + }, + ["tradeHashes"] = { + [305634887] = { + "Recover (2-3)% of maximum Life when you lose a Spirit Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainManaAsExtraEnergyShieldUnique__1"] = { + "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "GainManaAsExtraEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1431, + }, + ["tradeHashes"] = { + [3027830452] = { + "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainManaOnBlockUniqueAmulet16"] = { + "(18-24) Mana gained when you Block", + ["affix"] = "", + ["group"] = "GainManaOnBlock", + ["level"] = 57, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(18-24) Mana gained when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainManaOnBlockUnique__1"] = { + "(30-50) Mana gained when you Block", + ["affix"] = "", + ["group"] = "GainManaOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(30-50) Mana gained when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { + "+(20-25) Mana gained on Killing a Frozen Enemy", + ["affix"] = "", + ["group"] = "GainManaOnKillingFrozenEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 9681, + }, + ["tradeHashes"] = { + [3304801725] = { + "+(20-25) Mana gained on Killing a Frozen Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { + "You gain Onslaught for 3 seconds on Culling Strike", + ["affix"] = "", + ["group"] = "GainOnslaughtOnCull", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2763, + }, + ["tradeHashes"] = { + [3818161429] = { + "You gain Onslaught for 3 seconds on Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainPhasingIfKilledRecentlyUnique__1"] = { + "You have Phasing if you've Killed Recently", + ["affix"] = "", + ["group"] = "GainPhasingIfKilledRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6837, + }, + ["tradeHashes"] = { + [3489372920] = { + "You have Phasing if you've Killed Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { + "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", + ["affix"] = "", + ["group"] = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 6846, + }, + ["tradeHashes"] = { + [352612932] = { + "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { + "Gain a Power Charge on killing a Frozen enemy", + ["affix"] = "", + ["group"] = "GainPowerChargeOnKillingFrozenEnemy", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1579, + }, + ["tradeHashes"] = { + [3607154250] = { + "Gain a Power Charge on killing a Frozen enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainSpiritChargeEverySecondUnique__1"] = { + "Gain a Spirit Charge every second", + ["affix"] = "", + ["group"] = "GainSpiritChargeEverySecond", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4043, + }, + ["tradeHashes"] = { + [328131617] = { + "Gain a Spirit Charge every second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainSpiritChargeOnKillChanceUnique__1"] = { + "Gain a Spirit Charge on Kill", + ["affix"] = "", + ["group"] = "GainSpiritChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4044, + }, + ["tradeHashes"] = { + [570644802] = { + "Gain a Spirit Charge on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GainThaumaturgyBuffRotationUnique__1_"] = { + "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", + ["affix"] = "", + ["group"] = "GainThaumaturgyBuffRotation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10248, + }, + ["tradeHashes"] = { + [2918150296] = { + "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GenerateEnduranceChargesForAlliesInPresence"] = { + "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", + ["affix"] = "", + ["group"] = "GenerateEnduranceChargesForAlliesInPresence", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 2010, + }, + ["tradeHashes"] = { + [1881314095] = { + "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GhostflameOnHitUnique__1"] = { + "Attack Hits inflict Spectral Fire for 8 seconds", + ["affix"] = "", + ["group"] = "GhostflameOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6894, + }, + ["tradeHashes"] = { + [33298888] = { + "Attack Hits inflict Spectral Fire for 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlimpseOfEternityWhenHitUnique__1"] = { + "Trigger Level 20 Glimpse of Eternity when Hit", + ["affix"] = "", + ["group"] = "GlimpseOfEternityWhenHit", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 601, + }, + ["tradeHashes"] = { + [3141831683] = { + "Trigger Level 20 Glimpse of Eternity when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__1"] = { + "Adds (17-19) to (23-29) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (17-19) to (23-29) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__2"] = { + "Adds (50-55) to (72-80) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (50-55) to (72-80) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__3"] = { + "Adds (50-55) to (72-80) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (50-55) to (72-80) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__4__"] = { + "Adds (48-53) to (58-60) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (48-53) to (58-60) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__5_"] = { + "Adds (15-20) to (21-30) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (15-20) to (21-30) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedChaosDamageUnique__6_"] = { + "Adds (17-23) to (29-31) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (17-23) to (29-31) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedColdDamageUnique__1"] = { + "Adds (20-24) to (33-36) Cold Damage", + ["affix"] = "", + ["group"] = "GlobalAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1275, + }, + ["tradeHashes"] = { + [2387423236] = { + "Adds (20-24) to (33-36) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedColdDamageUnique__2_"] = { + "Adds (20-23) to (31-35) Cold Damage", + ["affix"] = "", + ["group"] = "GlobalAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1275, + }, + ["tradeHashes"] = { + [2387423236] = { + "Adds (20-23) to (31-35) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedColdDamageUnique__3"] = { + "Adds (20-25) to (26-35) Cold Damage", + ["affix"] = "", + ["group"] = "GlobalAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1275, + }, + ["tradeHashes"] = { + [2387423236] = { + "Adds (20-25) to (26-35) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedColdDamageUnique__4"] = { + "Adds (16-19) to (25-29) Cold Damage", + ["affix"] = "", + ["group"] = "GlobalAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1275, + }, + ["tradeHashes"] = { + [2387423236] = { + "Adds (16-19) to (25-29) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedFireDamageUnique__1"] = { + "Adds (20-24) to (33-36) Fire Damage", + ["affix"] = "", + ["group"] = "GlobalAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1269, + }, + ["tradeHashes"] = { + [321077055] = { + "Adds (20-24) to (33-36) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedFireDamageUnique__2"] = { + "Adds (22-27) to (34-38) Fire Damage", + ["affix"] = "", + ["group"] = "GlobalAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1269, + }, + ["tradeHashes"] = { + [321077055] = { + "Adds (22-27) to (34-38) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedFireDamageUnique__3_"] = { + "Adds (20-25) to (26-35) Fire Damage", + ["affix"] = "", + ["group"] = "GlobalAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1269, + }, + ["tradeHashes"] = { + [321077055] = { + "Adds (20-25) to (26-35) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedFireDamageUnique__4"] = { + "Adds (16-19) to (25-29) Fire Damage", + ["affix"] = "", + ["group"] = "GlobalAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1269, + }, + ["tradeHashes"] = { + [321077055] = { + "Adds (16-19) to (25-29) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedLightningDamageUnique__1_"] = { + "Adds (10-13) to (43-47) Lightning Damage", + ["affix"] = "", + ["group"] = "GlobalAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1283, + }, + ["tradeHashes"] = { + [1334060246] = { + "Adds (10-13) to (43-47) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedLightningDamageUnique__2_"] = { + "Adds (1-3) to (47-52) Lightning Damage", + ["affix"] = "", + ["group"] = "GlobalAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1283, + }, + ["tradeHashes"] = { + [1334060246] = { + "Adds (1-3) to (47-52) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedLightningDamageUnique__3"] = { + "Adds 1 to (48-60) Lightning Damage", + ["affix"] = "", + ["group"] = "GlobalAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1283, + }, + ["tradeHashes"] = { + [1334060246] = { + "Adds 1 to (48-60) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedLightningDamageUnique__4"] = { + "Adds (6-10) to (33-38) Lightning Damage", + ["affix"] = "", + ["group"] = "GlobalAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1283, + }, + ["tradeHashes"] = { + [1334060246] = { + "Adds (6-10) to (33-38) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedPhysicalDamageUnique__1_"] = { + "Adds (12-16) to (20-25) Physical Damage", + ["affix"] = "", + ["group"] = "GlobalAddedPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1207, + }, + ["tradeHashes"] = { + [960081730] = { + "Adds (12-16) to (20-25) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalAddedPhysicalDamageUnique__2"] = { + "Adds (8-10) to (13-15) Physical Damage", + ["affix"] = "", + ["group"] = "GlobalAddedPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1207, + }, + ["tradeHashes"] = { + [960081730] = { + "Adds (8-10) to (13-15) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { + "10% Global chance to Blind Enemies on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBlindOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2703, + }, + ["tradeHashes"] = { + [2221570601] = { + "10% Global chance to Blind Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalCooldownRecoveryUnique__1"] = { + "(15-20)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(15-20)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalCooldownRecoveryUnique__2"] = { + "(15-30)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(15-30)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { + "+50% Global Critical Damage Bonus while you have no Frenzy Charges", + ["affix"] = "", + ["group"] = "GlobalCriticalMultiplierWithNoFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1790, + }, + ["tradeHashes"] = { + [3062763405] = { + "+50% Global Critical Damage Bonus while you have no Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { + "60% increased Critical Hit Chance against Chilled Enemies", + ["affix"] = "", + ["group"] = "GlobalCriticalStrikeChanceAgainstChilled", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 6902, + }, + ["tradeHashes"] = { + [3699490848] = { + "60% increased Critical Hit Chance against Chilled Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { + "Equipment and Skill Gems have 25% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 20, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 25% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { + "Equipment and Skill Gems have 10% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 45, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 10% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalItemAttributeRequirementsUnique__1_"] = { + "Equipment and Skill Gems have 100% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 100% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GlobalItemAttributeRequirementsUnique__2"] = { + "Equipment and Skill Gems have 50% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 50% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GluttonyOfElementsUniqueAmulet23"] = { + "Grants Level 10 Gluttony of Elements Skill", + ["affix"] = "", + ["group"] = "DisplayGluttonyOfElements", + ["level"] = 7, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 479, + }, + ["tradeHashes"] = { + [3321235265] = { + "Grants Level 10 Gluttony of Elements Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GoatHoofFootprintsUnique__1"] = { + "Burning Hoofprints", + ["affix"] = "", + ["group"] = "GoatHoofFootprints", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10756, + }, + ["tradeHashes"] = { + [3576153145] = { + "Burning Hoofprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GoldenLightBeam"] = { + "Golden Radiance", + ["affix"] = "", + ["group"] = "GoldenLightBeam", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2276, + }, + ["tradeHashes"] = { + [3636414626] = { + "Golden Radiance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemArmourRatingUnique__1"] = { + "Golems have +(800-1000) to Armour", + ["affix"] = "", + ["group"] = "GolemArmourRatingUnique", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "minion", + }, + ["statOrder"] = { + 6926, + }, + ["tradeHashes"] = { + [1020786773] = { + "Golems have +(800-1000) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemAttackAndCastSpeedUnique__1"] = { + "Golems have (16-20)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "GolemAttackAndCastSpeedUnique", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 6918, + }, + ["tradeHashes"] = { + [56225773] = { + "Golems have (16-20)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemBuffEffectUnique__1"] = { + "30% increased Effect of Buffs granted by your Golems", + ["affix"] = "", + ["group"] = "GolemBuffEffectUnique", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6920, + }, + ["tradeHashes"] = { + [2109043683] = { + "30% increased Effect of Buffs granted by your Golems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemLargerAggroRadiusUnique__1"] = { + "Summoned Golems are Aggressive", + ["affix"] = "", + ["group"] = "GolemLargerAggroRadius", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10657, + }, + ["tradeHashes"] = { + [3630426972] = { + "Summoned Golems are Aggressive", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemLifeRegenerationUnique__1"] = { + "Summoned Golems Regenerate 2% of their maximum Life per second", + ["affix"] = "", + ["group"] = "GolemLifeRegenerationUnique", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 6922, + }, + ["tradeHashes"] = { + [2235163762] = { + "Summoned Golems Regenerate 2% of their maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemLifeUnique__1"] = { + "Golems have (18-22)% increased Maximum Life", + ["affix"] = "", + ["group"] = "GolemLifeUnique", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 6923, + }, + ["tradeHashes"] = { + [1750735210] = { + "Golems have (18-22)% increased Maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemPerPrimordialJewel"] = { + "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", + ["affix"] = "", + ["group"] = "GolemPerPrimordialJewel", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9337, + }, + ["tradeHashes"] = { + [920385757] = { + "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemSkillsCooldownRecoveryUnique__1"] = { + "Golem Skills have (20-30)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GolemSkillsCooldownRecoveryUnique", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3036, + }, + ["tradeHashes"] = { + [729180395] = { + "Golem Skills have (20-30)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GolemsSkillsCooldownRecoveryUnique__1_"] = { + "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GolemsSkillsCooldownRecoveryUnique", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3037, + }, + ["tradeHashes"] = { + [3246099900] = { + "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { + "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", + ["affix"] = "", + ["group"] = "GrantAlliesFrenzyChargeOnHit", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 5542, + }, + ["tradeHashes"] = { + [991168463] = { + "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantAlliesPowerChargeOnKillUnique__1"] = { + "10% chance to grant a Power Charge to nearby Allies on Kill", + ["affix"] = "", + ["group"] = "GrantAlliesPowerChargeOnKill", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 3084, + }, + ["tradeHashes"] = { + [2367680009] = { + "10% chance to grant a Power Charge to nearby Allies on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantAviansAspectToAlliesUnique__1"] = { + "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", + ["affix"] = "", + ["group"] = "GrantAviansAspectToAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4460, + }, + ["tradeHashes"] = { + [2544408546] = { + "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantCursePillarSkillUnique"] = { + "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", + ["affix"] = "", + ["group"] = "GrantCursePillarSkillUnique", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 503, + 503.1, + 503.2, + 503.3, + }, + ["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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantCursePillarSkillUnique__"] = { + "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", + ["affix"] = "", + ["group"] = "GrantCursePillarSkillUnique__", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 504, + 504.1, + 504.2, + }, + ["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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantEnemiesOnslaughtOnKillUnique__1"] = { + "5% chance to grant Onslaught to nearby Enemies on Kill", + ["affix"] = "", + ["group"] = "GrantEnemiesOnslaughtOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3083, + }, + ["tradeHashes"] = { + [1924591908] = { + "5% chance to grant Onslaught to nearby Enemies on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsAccuracyAuraSkillUnique__1"] = { + "Grants Level 30 Precision Skill", + ["affix"] = "", + ["group"] = "AccuracyAuraSkill", + ["level"] = 81, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 507, + }, + ["tradeHashes"] = { + [2721815210] = { + "Grants Level 30 Precision Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsAvianTornadoUnique__1__"] = { + "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", + ["affix"] = "", + ["group"] = "GrantsAvianTornado", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 580, + }, + ["tradeHashes"] = { + [2554328719] = { + "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsBearTrapUniqueShieldDexInt1"] = { + "Grants Level 25 Bear Trap Skill", + ["affix"] = "", + ["group"] = "BearTrapSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 461, + }, + ["tradeHashes"] = { + [3541114083] = { + "Grants Level 25 Bear Trap Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsBirdAspect1_"] = { + "Grants Level 20 Aspect of the Avian Skill", + ["affix"] = "", + ["group"] = "GrantsBirdAspect", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 508, + }, + ["tradeHashes"] = { + [3914740665] = { + "Grants Level 20 Aspect of the Avian Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsCatAspect1"] = { + "Grants Level 20 Aspect of the Cat Skill", + ["affix"] = "", + ["group"] = "GrantsCatAspect", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 512, + }, + ["tradeHashes"] = { + [1265282021] = { + "Grants Level 20 Aspect of the Cat Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsCrabAspect1_"] = { + "Grants Level 20 Aspect of the Crab Skill", + ["affix"] = "", + ["group"] = "GrantsCrabAspect", + ["level"] = 1, + ["modTags"] = { + "blue_herring", + "skill", + }, + ["statOrder"] = { + 513, + }, + ["tradeHashes"] = { + [4102318278] = { + "Grants Level 20 Aspect of the Crab Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsDarktongueKissUnique__1"] = { + "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", + ["affix"] = "", + ["group"] = "GrantsDarktongueKiss", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 540, + }, + ["tradeHashes"] = { + [3670477918] = { + "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsEnvyUnique__1"] = { + "Grants Level 25 Envy Skill", + ["affix"] = "", + ["group"] = "GrantsEnvy", + ["level"] = 87, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 488, + }, + ["tradeHashes"] = { + [52953650] = { + "Grants Level 25 Envy Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsEnvyUnique__2"] = { + "Grants Level 15 Envy Skill", + ["affix"] = "", + ["group"] = "GrantsEnvy", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 488, + }, + ["tradeHashes"] = { + [52953650] = { + "Grants Level 15 Envy Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsIntimidatingCry1"] = { + "Grants Level 20 Intimidating Cry Skill", + ["affix"] = "", + ["group"] = "GrantsIntimidatingCry", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 524, + }, + ["tradeHashes"] = { + [989878105] = { + "Grants Level 20 Intimidating Cry Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsLevel12StoneGolem"] = { + "Grants Level 12 Summon Stone Golem Skill", + ["affix"] = "", + ["group"] = "GrantsStoneGolemSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 462, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3056188914] = { + "Grants Level 12 Summon Stone Golem Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsLevel20BoneNovaTriggerUnique__1"] = { + "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", + ["affix"] = "", + ["group"] = "GrantsLevel20BoneNovaTrigger", + ["level"] = 1, + ["modTags"] = { + "skill", + "attack", + }, + ["statOrder"] = { + 553, + }, + ["tradeHashes"] = { + [2634885412] = { + "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { + "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", + ["affix"] = "", + ["group"] = "GrantsLevel20IcicleNovaTrigger", + ["level"] = 1, + ["modTags"] = { + "skill", + "attack", + }, + ["statOrder"] = { + 590, + }, + ["tradeHashes"] = { + [1357672429] = { + "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsLevel30ReckoningUnique__1"] = { + "Grants Level 30 Reckoning Skill", + ["affix"] = "", + ["group"] = "GrantsLevel30Reckoning", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 489, + }, + ["tradeHashes"] = { + [2434330144] = { + "Grants Level 30 Reckoning Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsPurityOfFireUnique__1"] = { + "Grants Level 25 Purity of Fire Skill", + ["affix"] = "", + ["group"] = "PurityOfFireSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 459, + }, + ["tradeHashes"] = { + [3970432307] = { + "Grants Level 25 Purity of Fire Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsPurityOfIceUnique__1"] = { + "Grants Level 25 Purity of Ice Skill", + ["affix"] = "", + ["group"] = "PurityOfColdSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 465, + }, + ["tradeHashes"] = { + [4193390599] = { + "Grants Level 25 Purity of Ice Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsPurityOfLightningUnique__1"] = { + "Grants Level 25 Purity of Lightning Skill", + ["affix"] = "", + ["group"] = "PurityOfLightningSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 467, + }, + ["tradeHashes"] = { + [3822878124] = { + "Grants Level 25 Purity of Lightning Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsSpiderAspect1"] = { + "Grants Level 20 Aspect of the Spider Skill", + ["affix"] = "", + ["group"] = "GrantsSpiderAspect", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 531, + }, + ["tradeHashes"] = { + [956546305] = { + "Grants Level 20 Aspect of the Spider Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsSummonBeastRhoaUnique__1"] = { + "Grants Level 20 Summon Bestial Rhoa Skill", + ["affix"] = "", + ["group"] = "GrantsSummonBeast", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 466, + }, + ["tradeHashes"] = { + [2878779644] = { + "Grants Level 20 Summon Bestial Rhoa Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsSummonBeastSnakeUnique__1"] = { + "Grants Level 20 Summon Bestial Snake Skill", + ["affix"] = "", + ["group"] = "GrantsSummonBeast", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 466, + }, + ["tradeHashes"] = { + [2878779644] = { + "Grants Level 20 Summon Bestial Snake Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsSummonBeastUrsaUnique__1"] = { + "Grants Level 20 Summon Bestial Ursa Skill", + ["affix"] = "", + ["group"] = "GrantsSummonBeast", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 466, + }, + ["tradeHashes"] = { + [2878779644] = { + "Grants Level 20 Summon Bestial Ursa Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsTouchOfGodUnique__1"] = { + "Grants Level 20 Doryani's Touch Skill", + ["affix"] = "", + ["group"] = "GrantsTouchOfGod", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 493, + }, + ["tradeHashes"] = { + [2498303876] = { + "Grants Level 20 Doryani's Touch Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsVaalPurityOfFireUnique__1"] = { + "Grants Level 25 Vaal Impurity of Fire Skill", + ["affix"] = "", + ["group"] = "VaalPurityOfFireSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 534, + }, + ["tradeHashes"] = { + [2700934265] = { + "Grants Level 25 Vaal Impurity of Fire Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsVaalPurityOfIceUnique__1"] = { + "Grants Level 25 Vaal Impurity of Ice Skill", + ["affix"] = "", + ["group"] = "VaalPurityOfIceSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 535, + }, + ["tradeHashes"] = { + [1300125165] = { + "Grants Level 25 Vaal Impurity of Ice Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsVaalPurityOfLightningUnique__1"] = { + "Grants Level 25 Vaal Impurity of Lightning Skill", + ["affix"] = "", + ["group"] = "VaalPurityOfLightningSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 536, + }, + ["tradeHashes"] = { + [2959369472] = { + "Grants Level 25 Vaal Impurity of Lightning Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GrantsVoidGazeUnique__1"] = { + "Trigger Level 10 Void Gaze when you use a Skill", + ["affix"] = "", + ["group"] = "GrantsVoidGaze", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 541, + }, + ["tradeHashes"] = { + [1869144397] = { + "Trigger Level 10 Void Gaze when you use a Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GroundSlamThresholdUnique__1"] = { + "With at least 40 Strength in Radius, Ground Slam", + "has a 50% increased angle", + ["affix"] = "", + ["group"] = "GroundSlamThreshold", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2969, + 2969.1, + }, + ["tradeHashes"] = { + [156016608] = { + "With at least 40 Strength in Radius, Ground Slam", + "has a 50% increased angle", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GroundSlamThresholdUnique__2"] = { + "With at least 40 Strength in Radius, Ground Slam has a 35% chance", + "to grant an Endurance Charge when you Stun an Enemy", + ["affix"] = "", + ["group"] = "GroundSlamThreshold2", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2968, + 2968.1, + }, + ["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", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { + "Creates a Smoke Cloud on Rampage", + ["affix"] = "", + ["group"] = "GroundSmokeOnRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2712, + }, + ["tradeHashes"] = { + [3321583955] = { + "Creates a Smoke Cloud on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GroundTarOnCritTakenUniqueShieldInt2"] = { + "Spreads Tar when you take a Critical Hit", + ["affix"] = "", + ["group"] = "GroundTarOnCritTaken", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2291, + }, + ["tradeHashes"] = { + [927458676] = { + "Spreads Tar when you take a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["GroundTarOnHitTakenUnique__1"] = { + "20% chance to spread Tar when Hit", + ["affix"] = "", + ["group"] = "GroundTarOnHitTaken", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 6949, + }, + ["tradeHashes"] = { + [1981078074] = { + "20% chance to spread Tar when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1"] = { + "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", + ["affix"] = "", + ["group"] = "AddedColdDamageWhileUnarmed", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 3966, + }, + ["tradeHashes"] = { + [1247498990] = { + "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { + "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseUnarmedCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3255, + }, + ["tradeHashes"] = { + [3613173483] = { + "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsDemigodIncreasedSkillSpeed1"] = { + "15% increased Attack Speed if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "AttackSpeedIfCriticalStrikeDealtRecently", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4566, + }, + ["tradeHashes"] = { + [1585344030] = { + "15% increased Attack Speed if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { + "Has +3 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "", + ["group"] = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +3 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + "Has +1 to maximum Runic Ward per player level", + ["affix"] = "", + ["group"] = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + 847, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [298264758] = { + "Has +1 to maximum Runic Ward per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedChaosDamage5"] = { + "Attacks Gain (17-23)% of Damage as extra Chaos Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + "attack", + }, + ["statOrder"] = { + 9241, + }, + ["tradeHashes"] = { + [1288439911] = { + "Attacks Gain (17-23)% of Damage as extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedColdDamage1"] = { + "Attacks Gain (10-15)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (10-15)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedLightningDamage3"] = { + "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9265, + }, + ["tradeHashes"] = { + [318492616] = { + "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedPhysicalDamage2"] = { + "Attacks Gain (11-15)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (11-15)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedPhysicalDamage3"] = { + "Attacks Gain (10-15)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (10-15)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAddedPhysicalDamage4"] = { + "Attacks Gain (10-15)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 862, + }, + ["tradeHashes"] = { + [2707870225] = { + "Attacks Gain (10-15)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAllDamageCanPoison1"] = { + "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", + ["affix"] = "", + ["group"] = "PoisonMagnitudeFromCriticalHits", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "critical", + "ailment", + }, + ["statOrder"] = { + 5820, + }, + ["tradeHashes"] = { + [1692314789] = { + "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAttackAndCastSpeed1"] = { + "(10-15)% reduced Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(10-15)% reduced Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueAttackerTakesDamage8"] = { + "(24-35) to (36-57) Cold Thorns damage", + ["affix"] = "", + ["group"] = "ThornsColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 10258, + }, + ["tradeHashes"] = { + [1515531208] = { + "(24-35) to (36-57) Cold Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueBaseChanceToPoison1"] = { + "(20-30)% increased Magnitude of Chill you inflict", + ["affix"] = "", + ["group"] = "ChillEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5647, + }, + ["tradeHashes"] = { + [828179689] = { + "(20-30)% increased Magnitude of Chill you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueBaseChanceToPoison2"] = { + "Critical Hits Poison the enemy", + ["affix"] = "", + ["group"] = "PoisonOnCrit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 9502, + }, + ["tradeHashes"] = { + [62849030] = { + "Critical Hits Poison the enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { + "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", + ["affix"] = "", + ["group"] = "FacebreakerBaseUnarmedDamageOverrideFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 829, + }, + ["tradeHashes"] = { + [1955786041] = { + "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCannotImmobilise1"] = { + "Your Hits cannot Stun enemies", + ["affix"] = "", + ["group"] = "CannotStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1611, + }, + ["tradeHashes"] = { + [373932729] = { + "Your Hits cannot Stun enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueChaosResist35"] = { + "+2% to Maximum Chaos Resistance", + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+2% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueChaosResist6"] = { + "+1% to Maximum Chaos Resistance", + "+(7-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + 1024, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + [2923486259] = { + "+(7-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueChillEffect1"] = { + "All Damage from Hits Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "AllDamageCanChill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2614, + }, + ["tradeHashes"] = { + [3833160777] = { + "All Damage from Hits Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueChillImmunityWhenChilled1"] = { + "(15-20)% more damage taken while Cursed", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenWhileCursed", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 6958, + }, + ["tradeHashes"] = { + [276406225] = { + "(15-20)% more damage taken while Cursed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdDamagePercent2"] = { + "Attacks Gain (4-7)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (4-7)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdResist1"] = { + "(30-50)% increased Chill Duration on you", + ["affix"] = "", + ["group"] = "ReducedChillDurationOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(30-50)% increased Chill Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdResist24"] = { + "+(2-3)% to Maximum Cold Resistance", + "+(15-25)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(2-3)% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(15-25)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdResist25"] = { + "(30-50)% chance to gain Volatility on Kill", + ["affix"] = "", + ["group"] = "VolatilityOnKillChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10484, + }, + ["tradeHashes"] = { + [3749502527] = { + "(30-50)% chance to gain Volatility on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdResist30"] = { + "+2% to Maximum Cold Resistance", + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueColdResist9"] = { + "Gain (10-20)% of Fire damage as Extra Lightning damage", + ["affix"] = "", + ["group"] = "FireDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1685, + }, + ["tradeHashes"] = { + [387148449] = { + "Gain (10-20)% of Fire damage as Extra Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalMultiplier1"] = { + "(15-20)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(15-20)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalMultiplier2"] = { + "+(1.5-2)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(1.5-2)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalMultiplier3"] = { + "+(1-2)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1355, + }, + ["tradeHashes"] = { + [1909401378] = { + "+(1-2)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalStrikeChance14"] = { + "(40-60)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(40-60)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalStrikeChance5"] = { + "(20-30)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(20-30)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { + "Critical Hit chance for Attacks is (25-40)%", + ["affix"] = "", + ["group"] = "AttackCritChanceOverride", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 4502, + }, + ["tradeHashes"] = { + [3998836319] = { + "Critical Hit chance for Attacks is (25-40)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { + "(25-35)% increased Thorns Critical Damage Bonus", + ["affix"] = "", + ["group"] = "ThornsCriticalDamage", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 4759, + }, + ["tradeHashes"] = { + [1094302125] = { + "(25-35)% increased Thorns Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueCullingStrike1"] = { + "Culling Strike", + ["affix"] = "", + ["group"] = "CullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1775, + }, + ["tradeHashes"] = { + [2524254339] = { + "Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDecimatingStrike1"] = { + "Deal Double Damage to Enemies that are on Full Life", + ["affix"] = "", + ["group"] = "DoubleDamageToFullLifeEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6086, + }, + ["tradeHashes"] = { + [231543702] = { + "Deal Double Damage to Enemies that are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDexterity10"] = { + "+(20-40)% Surpassing chance to fire an additional Projectile", + ["affix"] = "", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(20-40)% Surpassing chance to fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDexterity19"] = { + "+(45-60)% Surpassing chance to fire an additional Projectile", + ["affix"] = "", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(45-60)% Surpassing chance to fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDexterity24"] = { + "+(25-50)% Surpassing chance to fire an additional Projectile", + ["affix"] = "", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(25-50)% Surpassing chance to fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDexterity31"] = { + "(11-13)% increased Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(11-13)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDexterity45"] = { + "+(25-35)% Surpassing chance to fire an additional Projectile", + ["affix"] = "", + ["group"] = "AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5512, + }, + ["tradeHashes"] = { + [1347539079] = { + "+(25-35)% Surpassing chance to fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDoubleIgniteChance1"] = { + "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", + ["affix"] = "", + ["group"] = "IgnitedChilledEnemyResistance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "ailment", + }, + ["statOrder"] = { + 7267, + }, + ["tradeHashes"] = { + [134900849] = { + "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueDoubleOnKillEffects1"] = { + "On-Kill Effects happen twice", + ["affix"] = "", + ["group"] = "DoubleOnKillEffects", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9361, + }, + ["tradeHashes"] = { + [259470957] = { + "On-Kill Effects happen twice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalDamageConvertToFire1"] = { + "Physical damage from Hits Contributes to Flammability and", + "Ignite Magnitudes, Freeze Buildup, and Shock Chance", + ["affix"] = "", + ["group"] = "PhysicalDamageCanFreezeShockIgnite", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2639, + 2639.1, + }, + ["tradeHashes"] = { + [3268818374] = { + "Physical damage from Hits Contributes to Flammability and", + "Ignite Magnitudes, Freeze Buildup, and Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { + "Gain (6-15)% of Cold damage as Extra Physical damage", + ["affix"] = "", + ["group"] = "ColdDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1682, + }, + ["tradeHashes"] = { + [1555320175] = { + "Gain (6-15)% of Cold damage as Extra Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { + "Gain (6-15)% of Fire damage as Extra Physical damage", + ["affix"] = "", + ["group"] = "FireDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1686, + }, + ["tradeHashes"] = { + [2848088738] = { + "Gain (6-15)% of Fire damage as Extra Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalDamageGainedAsLightning1"] = { + "Gain (6-15)% of Lightning damage as Extra Physical damage", + ["affix"] = "", + ["group"] = "LightningDamageGainedAsPhysical", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1678, + }, + ["tradeHashes"] = { + [2098400428] = { + "Gain (6-15)% of Lightning damage as Extra Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalPenetration1"] = { + "+(15-25)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(15-25)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { + "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", + ["affix"] = "", + ["group"] = "ElementalDamageLowestResist", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 6281, + }, + ["tradeHashes"] = { + [1740349133] = { + "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { + "20% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + "Enemies in your Presence killed by anyone count as being killed by you instead", + ["affix"] = "", + ["group"] = "EnemiesKilledCountAsYours", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 943, + 943.1, + 6095, + }, + ["tradeHashes"] = { + [1576794517] = { + "Enemies in your Presence killed by anyone count as being killed by you instead", + }, + [1602191394] = { + "20% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { + "Knockback direction is reversed", + ["affix"] = "", + ["group"] = "EnemyKnockbackDirectionReversed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2752, + }, + ["tradeHashes"] = { + [281201999] = { + "Knockback direction is reversed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFireDamageConvertToCold1"] = { + "100% of Fire damage Converted to Lightning damage", + ["affix"] = "", + ["group"] = "FireDamageConvertToLightning", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9277, + }, + ["tradeHashes"] = { + [2772033465] = { + "100% of Fire damage Converted to Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFireDamageConvertToLightning1"] = { + "100% of Lightning Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "LightningDamageConvertToCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1713, + }, + ["tradeHashes"] = { + [3627052716] = { + "100% of Lightning Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFireDamagePercent2"] = { + "Attacks Gain (4-7)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "AttackDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (4-7)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFireResist2"] = { + "+(2-3)% to Maximum Fire Resistance", + "+(15-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-25)% to Fire Resistance", + }, + [4095671657] = { + "+(2-3)% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFireResist7"] = { + "+1% to Maximum Fire Resistance", + "+(5-15)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(5-15)% to Fire Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFreezeDamageIncrease2"] = { + "All Damage from Hits Contributes to Freeze Buildup", + ["affix"] = "", + ["group"] = "AllDamageCanFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4270, + }, + ["tradeHashes"] = { + [4052117756] = { + "All Damage from Hits Contributes to Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { + "Enemies you Curse take (20-30)% increased Damage", + ["affix"] = "", + ["group"] = "CursedEnemiesDamageTaken", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 3433, + }, + ["tradeHashes"] = { + [1984310483] = { + "Enemies you Curse take (20-30)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueFullManaThreshold1"] = { + "You are considered on Low Mana while at 50% of maximum Mana or below instead", + ["affix"] = "", + ["group"] = "HandWrapsLowManaThreshold", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7944, + }, + ["tradeHashes"] = { + [1439856646] = { + "You are considered on Low Mana while at 50% of maximum Mana or below instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueGainArmourEqualToStrength1"] = { + "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", + ["affix"] = "", + ["group"] = "UnarmedAreaOfEffectPerXIntelligence", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 10379, + }, + ["tradeHashes"] = { + [1284514818] = { + "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { + "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", + ["affix"] = "", + ["group"] = "RecoverPercentWardOnReachingMaximumRage", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10518, + }, + ["tradeHashes"] = { + [914467738] = { + "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { + "Gain 1 Fear Overwhelming when you Cull a target", + ["affix"] = "", + ["group"] = "GainFearOverwhelming", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6933, + }, + ["tradeHashes"] = { + [1373147908] = { + "Gain 1 Fear Overwhelming when you Cull a target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueGiantsBlood1"] = { + "Hollow Palm Technique", + ["affix"] = "", + ["group"] = "KeystoneHollowPalmTechnique", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + "speed", + }, + ["statOrder"] = { + 10708, + }, + ["tradeHashes"] = { + [3959337123] = { + "Hollow Palm Technique", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { + "(4-6)% reduced Movement Speed while Cursed", + ["affix"] = "", + ["group"] = "MovementVelocityWhileCursed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2401, + }, + ["tradeHashes"] = { + [3988943320] = { + "(4-6)% reduced Movement Speed while Cursed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { + "(25-35)% Surpassing chance per enemy Power to gain", + "Mountain's Teachings on Immobilising an enemy if", + "you have the Way of the Mountain Ascendancy Passive Skill", + ["affix"] = "", + ["group"] = "MartialArtistStoneSkinChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5402, + 5402.1, + 5402.2, + }, + ["tradeHashes"] = { + [13746168] = { + "(25-35)% Surpassing chance per enemy Power to gain", + "Mountain's Teachings on Immobilising an enemy if", + "you have the Way of the Mountain Ascendancy Passive Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueImmobiliseThreshold1"] = { + "Immobilise enemies at 50% buildup instead of 100%", + ["affix"] = "", + ["group"] = "ImmobiliseThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5906, + }, + ["tradeHashes"] = { + [4238331303] = { + "Immobilise enemies at 50% buildup instead of 100%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueImpaleOnCriticalHit1"] = { + "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", + ["affix"] = "", + ["group"] = "ThornsOnMeleeCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6093, + }, + ["tradeHashes"] = { + [3760099479] = { + "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAccuracy4"] = { + "(10-20)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(10-20)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed1"] = { + "(8-12)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(8-12)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed11"] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed13"] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed16"] = { + "(10-20)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(10-20)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed2"] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed3"] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed4"] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "10% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed7"] = { + "5% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "5% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed8"] = { + "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", + ["affix"] = "", + ["group"] = "CullThresholdIfCulledRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5911, + }, + ["tradeHashes"] = { + [1008466206] = { + "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeed9"] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "OnslaughtOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 986, + }, + ["tradeHashes"] = { + [3264616904] = { + "(10-15)% chance to gain Onslaught for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { + "25% more Attack damage while on Low Mana", + ["affix"] = "", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "25% more Attack damage while on Low Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { + "1% increased Area of Effect per 20 Intelligence", + ["affix"] = "", + ["group"] = "AreaOfEffectPer20Intelligence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2323, + }, + ["tradeHashes"] = { + [1307972622] = { + "1% increased Area of Effect per 20 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedCastSpeed6"] = { + "(15-25)% reduced Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(15-25)% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedCastSpeed7"] = { + "(9-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(9-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife10"] = { + "(6-7)% less damage taken while on Low Life", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "(6-7)% less damage taken while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife15"] = { + "+(130-160) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(130-160) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife54"] = { + "(10-12)% less damage taken while on Low Life", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "(10-12)% less damage taken while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife58"] = { + "(12-15)% less damage taken while on Low Life", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "(12-15)% less damage taken while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife6"] = { + "(6-8)% more damage taken while on Low Life", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "(6-8)% more damage taken while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedLife9"] = { + "(7-9)% less damage taken while on Low Life", + ["affix"] = "", + ["group"] = "HandWrapsDamageTakenOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 888, + }, + ["tradeHashes"] = { + [1725136006] = { + "(7-9)% less damage taken while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedMana48"] = { + "(15-25)% more Attack damage while on Low Mana", + ["affix"] = "", + ["group"] = "HandWrapsAttackDamageOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 893, + }, + ["tradeHashes"] = { + [2091975590] = { + "(15-25)% more Attack damage while on Low Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedPhysicalDamagePercent1"] = { + "Attack Damage with Hits is Lucky while you are Surrounded", + ["affix"] = "", + ["group"] = "LuckyAttackDamageWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4522, + }, + ["tradeHashes"] = { + [1292739266] = { + "Attack Damage with Hits is Lucky while you are Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedSkillSpeed1"] = { + "(13-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(13-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIncreasedSkillSpeed5"] = { + "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "AttackSpeedIfCriticalStrikeDealtRecently", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4566, + }, + ["tradeHashes"] = { + [1585344030] = { + "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence10"] = { + "15% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "15% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence12"] = { + "(10-15)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(10-15)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence18"] = { + "15% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "15% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence19"] = { + "(10-15)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(10-15)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence22"] = { + "(20-25)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(20-25)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence31"] = { + "(5-10)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(5-10)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueIntelligence34"] = { + "(20-30)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(20-30)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueItemFoundRarityIncrease1"] = { + "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueItemFoundRarityIncrease21"] = { + "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { + "Mana Leech effects also Recover Energy Shield", + ["affix"] = "", + ["group"] = "ManaLeechAlsoRecoversEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 7989, + }, + ["tradeHashes"] = { + [4051067787] = { + "Mana Leech effects also Recover Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { + "Lose 5% of maximum Mana per Second", + ["affix"] = "", + ["group"] = "LoseManaPercentPerSecond", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7977, + }, + ["tradeHashes"] = { + [2936435999] = { + "Lose 5% of maximum Mana per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { + "Recover 1% of maximum Runic Ward on Kill", + ["affix"] = "", + ["group"] = "WardPercentOnKill", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10517, + }, + ["tradeHashes"] = { + [3334796009] = { + "Recover 1% of maximum Runic Ward on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath11"] = { + "Recover 3% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 3% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { + "Recover 3% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 3% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { + "Recover 3% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 3% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeLeech2"] = { + "Leech (13-17)% of Physical Attack Damage as Life", + "Leech Life (20-25)% slower", + ["affix"] = "", + ["group"] = "LifeLeechAndRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1038, + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (20-25)% slower", + }, + [2557965901] = { + "Leech (13-17)% of Physical Attack Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeRegeneration12"] = { + "Regenerate (0.5-1.5)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (0.5-1.5)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLifeRegeneration23"] = { + "Regenerate (1.5-3)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1.5-3)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { + "All damage with Attacks Contributes to Electrocution Buildup", + ["affix"] = "", + ["group"] = "AllAttackDamageElectrocutes", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 4267, + }, + ["tradeHashes"] = { + [2132256285] = { + "All damage with Attacks Contributes to Electrocution Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { + "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", + ["affix"] = "", + ["group"] = "AddedColdDamagePer20Dexterity", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 8961, + }, + ["tradeHashes"] = { + [1088339210] = { + "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningResist23"] = { + "Gain (15-25)% of Lightning damage as Extra Cold damage", + ["affix"] = "", + ["group"] = "LightningDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 1680, + }, + ["tradeHashes"] = { + [2236478400] = { + "Gain (15-25)% of Lightning damage as Extra Cold damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningResist26"] = { + "+2% to Maximum Lightning Resistance", + "+(25-35)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(25-35)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningResist28"] = { + "+(2-3)% to Maximum Lightning Resistance", + "+(15-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + 1023, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(2-3)% to Maximum Lightning Resistance", + }, + [1671376347] = { + "+(15-25)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLightningResist29"] = { + "+(2-3)% to Maximum Cold Resistance", + "+(10-25)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistanceAndMax", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + 1020, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(2-3)% to Maximum Cold Resistance", + }, + [4220027924] = { + "+(10-25)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { + "+(60-80) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "LocalRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 845, + }, + ["tradeHashes"] = { + [774059442] = { + "+(60-80) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { + "(15-25)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-25)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { + "+(30-50) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "LocalRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 845, + }, + ["tradeHashes"] = { + [774059442] = { + "+(30-50) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRating4"] = { + "Has +2 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +2 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent6"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { + "Has +1 to Evasion Rating per player level", + "Has +1 to maximum Energy Shield per player level", + ["affix"] = "", + ["group"] = "LocalBaseEvasionAndEnergyShieldPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 842, + 844, + }, + ["tradeHashes"] = { + [2729727878] = { + "Has +1 to maximum Energy Shield per player level", + }, + [3188814226] = { + "Has +1 to Evasion Rating per player level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(20-25)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { + "+(70-100) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "LocalRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 845, + }, + ["tradeHashes"] = { + [774059442] = { + "+(70-100) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(10-15)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + ["affix"] = "", + ["group"] = "HandWrapsMoreGlobalEvasionEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 853, + }, + ["tradeHashes"] = { + [711236369] = { + "(15-20)% more Global Evasion Rating and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { + "Lose all Rage on reaching Maximum Rage", + ["affix"] = "", + ["group"] = "LoseRageOnMaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7933, + }, + ["tradeHashes"] = { + [3851480592] = { + "Lose all Rage on reaching Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { + "Recover 3% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 3% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { + "Recover 3% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover 3% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { + "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "IncreasedManaLeechIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "critical", + }, + ["statOrder"] = { + 7988, + }, + ["tradeHashes"] = { + [3844601656] = { + "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { + "Lose 2% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Lose 2% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueMaximumManaIncrease3"] = { + "Cannot Leech Mana", + ["affix"] = "", + ["group"] = "CannotLeechMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2350, + }, + ["tradeHashes"] = { + [1759630226] = { + "Cannot Leech Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueMaximumRage1"] = { + "+(-10-10) to Maximum Rage", + ["affix"] = "", + ["group"] = "MaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(-10-10) to Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { + "You have no Mana Regeneration", + ["affix"] = "", + ["group"] = "NoManaRegeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2021, + }, + ["tradeHashes"] = { + [1052246654] = { + "You have no Mana Regeneration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueNonherentRageLoss1"] = { + "No Inherent loss of Rage", + ["affix"] = "", + ["group"] = "NoInherentRageLoss", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9212, + }, + ["tradeHashes"] = { + [4163076972] = { + "No Inherent loss of Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueOverrideWeaponBaseCritical1"] = { + "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", + ["affix"] = "", + ["group"] = "BaseUnarmedCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3255, + }, + ["tradeHashes"] = { + [3613173483] = { + "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniquePoisonStackCount1"] = { + "Targets can be affected by two of your Chills at the same time", + ["affix"] = "", + ["group"] = "HandWrapsApplyAdditionalChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5246, + }, + ["tradeHashes"] = { + [1104235854] = { + "Targets can be affected by two of your Chills at the same time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueRageOnAnyHit1"] = { + "Gain (6-8) Rage on Hit", + ["affix"] = "", + ["group"] = "RageOnAnyHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4699, + }, + ["tradeHashes"] = { + [2258007247] = { + "Gain (6-8) Rage on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueRageRegeneration1"] = { + "Regenerate 5 Rage per second", + ["affix"] = "", + ["group"] = "RageRegenerationPerMinute", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4741, + }, + ["tradeHashes"] = { + [2853314994] = { + "Regenerate 5 Rage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { + "100% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "100% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueReflectCurseToSelf1"] = { + "Curses you inflict are reflected back to you", + ["affix"] = "", + ["group"] = "ReflectCurseToSelf", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5942, + }, + ["tradeHashes"] = { + [4275855121] = { + "Curses you inflict are reflected back to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { + "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", + ["affix"] = "", + ["group"] = "SacrificeLifeToGainWardOnAttack", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + "attack", + }, + ["statOrder"] = { + 9789, + }, + ["tradeHashes"] = { + [2238664497] = { + "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueShareChargesWithAllies1"] = { + "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", + "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", + "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", + ["affix"] = "", + ["group"] = "GrantChargesToAlliesOnHitChance", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 5541, + 5542, + 5545, + }, + ["tradeHashes"] = { + [3174788165] = { + "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", + }, + [3294345676] = { + "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", + }, + [991168463] = { + "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueSlowEffect1"] = { + "(25-50)% increased Immobilisation buildup", + ["affix"] = "", + ["group"] = "ImmobilisationBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7193, + }, + ["tradeHashes"] = { + [330530785] = { + "(25-50)% increased Immobilisation buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueSpellDamage1"] = { + "100% increased Attack Damage", + ["affix"] = "", + ["group"] = "AttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "100% increased Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueStrength23"] = { + "(10-14)% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(10-14)% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueStrength41"] = { + "(18-24)% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(18-24)% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueStrength47"] = { + "(15-20)% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(15-20)% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { + "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + ["affix"] = "", + ["group"] = "DexteritySatisfiesAllWeaponRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6140, + }, + ["tradeHashes"] = { + [2233892982] = { + "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueStunDamageIncrease2"] = { + "(20-30)% increased Immobilisation buildup", + ["affix"] = "", + ["group"] = "ImmobilisationBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7193, + }, + ["tradeHashes"] = { + [330530785] = { + "(20-30)% increased Immobilisation buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { + "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", + ["affix"] = "", + ["group"] = "UnarmedDamageGainedAsFirePerXIntelligence", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 9308, + }, + ["tradeHashes"] = { + [1411594757] = { + "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HandWrapsUniqueVaalPact1"] = { + "Eternal Youth", + ["affix"] = "", + ["group"] = "EternalYouth", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 10701, + }, + ["tradeHashes"] = { + [1308467455] = { + "Eternal Youth", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2_1"] = { + "Grants Summon Greater Harbinger of the Arcane Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of the Arcane Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2_2"] = { + "Grants Summon Greater Harbinger of Time Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of Time Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2_4"] = { + "Grants Summon Greater Harbinger of Directions Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of Directions Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2_5"] = { + "Grants Summon Greater Harbinger of Storms Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of Storms Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2_6"] = { + "Grants Summon Greater Harbinger of Brutality Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of Brutality Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique2__3"] = { + "Grants Summon Greater Harbinger of Focus Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Greater Harbinger of Focus Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__1"] = { + "Grants Summon Harbinger of the Arcane Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of the Arcane Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__2"] = { + "Grants Summon Harbinger of Time Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of Time Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__3"] = { + "Grants Summon Harbinger of Focus Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of Focus Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__4_"] = { + "Grants Summon Harbinger of Directions Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of Directions Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__5"] = { + "Grants Summon Harbinger of Storms Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of Storms Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarbingerSkillOnEquipUnique__6"] = { + "Grants Summon Harbinger of Brutality Skill", + ["affix"] = "", + ["group"] = "HarbingerSkillOnEquip", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 469, + }, + ["tradeHashes"] = { + [3872739249] = { + "Grants Summon Harbinger of Brutality Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { + "Quality does not increase Damage", + "Grants 1% increased Accuracy per 2% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 625, + 7602, + }, + ["tradeHashes"] = { + [2421363283] = { + "Grants 1% increased Accuracy per 2% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { + "Quality does not increase Damage", + "Grants 1% increased Area of Effect per 4% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 625, + 7619, + }, + ["tradeHashes"] = { + [334333797] = { + "Grants 1% increased Area of Effect per 4% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { + "Quality does not increase Damage", + "Grants 1% increased Elemental Damage per 2% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "attack", + }, + ["statOrder"] = { + 625, + 7697, + }, + ["tradeHashes"] = { + [1482025771] = { + "Grants 1% increased Elemental Damage per 2% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { + "Quality does not increase Damage", + "1% increased Critical Hit Chance per 4% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + "critical", + }, + ["statOrder"] = { + 625, + 7647, + }, + ["tradeHashes"] = { + [3103053611] = { + "1% increased Critical Hit Chance per 4% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { + "Quality does not increase Damage", + "1% increased Attack Speed per 8% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + "speed", + }, + ["statOrder"] = { + 625, + 7623, + }, + ["tradeHashes"] = { + [3331111689] = { + "1% increased Attack Speed per 8% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { + "Quality does not increase Damage", + "+1 Weapon Range per 10% Quality", + ["affix"] = "", + ["group"] = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 625, + 7925, + }, + ["tradeHashes"] = { + [2967267655] = { + "+1 Weapon Range per 10% Quality", + }, + [4045911293] = { + "Quality does not increase Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HasNoSockets"] = { + "Has no Sockets", + ["affix"] = "", + ["group"] = "HasNoSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 55, + }, + ["tradeHashes"] = { + [1493091477] = { + "Has no Sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HealOnRampageUniqueGlovesStrDex5"] = { + "Recover 20% of maximum Life on Rampage", + ["affix"] = "", + ["group"] = "HealOnRampage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2699, + }, + ["tradeHashes"] = { + [2737492258] = { + "Recover 20% of maximum Life on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeistContractAdditionalIntelligence"] = { + "Completing a Heist generates 3 additional Reveals", + "Heist Chests have 25% chance to contain nothing", + ["affix"] = "", + ["group"] = "HeistContractAdditionalIntelligence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8312, + 8313, + }, + ["tradeHashes"] = { + [2309146693] = { + "Completing a Heist generates 3 additional Reveals", + }, + [3038236553] = { + "Heist Chests have 25% chance to contain nothing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeistContractBetterTargetValue"] = { + "Rogue Equipment cannot be found", + "200% more Rogue's Marker value of primary Heist Target", + ["affix"] = "", + ["group"] = "HeistContractBetterTargetValue", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8314, + 8315, + }, + ["tradeHashes"] = { + [1045213941] = { + "Rogue Equipment cannot be found", + }, + [3009603087] = { + "200% more Rogue's Marker value of primary Heist Target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeistContractChestRewardsDuplicated"] = { + "Heist Chests have a 100% chance to Duplicate their contents", + "Monsters have 100% more Life", + ["affix"] = "", + ["group"] = "HeistContractChestRewardsDuplicated", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5403, + 8316, + }, + ["tradeHashes"] = { + [2747693610] = { + "Heist Chests have a 100% chance to Duplicate their contents", + }, + [3026134008] = { + "Monsters have 100% more Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeistContractNPCPerksDoubled"] = { + "50% reduced time before Lockdown", + "Rogue Perks are doubled", + ["affix"] = "", + ["group"] = "HeistContractNPCPerksDoubled", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6165, + 8317, + }, + ["tradeHashes"] = { + [429193272] = { + "50% reduced time before Lockdown", + }, + [898812928] = { + "Rogue Perks are doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyChaosDamage_"] = { + "(40-60)% increased Chaos Damage while affected by Herald of Agony", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 5588, + }, + ["tradeHashes"] = { + [739274558] = { + "(40-60)% increased Chaos Damage while affected by Herald of Agony", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyChaosResist_"] = { + "+(31-43)% to Chaos Resistance while affected by Herald of Agony", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyChaosResist", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5593, + }, + ["tradeHashes"] = { + [3456816469] = { + "+(31-43)% to Chaos Resistance while affected by Herald of Agony", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyEffect"] = { + "Herald of Agony has (40-60)% increased Buff Effect", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7145, + }, + ["tradeHashes"] = { + [2572910724] = { + "Herald of Agony has (40-60)% increased Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyMinionDamage_"] = { + "Agony Crawler deals (70-100)% increased Damage", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyMinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 4249, + }, + ["tradeHashes"] = { + [786460697] = { + "Agony Crawler deals (70-100)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyReservation"] = { + "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7146, + }, + ["tradeHashes"] = { + [1284151528] = { + "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAgonyReservationEfficiency"] = { + "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusAgonyReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7147, + }, + ["tradeHashes"] = { + [1133703802] = { + "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAshEffect"] = { + "Herald of Ash has (40-60)% increased Buff Effect", + ["affix"] = "", + ["group"] = "HeraldBonusAshEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7149, + }, + ["tradeHashes"] = { + [2154349925] = { + "Herald of Ash has (40-60)% increased Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAshFireDamage"] = { + "(40-60)% increased Fire Damage while affected by Herald of Ash", + ["affix"] = "", + ["group"] = "HeraldBonusAshFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6573, + }, + ["tradeHashes"] = { + [2775776604] = { + "(40-60)% increased Fire Damage while affected by Herald of Ash", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAshMaxFireResist"] = { + "+1% to maximum Fire Resistance while affected by Herald of Ash", + ["affix"] = "", + ["group"] = "HeraldBonusAshMaxFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 8867, + }, + ["tradeHashes"] = { + [3716758077] = { + "+1% to maximum Fire Resistance while affected by Herald of Ash", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAshReservation"] = { + "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusAshReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7150, + }, + ["tradeHashes"] = { + [3819451758] = { + "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusAshReservationEfficiency__"] = { + "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusAshReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7151, + }, + ["tradeHashes"] = { + [2500442851] = { + "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusColdResist"] = { + "+(50-60)% to Cold Resistance while affected by Herald of Ice", + ["affix"] = "", + ["group"] = "HeraldBonusColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 5688, + }, + ["tradeHashes"] = { + [2494069187] = { + "+(50-60)% to Cold Resistance while affected by Herald of Ice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusExtraMod1"] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["affix"] = "", + ["group"] = "HeraldBonusExtraMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10639, + }, + ["tradeHashes"] = { + [3461563650] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusExtraMod2_"] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["affix"] = "", + ["group"] = "HeraldBonusExtraMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10639, + }, + ["tradeHashes"] = { + [3461563650] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusExtraMod3_"] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["affix"] = "", + ["group"] = "HeraldBonusExtraMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10639, + }, + ["tradeHashes"] = { + [3461563650] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusExtraMod4"] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["affix"] = "", + ["group"] = "HeraldBonusExtraMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10639, + }, + ["tradeHashes"] = { + [3461563650] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusExtraMod5"] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["affix"] = "", + ["group"] = "HeraldBonusExtraMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10639, + }, + ["tradeHashes"] = { + [3461563650] = { + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusFireResist"] = { + "+(50-60)% to Fire Resistance while affected by Herald of Ash", + ["affix"] = "", + ["group"] = "HeraldBonusFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 6574, + }, + ["tradeHashes"] = { + [2675641469] = { + "+(50-60)% to Fire Resistance while affected by Herald of Ash", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusIceColdDamage"] = { + "(40-60)% increased Cold Damage while affected by Herald of Ice", + ["affix"] = "", + ["group"] = "HeraldBonusIceColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 5686, + }, + ["tradeHashes"] = { + [1970606344] = { + "(40-60)% increased Cold Damage while affected by Herald of Ice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusIceEffect_"] = { + "Herald of Ice has (40-60)% increased Buff Effect", + ["affix"] = "", + ["group"] = "HeraldBonusIceEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7152, + }, + ["tradeHashes"] = { + [1862926389] = { + "Herald of Ice has (40-60)% increased Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusIceReservationEfficiency__"] = { + "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusIceReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7154, + }, + ["tradeHashes"] = { + [3395872960] = { + "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusIceReservation_"] = { + "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusIceReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7153, + }, + ["tradeHashes"] = { + [3059700363] = { + "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusMaxColdResist__"] = { + "+1% to maximum Cold Resistance while affected by Herald of Ice", + ["affix"] = "", + ["group"] = "HeraldBonusMaxColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 8850, + }, + ["tradeHashes"] = { + [950661692] = { + "+1% to maximum Cold Resistance while affected by Herald of Ice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityEffect"] = { + "Herald of Purity has (40-60)% increased Buff Effect", + ["affix"] = "", + ["group"] = "HeraldBonusPurityEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7156, + }, + ["tradeHashes"] = { + [2126027382] = { + "Herald of Purity has (40-60)% increased Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityMinionDamage"] = { + "Sentinels of Purity deal (70-100)% increased Damage", + ["affix"] = "", + ["group"] = "HeraldBonusPurityMinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9820, + }, + ["tradeHashes"] = { + [650630047] = { + "Sentinels of Purity deal (70-100)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityPhysicalDamage"] = { + "(40-60)% increased Physical Damage while affected by Herald of Purity", + ["affix"] = "", + ["group"] = "HeraldBonusPurityPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 9449, + }, + ["tradeHashes"] = { + [3294232483] = { + "(40-60)% increased Physical Damage while affected by Herald of Purity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { + "4% additional Physical Damage Reduction while affected by Herald of Purity", + ["affix"] = "", + ["group"] = "HeraldBonusPurityPhysicalDamageReduction", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 9457, + }, + ["tradeHashes"] = { + [3163114700] = { + "4% additional Physical Damage Reduction while affected by Herald of Purity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityReservationEfficiency_"] = { + "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusPurityReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7159, + }, + ["tradeHashes"] = { + [2189040439] = { + "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusPurityReservation_"] = { + "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusPurityReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7158, + }, + ["tradeHashes"] = { + [1542765265] = { + "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderEffect"] = { + "Herald of Thunder has (40-60)% increased Buff Effect", + ["affix"] = "", + ["group"] = "HeraldBonusThunderEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7162, + }, + ["tradeHashes"] = { + [3814686091] = { + "Herald of Thunder has (40-60)% increased Buff Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderLightningDamage"] = { + "(40-60)% increased Lightning Damage while affected by Herald of Thunder", + ["affix"] = "", + ["group"] = "HeraldBonusThunderLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 7548, + }, + ["tradeHashes"] = { + [536957] = { + "(40-60)% increased Lightning Damage while affected by Herald of Thunder", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderLightningResist_"] = { + "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", + ["affix"] = "", + ["group"] = "HeraldBonusThunderLightningResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 7550, + }, + ["tradeHashes"] = { + [2687017988] = { + "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderMaxLightningResist"] = { + "+1% to maximum Lightning Resistance while affected by Herald of Thunder", + ["affix"] = "", + ["group"] = "HeraldBonusThunderMaxLightningResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 8890, + }, + ["tradeHashes"] = { + [3259396413] = { + "+1% to maximum Lightning Resistance while affected by Herald of Thunder", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderReservation"] = { + "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusThunderReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7163, + }, + ["tradeHashes"] = { + [3959101898] = { + "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldBonusThunderReservationEfficiency"] = { + "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "HeraldBonusThunderReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7164, + }, + ["tradeHashes"] = { + [3817220109] = { + "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldOfIceDamageUnique__1_"] = { + "50% increased Herald of Ice Damage", + ["affix"] = "", + ["group"] = "HeraldOfIceDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3393, + }, + ["tradeHashes"] = { + [3910961021] = { + "50% increased Herald of Ice Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HeraldsAlwaysCost45Unique__1"] = { + "Mana Reservation of Herald Skills is always 45%", + ["affix"] = "", + ["group"] = "HeraldsAlwaysCost45", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7143, + }, + ["tradeHashes"] = { + [262773569] = { + "Mana Reservation of Herald Skills is always 45%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", + ["affix"] = "", + ["group"] = "HitsIgnoreChaosResistanceAllElderItems", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 7216, + }, + ["tradeHashes"] = { + [89314980] = { + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", + ["affix"] = "", + ["group"] = "HitsIgnoreChaosResistanceAllShaperItems", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 7217, + }, + ["tradeHashes"] = { + [4234677275] = { + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HungryLoopSupportedByTrinity"] = { + "Has Consumed 1 Gem", + "Socketed Gems are Supported by Level 20 Trinity", + ["affix"] = "", + ["group"] = "HungryLoopSupportedByTrinity", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 91, + 280, + }, + ["tradeHashes"] = { + [3111091501] = { + "Socketed Gems are Supported by Level 20 Trinity", + }, + [3221550523] = { + "Has Consumed 1 Gem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HybridDexInt"] = { + "+(16-24) to Dexterity and Intelligence", + ["affix"] = "", + ["group"] = "HybridDexInt", + ["level"] = 20, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 997, + }, + ["tradeHashes"] = { + [2300185227] = { + "+(16-24) to Dexterity and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HybridStrDex"] = { + "+(16-24) to Strength and Dexterity", + ["affix"] = "", + ["group"] = "HybridStrDex", + ["level"] = 20, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+(16-24) to Strength and Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HybridStrDexUnique__1"] = { + "+(30-50) to Strength and Dexterity", + ["affix"] = "", + ["group"] = "HybridStrDex", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+(30-50) to Strength and Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HybridStrInt"] = { + "+(16-24) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "HybridStrInt", + ["level"] = 20, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(16-24) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["HyssegsClawVerisiumImplicitMinionDamageUpgraded1"] = { + "Minions deal (51-100)% increased Damage", + ["affix"] = "", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (51-100)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IIQFromMaimedEnemiesUnique_1"] = { + "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", + ["affix"] = "", + ["group"] = "IIQFromMaimedEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3825, + }, + ["tradeHashes"] = { + [3122365625] = { + "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IIRFromMaimedEnemiesUnique_1"] = { + "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", + ["affix"] = "", + ["group"] = "IIRFromMaimedEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3826, + }, + ["tradeHashes"] = { + [2085001246] = { + "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IcestormUniqueStaff12"] = { + "Grants Level 1 Icestorm Skill", + ["affix"] = "", + ["group"] = "IcestormActiveSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 496, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2103009393] = { + "Grants Level 1 Icestorm Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IgniteChanceAndDurationJewel"] = { + "(6-8)% increased Ignite Duration on Enemies", + ["affix"] = "of Burning", + ["group"] = "IgniteChanceAndDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "(6-8)% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["IgniteDurationJewel"] = { + "(3-5)% increased Ignite Duration on Enemies", + ["affix"] = "of Immolation", + ["group"] = "BurnDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "(3-5)% increased Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IgniteDurationOnYouJewel"] = { + "(30-35)% reduced Ignite Duration on you", + ["affix"] = "of the Flameruler", + ["group"] = "ReducedIgniteDurationOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(30-35)% reduced Ignite Duration on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["IgnitedEnemiesTurnToAshUniqueRing15"] = { + "Ignited enemies killed by your Hits are destroyed", + ["affix"] = "", + ["group"] = "IgnitedEnemiesTurnToAsh", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2374, + }, + ["tradeHashes"] = { + [3173052379] = { + "Ignited enemies killed by your Hits are destroyed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IgnoreHexproofUnique___1"] = { + "Curses you inflict can affect Hexproof Enemies", + ["affix"] = "", + ["group"] = "IgnoreHexproof", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2379, + }, + ["tradeHashes"] = { + [1367119630] = { + "Curses you inflict can affect Hexproof Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ImmuneToBurningShockedChilledGroundUnique__1"] = { + "Immune to Burning Ground, Shocked Ground and Chilled Ground", + ["affix"] = "", + ["group"] = "ImmuneToBurningShockedChilledGround", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7282, + }, + ["tradeHashes"] = { + [3705740723] = { + "Immune to Burning Ground, Shocked Ground and Chilled Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { + "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", + ["affix"] = "", + ["group"] = "ImmuneToElementalAilmentsWhileLifeAndManaClose", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 10368, + }, + ["tradeHashes"] = { + [2716882575] = { + "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { + "Immune to Freeze and Chill while Ignited", + ["affix"] = "", + ["group"] = "ImmuneToFreezeAndChillWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 7294, + }, + ["tradeHashes"] = { + [1512695141] = { + "Immune to Freeze and Chill while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ImpaleChanceForJewel_"] = { + "(5-7)% chance to Impale Enemies on Hit with Attacks", + ["affix"] = "of Impaling", + ["group"] = "ImpaleChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 4590, + }, + ["tradeHashes"] = { + [3739863694] = { + "(5-7)% chance to Impale Enemies on Hit with Attacks", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { + "1% increased Bleeding Duration per 12 Intelligence", + ["affix"] = "", + ["group"] = "IncreaseBleedDurationPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "ailment", + }, + ["statOrder"] = { + 3470, + }, + ["tradeHashes"] = { + [1030835421] = { + "1% increased Bleeding Duration per 12 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { + "(40-60)% increased Damage with Hits against Blinded Enemies", + ["affix"] = "", + ["group"] = "DamageOnBlindedEnemies", + ["level"] = 69, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7198, + }, + ["tradeHashes"] = { + [2242791457] = { + "(40-60)% increased Damage with Hits against Blinded Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { + "(25-40)% increased Damage with Hits against Blinded Enemies", + ["affix"] = "", + ["group"] = "DamageOnBlindedEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7198, + }, + ["tradeHashes"] = { + [2242791457] = { + "(25-40)% increased Damage with Hits against Blinded Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { + "(15-20)% increased Lightning Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreaseLightningDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2681, + }, + ["tradeHashes"] = { + [3693130674] = { + "(15-20)% increased Lightning Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { + "2% increased Physical Damage Over Time per 10 Dexterity", + ["affix"] = "", + ["group"] = "IncreasePhysicalDegenDamagePerDexterity", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3469, + }, + ["tradeHashes"] = { + [555311393] = { + "2% increased Physical Damage Over Time per 10 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { + "1% increased Projectile Attack Damage per 200 Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreaseProjectileAttackDamagePerAccuracy", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3978, + }, + ["tradeHashes"] = { + [4157767905] = { + "1% increased Projectile Attack Damage per 200 Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { + "+2 to Level of Socketed Curse Gems", + ["affix"] = "", + ["group"] = "IncreaseSocketedCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 144, + }, + ["tradeHashes"] = { + [3691695237] = { + "+2 to Level of Socketed Curse Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { + "+3 to Level of Socketed Curse Gems", + ["affix"] = "", + ["group"] = "IncreaseSocketedCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 144, + }, + ["tradeHashes"] = { + [3691695237] = { + "+3 to Level of Socketed Curse Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseSocketedCurseGemLevelUnique__1"] = { + "+2 to Level of Socketed Curse Gems", + ["affix"] = "", + ["group"] = "IncreaseSocketedCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 144, + }, + ["tradeHashes"] = { + [3691695237] = { + "+2 to Level of Socketed Curse Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreaseSocketedCurseGemLevelUnique__2"] = { + "+3 to Level of Socketed Curse Gems", + ["affix"] = "", + ["group"] = "IncreaseSocketedCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 144, + }, + ["tradeHashes"] = { + [3691695237] = { + "+3 to Level of Socketed Curse Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAccuracyJewel"] = { + "+(20-40) to Accuracy Rating", + ["affix"] = "of Accuracy", + ["group"] = "IncreasedAccuracyForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(20-40) to Accuracy Rating", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedAccuracyPercentImplicitQuiver7"] = { + "(20-30)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 5, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(20-30)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAccuracyPercentImplicitQuiver7New"] = { + "(20-30)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 45, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(20-30)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAccuracyPercentUnique__1"] = { + "(30-40)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(30-40)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { + "100% increased Accuracy Rating when on Low Life", + ["affix"] = "", + ["group"] = "IncreasedAccuracyWhenOnLowLife", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2366, + }, + ["tradeHashes"] = { + [347697569] = { + "100% increased Accuracy Rating when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAilmentDurationUnique__1"] = { + "40% increased Duration of Ailments on Enemies", + ["affix"] = "", + ["group"] = "IncreasedAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 1616, + }, + ["tradeHashes"] = { + [2419712247] = { + "40% increased Duration of Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAilmentDurationUnique__2"] = { + "30% reduced Duration of Ailments on Enemies", + ["affix"] = "", + ["group"] = "IncreasedAilmentDuration", + ["level"] = 88, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 1616, + }, + ["tradeHashes"] = { + [2419712247] = { + "30% reduced Duration of Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAilmentDurationUnique__3_"] = { + "(10-20)% increased Duration of Ailments on Enemies", + ["affix"] = "", + ["group"] = "IncreasedAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 1616, + }, + ["tradeHashes"] = { + [2419712247] = { + "(10-20)% increased Duration of Ailments on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAreaOfEffectPerIntelligence"] = { + "16% increased Area of Effect for Attacks per 10 Intelligence", + ["affix"] = "", + ["group"] = "AttackAreaOfEffectPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 4494, + }, + ["tradeHashes"] = { + [434750362] = { + "16% increased Area of Effect for Attacks per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { + "15% increased Area of Effect while you have no Frenzy Charges", + ["affix"] = "", + ["group"] = "IncreasedAreaOfSkillsWithNoFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1791, + }, + ["tradeHashes"] = { + [4180687797] = { + "15% increased Area of Effect while you have no Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { + "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", + ["affix"] = "", + ["group"] = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 3844, + }, + ["tradeHashes"] = { + [3669898891] = { + "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedArmourJewel"] = { + "(14-18)% increased Armour", + ["affix"] = "Armoured", + ["group"] = "IncreasedArmourForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(14-18)% increased Armour", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["IncreasedArmourWhileBleedingUnique__1"] = { + "(30-40)% increased Armour while Bleeding", + ["affix"] = "", + ["group"] = "IncreasedArmourWhileBleeding", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 4430, + }, + ["tradeHashes"] = { + [2466912132] = { + "(30-40)% increased Armour while Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { + "300% increased Armour while Chilled or Frozen", + ["affix"] = "", + ["group"] = "IncreasedArmourWhileChilledOrFrozen", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 3269, + }, + ["tradeHashes"] = { + [1857635068] = { + "300% increased Armour while Chilled or Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { + "20% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "20% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackAreaOfEffectUnique__2_"] = { + "20% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "20% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackAreaOfEffectUnique__3"] = { + "(-40-40)% reduced Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(-40-40)% reduced Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedPerDexterityUnique__1"] = { + "1% increased Attack Speed per 20 Dexterity", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedPerDexterity", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 2324, + }, + ["tradeHashes"] = { + [720908147] = { + "1% increased Attack Speed per 20 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { + "25% increased Attack Speed when on Low Life", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedWhenOnLowLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1177, + }, + ["tradeHashes"] = { + [1921572790] = { + "25% increased Attack Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { + "30% increased Attack Speed when on Low Life", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedWhenOnLowLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1177, + }, + ["tradeHashes"] = { + [1921572790] = { + "30% increased Attack Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { + "25% increased Attack Speed when on Low Life", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedWhenOnLowLife", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1177, + }, + ["tradeHashes"] = { + [1921572790] = { + "25% increased Attack Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { + "(10-20)% increased Attack Speed while Ignited", + ["affix"] = "", + ["group"] = "AttackSpeedIncreasedWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 2689, + }, + ["tradeHashes"] = { + [2047819517] = { + "(10-20)% increased Attack Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { + "(25-40)% increased Attack Speed while Ignited", + ["affix"] = "", + ["group"] = "AttackSpeedIncreasedWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 2689, + }, + ["tradeHashes"] = { + [2047819517] = { + "(25-40)% increased Attack Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAuraEffectUniqueBodyDexInt4"] = { + "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", + ["affix"] = "", + ["group"] = "AuraEffectGlobal", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 3251, + }, + ["tradeHashes"] = { + [1880071428] = { + "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAuraEffectUniqueJewel45"] = { + "3% increased Magnitudes of Non-Curse Auras from your Skills", + ["affix"] = "", + ["group"] = "AuraEffectGlobal", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 3251, + }, + ["tradeHashes"] = { + [1880071428] = { + "3% increased Magnitudes of Non-Curse Auras from your Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { + "(20-40)% increased Area of Effect of Aura Skills", + ["affix"] = "", + ["group"] = "AuraIncreasedIncreasedAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1949, + }, + ["tradeHashes"] = { + [895264825] = { + "(20-40)% increased Area of Effect of Aura Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedAuraRadiusUnique__1"] = { + "20% increased Area of Effect of Aura Skills", + ["affix"] = "", + ["group"] = "AuraIncreasedIncreasedAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1949, + }, + ["tradeHashes"] = { + [895264825] = { + "20% increased Area of Effect of Aura Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedBuffEffectivenessBodyInt12"] = { + "30% increased effect of Buffs on you", + ["affix"] = "", + ["group"] = "IncreasedBuffEffectiveness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1883, + }, + ["tradeHashes"] = { + [306104305] = { + "30% increased effect of Buffs on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { + "10% increased effect of Buffs on you", + ["affix"] = "", + ["group"] = "IncreasedBuffEffectiveness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1883, + }, + ["tradeHashes"] = { + [306104305] = { + "10% increased effect of Buffs on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { + "100% increased Burning Damage if you've Ignited an Enemy Recently", + ["affix"] = "", + ["group"] = "IncreasedBurningDamageIfYouHaveIgnitedRecently", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 3969, + }, + ["tradeHashes"] = { + [3919557483] = { + "100% increased Burning Damage if you've Ignited an Enemy Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { + "2% increased Cast Speed per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedCastSpeedPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 1349, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [1604393896] = { + "2% increased Cast Speed per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { + "(6-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(6-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { + "(10-20)% increased Cast Speed while Ignited", + ["affix"] = "", + ["group"] = "CastSpeedIncreasedWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 2690, + }, + ["tradeHashes"] = { + [3660039923] = { + "(10-20)% increased Cast Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { + "(25-40)% increased Cast Speed while Ignited", + ["affix"] = "", + ["group"] = "CastSpeedIncreasedWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 2690, + }, + ["tradeHashes"] = { + [3660039923] = { + "(25-40)% increased Cast Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { + "3% chance for Slain monsters to drop an additional Scroll of Wisdom", + ["affix"] = "", + ["group"] = "IncreasedChanceForMonstersToDropWisdomScrolls", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2375, + }, + ["tradeHashes"] = { + [2920230984] = { + "3% chance for Slain monsters to drop an additional Scroll of Wisdom", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChanceToBeIgnitedUniqueRing24"] = { + "+25% chance to be Ignited", + ["affix"] = "", + ["group"] = "IncreasedChanceToBeIgnited", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2694, + }, + ["tradeHashes"] = { + [1618339429] = { + "+25% chance to be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChanceToBeIgnitedUnique__1"] = { + "+25% chance to be Ignited", + ["affix"] = "", + ["group"] = "IncreasedChanceToBeIgnited", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2694, + }, + ["tradeHashes"] = { + [1618339429] = { + "+25% chance to be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageImplicit1_"] = { + "(17-23)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 100, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(17-23)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageImplicitUnique__1"] = { + "30% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "30% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { + "1% increased Elemental Damage per Level", + ["affix"] = "", + ["group"] = "ChaosDamagePerLevel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2720, + }, + ["tradeHashes"] = { + [2094646950] = { + "1% increased Elemental Damage per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUniqueBodyStrDex4"] = { + "(50-80)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(50-80)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { + "(15-20)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(15-20)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUniqueShieldDex7"] = { + "(20-30)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(20-30)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__1"] = { + "(30-35)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(30-35)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__2"] = { + "(80-100)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(80-100)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__3"] = { + "(7-13)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(7-13)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__4"] = { + "(60-80)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(60-80)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__4_2"] = { + "(20-30)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(20-30)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChaosDamageUnique__5"] = { + "(20-40)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(20-40)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChillDurationUniqueBodyDex1"] = { + "25% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "25% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChillDurationUniqueBodyStrInt3"] = { + "150% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "150% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChillDurationUniqueQuiver5"] = { + "(30-40)% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 13, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "(30-40)% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedChillDurationUnique__1"] = { + "(35-50)% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "(35-50)% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { + "100% increased Claw Physical Damage when on Low Life", + ["affix"] = "", + ["group"] = "IncreasedClawDamageOnLowLife", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2365, + }, + ["tradeHashes"] = { + [1081444608] = { + "100% increased Claw Physical Damage when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedClawDamageOnLowLifeUnique__1__"] = { + "200% increased Damage with Claws while on Low Life", + ["affix"] = "", + ["group"] = "IncreasedClawAllDamageOnLowLife", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 5664, + }, + ["tradeHashes"] = { + [1629782265] = { + "200% increased Damage with Claws while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { + "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", + ["affix"] = "", + ["group"] = "IncreasedColdDamageIfUsedFireSkillRecently", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 5679, + }, + ["tradeHashes"] = { + [3612256591] = { + "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedColdDamagePerBlockChanceUnique__1"] = { + "1% increased Cold Damage per 1% Chance to Block Attack Damage", + ["affix"] = "", + ["group"] = "IncreasedColdDamagePerBlockChance", + ["level"] = 74, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 3268, + }, + ["tradeHashes"] = { + [4150597533] = { + "1% increased Cold Damage per 1% Chance to Block Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { + "(15-20)% increased Cold Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreasedColdDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 5683, + }, + ["tradeHashes"] = { + [329974315] = { + "(15-20)% increased Cold Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { + "(15-20)% increased Cold Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreasedColdDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 5683, + }, + ["tradeHashes"] = { + [329974315] = { + "(15-20)% increased Cold Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { + "(100-200)% increased Cold Damage while your Off Hand is empty", + ["affix"] = "", + ["group"] = "IncreasedColdDamageWhileOffhandIsEmpty", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 5687, + }, + ["tradeHashes"] = { + [3520048646] = { + "(100-200)% increased Cold Damage while your Off Hand is empty", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { + "10% increased Experience Gain for Corrupted Gems", + ["affix"] = "", + ["group"] = "IncreasedCorruptedGemExperience", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 2839, + }, + ["tradeHashes"] = { + [47271484] = { + "10% increased Experience Gain for Corrupted Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCostOfMovementSkillsUnique_1"] = { + "25% increased Movement Skill Mana Cost", + ["affix"] = "", + ["group"] = "IncreasedCostOfMovementSkills", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 3835, + }, + ["tradeHashes"] = { + [3992153900] = { + "25% increased Movement Skill Mana Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCurseDurationUniqueHelmetInt9"] = { + "Curse Skills have (30-50)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "CurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5934, + }, + ["tradeHashes"] = { + [1435748744] = { + "Curse Skills have (30-50)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCurseDurationUniqueShieldDex4"] = { + "Curse Skills have 100% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "CurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5934, + }, + ["tradeHashes"] = { + [1435748744] = { + "Curse Skills have 100% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCurseDurationUniqueShieldStrDex2"] = { + "Curse Skills have 100% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "CurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5934, + }, + ["tradeHashes"] = { + [1435748744] = { + "Curse Skills have 100% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedCurseEffectUnique__1"] = { + "50% increased effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "50% increased effect of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { + "(60-80)% increased Damage while you have no Frenzy Charges", + ["affix"] = "", + ["group"] = "DamageOnNoFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3440, + }, + ["tradeHashes"] = { + [3905661226] = { + "(60-80)% increased Damage while you have no Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { + "60% increased Damage if you've Frozen an Enemy Recently", + ["affix"] = "", + ["group"] = "IncreasedDamageIfFrozenRecently", + ["level"] = 44, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5992, + }, + ["tradeHashes"] = { + [1064477264] = { + "60% increased Damage if you've Frozen an Enemy Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageIfGolemSummonedRecently__1"] = { + "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", + ["affix"] = "", + ["group"] = "IncreasedDamageIfGolemSummonedRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3376, + }, + ["tradeHashes"] = { + [3384291300] = { + "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageIfShockedRecentlyUnique__1"] = { + "(20-50)% increased Damage if you have Shocked an Enemy Recently", + ["affix"] = "", + ["group"] = "IncreasedDamageIfShockedRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5993, + }, + ["tradeHashes"] = { + [908650225] = { + "(20-50)% increased Damage if you have Shocked an Enemy Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { + "(10-20)% increased Damage per Curse on you", + ["affix"] = "", + ["group"] = "IncreasedDamagePerCurseOnSelf", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1173, + }, + ["tradeHashes"] = { + [1019020209] = { + "(10-20)% increased Damage per Curse on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { + "(10-20)% increased Damage per Curse on you", + ["affix"] = "", + ["group"] = "IncreasedDamagePerCurseOnSelf", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1173, + }, + ["tradeHashes"] = { + [1019020209] = { + "(10-20)% increased Damage per Curse on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { + "(10-20)% increased Damage with Hits per Curse on Enemy", + ["affix"] = "", + ["group"] = "IncreasedDamagePerCurse", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2749, + }, + ["tradeHashes"] = { + [1818773442] = { + "(10-20)% increased Damage with Hits per Curse on Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerEnduranceChargeUnique_1"] = { + "4% increased Melee Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "IncreasedDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3829, + }, + ["tradeHashes"] = { + [1275066948] = { + "4% increased Melee Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { + "20% increased Damage with Hits for each Level higher the Enemy is than you", + ["affix"] = "", + ["group"] = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3845, + }, + ["tradeHashes"] = { + [4095359151] = { + "20% increased Damage with Hits for each Level higher the Enemy is than you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerLowestAttributeUnique__1"] = { + "1% increased Damage per 5 of your lowest Attribute", + ["affix"] = "", + ["group"] = "IncreasedDamagePerLowestAttribute", + ["level"] = 85, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6003, + }, + ["tradeHashes"] = { + [35476451] = { + "1% increased Damage per 5 of your lowest Attribute", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerMagicItemJewel25"] = { + "(20-25)% increased Damage for each Magic Item Equipped", + ["affix"] = "", + ["group"] = "IncreasedDamagePerMagicItem", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2809, + }, + ["tradeHashes"] = { + [886366428] = { + "(20-25)% increased Damage for each Magic Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerPowerChargeUnique__1"] = { + "5% increased Damage per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6009, + }, + ["tradeHashes"] = { + [2034658008] = { + "5% increased Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { + "15% increased Elemental Damage per Grand Spectrum", + ["affix"] = "", + ["group"] = "IncreasedDamagePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 3814, + }, + ["tradeHashes"] = { + [3163738488] = { + "15% increased Elemental Damage per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageTakenUnique__1"] = { + "10% increased Damage taken", + ["affix"] = "", + ["group"] = "DamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1963, + }, + ["tradeHashes"] = { + [3691641145] = { + "10% increased Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageToChilledEnemies1"] = { + "(15-20)% increased Damage with Hits against Chilled Enemies", + ["affix"] = "", + ["group"] = "IncreasedDamageToChilledEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7199, + }, + ["tradeHashes"] = { + [2097550886] = { + "(15-20)% increased Damage with Hits against Chilled Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { + "(25-40)% increased Damage with Hits against Ignited Enemies", + ["affix"] = "", + ["group"] = "IncreasedDamageToIgnitedTargets", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7187, + }, + ["tradeHashes"] = { + [3585754616] = { + "(25-40)% increased Damage with Hits against Ignited Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { + "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", + ["affix"] = "", + ["group"] = "DamageVsFullLifePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2733, + }, + ["tradeHashes"] = { + [2111067745] = { + "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { + "2% increased Damage per Power Charge with Hits against Enemies on Low Life", + ["affix"] = "", + ["group"] = "DamageVsLowLivePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2734, + }, + ["tradeHashes"] = { + [82392902] = { + "2% increased Damage per Power Charge with Hits against Enemies on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { + "(25-30)% increased Damage while Leeching", + ["affix"] = "", + ["group"] = "IncreasedDamageWhileLeechingLife", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2795, + }, + ["tradeHashes"] = { + [310246444] = { + "(25-30)% increased Damage while Leeching", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageWhileLeechingUnique__1"] = { + "(15-25)% increased Damage while Leeching", + ["affix"] = "", + ["group"] = "IncreasedDamageWhileLeechingLife", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2795, + }, + ["tradeHashes"] = { + [310246444] = { + "(15-25)% increased Damage while Leeching", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageWhileLeechingUnique__2__"] = { + "(15-25)% increased Damage while Leeching", + ["affix"] = "", + ["group"] = "IncreasedDamageWhileLeechingLife", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2795, + }, + ["tradeHashes"] = { + [310246444] = { + "(15-25)% increased Damage while Leeching", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDamageWhileLeechingUnique__3"] = { + "(25-50)% increased Damage while Leeching", + ["affix"] = "", + ["group"] = "IncreasedDamageWhileLeechingLife", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2795, + }, + ["tradeHashes"] = { + [310246444] = { + "(25-50)% increased Damage while Leeching", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedDefensesJewel"] = { + "(4-6)% increased Global Armour, Evasion and Energy Shield", + ["affix"] = "Defensive", + ["group"] = "IncreasedDefensesForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 2588, + }, + ["tradeHashes"] = { + [1177404658] = { + "(4-6)% increased Global Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { + "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", + ["affix"] = "", + ["group"] = "IncreasedElementalDamageIfKilledCursedEnemyRecently", + ["level"] = 77, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 6265, + }, + ["tradeHashes"] = { + [850820277] = { + "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { + "(4-7)% increased Elemental Damage per Frenzy Charge", + ["affix"] = "", + ["group"] = "IncreasedElementalDamagePerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 1877, + }, + ["tradeHashes"] = { + [1586440250] = { + "(4-7)% increased Elemental Damage per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { + "1% increased Chaos Damage per Level", + ["affix"] = "", + ["group"] = "ElementalDamagePerLevel", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 2721, + }, + ["tradeHashes"] = { + [4084331136] = { + "1% increased Chaos Damage per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { + "Damage Penetrates 25% Fire Resistance", + ["affix"] = "", + ["group"] = "EnemyFireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 25% Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedEnergyShieldJewel_"] = { + "+(8-12) to maximum Energy Shield", + ["affix"] = "Glowing", + ["group"] = "IncreasedEnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(8-12) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedEvasionIfHitRecentlyUnique___1"] = { + "100% increased Evasion Rating if you have been Hit Recently", + ["affix"] = "", + ["group"] = "IncreasedEvasionIfHitRecently", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 3840, + }, + ["tradeHashes"] = { + [1073310669] = { + "100% increased Evasion Rating if you have been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedEvasionJewel"] = { + "(14-18)% increased Evasion Rating", + ["affix"] = "Evasive", + ["group"] = "IncreasedEvasionForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(14-18)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["IncreasedEvasionWithOnslaughtUnique_1"] = { + "100% increased Evasion Rating during Onslaught", + ["affix"] = "", + ["group"] = "IncreasedEvasionWithOnslaught", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1425, + }, + ["tradeHashes"] = { + [156734303] = { + "100% increased Evasion Rating during Onslaught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedExperienceUniqueIntHelmet3"] = { + "5% increased Experience gain", + ["affix"] = "", + ["group"] = "ExperienceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1471, + }, + ["tradeHashes"] = { + [3666934677] = { + "5% increased Experience gain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedExperienceUniqueRing14"] = { + "2% increased Experience gain", + ["affix"] = "", + ["group"] = "ExperienceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1471, + }, + ["tradeHashes"] = { + [3666934677] = { + "2% increased Experience gain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedExperienceUniqueSceptre1"] = { + "3% increased Experience gain", + ["affix"] = "", + ["group"] = "ExperienceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1471, + }, + ["tradeHashes"] = { + [3666934677] = { + "3% increased Experience gain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedExperienceUniqueTwoHandMace4"] = { + "(30-50)% reduced Experience gain", + ["affix"] = "", + ["group"] = "ExperienceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1471, + }, + ["tradeHashes"] = { + [3666934677] = { + "(30-50)% reduced Experience gain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { + "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", + ["affix"] = "", + ["group"] = "IncreasedFireDamageIfUsedColdSkillRecently", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6567, + }, + ["tradeHashes"] = { + [4167600809] = { + "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { + "20% increased Fire Damage taken", + ["affix"] = "", + ["group"] = "FireDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 1967, + }, + ["tradeHashes"] = { + [3743301799] = { + "20% increased Fire Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { + "10% increased Fire Damage taken", + ["affix"] = "", + ["group"] = "FireDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 1967, + }, + ["tradeHashes"] = { + [3743301799] = { + "10% increased Fire Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { + "100% increased Fire Damage", + ["affix"] = "", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "100% increased Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { + "(50-100)% increased Charges gained by Other Flasks during Effect", + ["affix"] = "", + ["group"] = "IncreasedFlaskChargesForOtherFlasksDuringEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 777, + }, + ["tradeHashes"] = { + [1085359447] = { + "(50-100)% increased Charges gained by Other Flasks during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFlaskDurationUnique__1"] = { + "(20-30)% reduced Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(20-30)% reduced Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedFlaskEffectUniqueJewel45"] = { + "Flasks applied to you have 8% increased Effect", + ["affix"] = "", + ["group"] = "FlaskEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 2504, + }, + ["tradeHashes"] = { + [114734841] = { + "Flasks applied to you have 8% increased Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { + "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", + ["affix"] = "", + ["group"] = "IncreasedGolemDamageIfGolemSummonedRecently", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 3377, + }, + ["tradeHashes"] = { + [2869193493] = { + "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { + "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", + ["affix"] = "", + ["group"] = "IncreasedGolemDamageIfGolemSummonedRecently", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 3377, + }, + ["tradeHashes"] = { + [2869193493] = { + "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedGolemDamagePerGolemUnique__1"] = { + "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", + ["affix"] = "", + ["group"] = "IncreasedGolemDamagePerGolem", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 3852, + }, + ["tradeHashes"] = { + [2114157293] = { + "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedIntelligencePerUniqueUniqueRing14"] = { + "2% increased Intelligence for each Unique Item Equipped", + ["affix"] = "", + ["group"] = "IncreasedIntelligencePerUnique", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2373, + }, + ["tradeHashes"] = { + [4207939995] = { + "2% increased Intelligence for each Unique Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { + "500% increased Intelligence Requirement", + ["affix"] = "", + ["group"] = "IncreasedIntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 821, + }, + ["tradeHashes"] = { + [18234720] = { + "500% increased Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { + "60% increased Intelligence Requirement", + ["affix"] = "", + ["group"] = "IncreasedIntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 821, + }, + ["tradeHashes"] = { + [18234720] = { + "60% increased Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeAndManaJewel"] = { + "+(4-6) to maximum Life", + "+(4-6) to maximum Mana", + ["affix"] = "Determined", + ["group"] = "LifeAndManaForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 887, + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(4-6) to maximum Mana", + }, + [3299347043] = { + "+(4-6) to maximum Life", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedLifeImplicitGlovesDemigods1"] = { + "+(20-30) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(20-30) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeJewel"] = { + "+(8-12) to maximum Life", + ["affix"] = "Healthy", + ["group"] = "IncreasedLifeForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(8-12) to maximum Life", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedLifeLeechRateUniqueAmulet20"] = { + "Leech 30% faster", + ["affix"] = "", + ["group"] = "LifeManaESLeechRate", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "mana", + "energy_shield", + }, + ["statOrder"] = { + 1894, + }, + ["tradeHashes"] = { + [2460686383] = { + "Leech 30% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { + "Leech Life 100% faster", + ["affix"] = "", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life 100% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeLeechRateUnique__1"] = { + "Leech Life 50% faster", + ["affix"] = "", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life 50% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeLeechRateUnique__2"] = { + "Leech Life (500-1000)% faster", + ["affix"] = "", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 52, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (500-1000)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { + "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", + ["affix"] = "", + ["group"] = "IncreasedLifeWhileNoCorruptedItems", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3854, + }, + ["tradeHashes"] = { + [2217962305] = { + "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { + "1% increased Lightning Damage per 10 Intelligence", + ["affix"] = "", + ["group"] = "IncreasedLightningDamagePer10Intelligence", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 3785, + }, + ["tradeHashes"] = { + [990219738] = { + "1% increased Lightning Damage per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLightningDamageTakenUnique__1"] = { + "40% increased Lightning Damage taken", + ["affix"] = "", + ["group"] = "IncreasedLightningDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 3088, + }, + ["tradeHashes"] = { + [1276918229] = { + "40% increased Lightning Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { + "500% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "500% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedLocalAttributeRequirementsUnique__1"] = { + "800% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "800% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaJewel"] = { + "+(8-12) to maximum Mana", + ["affix"] = "Learned", + ["group"] = "IncreasedManaForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(8-12) to maximum Mana", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["IncreasedManaLeechRateUnique__1"] = { + "Leech Mana (500-1000)% faster", + ["affix"] = "", + ["group"] = "IncreasedManaLeechRate", + ["level"] = 52, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1898, + }, + ["tradeHashes"] = { + [3554867738] = { + "Leech Mana (500-1000)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaRecoveryRateUnique__1"] = { + "10% increased Mana Recovery rate", + ["affix"] = "", + ["group"] = "ManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1450, + }, + ["tradeHashes"] = { + [3513180117] = { + "10% increased Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaRegenJewel"] = { + "(12-15)% increased Mana Regeneration Rate", + ["affix"] = "Energetic", + ["group"] = "IncreasedManaRegenForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(12-15)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { + "60% increased Mana Regeneration Rate while stationary", + ["affix"] = "", + ["group"] = "ManaRegenerationWhileStationary", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3986, + }, + ["tradeHashes"] = { + [3308030688] = { + "60% increased Mana Regeneration Rate while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { + "10% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "10% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaReservationsCostUnique__1"] = { + "80% reduced Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedAllReservationLegacy", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1958, + }, + ["tradeHashes"] = { + [4202507508] = { + "80% reduced Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedManaReservationsCostUnique__2"] = { + "20% reduced Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedAllReservationLegacy", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1958, + }, + ["tradeHashes"] = { + [4202507508] = { + "20% reduced Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { + "+5% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+5% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUniqueStaff7"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUniqueWand3"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUnique__1"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUnique__2"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUnique__3"] = { + "+2 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+2 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumPowerChargesUnique__4"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { + "+4% to all maximum Resistances", + ["affix"] = "", + ["group"] = "MaximumResistances", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1493, + }, + ["tradeHashes"] = { + [569299859] = { + "+4% to all maximum Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumResistsUnique__1"] = { + "+(1-4)% to all maximum Resistances", + ["affix"] = "", + ["group"] = "MaximumResistances", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1493, + }, + ["tradeHashes"] = { + [569299859] = { + "+(1-4)% to all maximum Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMaximumResistsUnique__2"] = { + "-5% to all maximum Resistances", + ["affix"] = "", + ["group"] = "MaximumResistances", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1493, + }, + ["tradeHashes"] = { + [569299859] = { + "-5% to all maximum Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { + "100% increased Melee Physical Damage against Ignited Enemies", + ["affix"] = "", + ["group"] = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 3971, + }, + ["tradeHashes"] = { + [1332534089] = { + "100% increased Melee Physical Damage against Ignited Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { + "+0.2 metres to Melee Strike Range", + ["affix"] = "", + ["group"] = "MeleeWeaponAndUnarmedRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2314, + }, + ["tradeHashes"] = { + [2264295449] = { + "+0.2 metres to Melee Strike Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { + "+0.2 metres to Melee Strike Range", + ["affix"] = "", + ["group"] = "MeleeWeaponAndUnarmedRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2314, + }, + ["tradeHashes"] = { + [2264295449] = { + "+0.2 metres to Melee Strike Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMinionAttackSpeedUnique__1_"] = { + "Minions have (10-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "MinionAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "attack", + "speed", + "minion", + }, + ["statOrder"] = { + 2664, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3375935924] = { + "Minions have (10-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { + "Minions deal 70% increased Damage if you've Hit Recently", + ["affix"] = "", + ["group"] = "IncreasedMinionDamageIfYouHitEnemy", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9039, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [2337295272] = { + "Minions deal 70% increased Damage if you've Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { + "Minions deal 1% increased Damage per 5 Dexterity", + ["affix"] = "", + ["group"] = "IncreasedMinionDamagePerDexterity", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1723, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [4187741589] = { + "Minions deal 1% increased Damage per 5 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { + "30% increased Movement Speed while Cursed", + ["affix"] = "", + ["group"] = "MovementVelocityWhileCursed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2401, + }, + ["tradeHashes"] = { + [3988943320] = { + "30% increased Movement Speed while Cursed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { + "(4-7)% increased Physical Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "IncreasedPhysicalDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1878, + }, + ["tradeHashes"] = { + [2481358827] = { + "(4-7)% increased Physical Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { + "10% increased Physical Damage per Endurance Charge", + ["affix"] = "", + ["group"] = "IncreasedPhysicalDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1878, + }, + ["tradeHashes"] = { + [2481358827] = { + "10% increased Physical Damage per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { + "20% increased Physical Damage taken", + ["affix"] = "", + ["group"] = "PhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1966, + }, + ["tradeHashes"] = { + [3853018505] = { + "20% increased Physical Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { + "(40-50)% increased Physical Damage taken", + ["affix"] = "", + ["group"] = "PhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1966, + }, + ["tradeHashes"] = { + [3853018505] = { + "(40-50)% increased Physical Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { + "10% increased Physical Damage taken", + ["affix"] = "", + ["group"] = "PhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1966, + }, + ["tradeHashes"] = { + [3853018505] = { + "10% increased Physical Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { + "10% increased Physical Damage taken while moving", + ["affix"] = "", + ["group"] = "IncreasedPhysicalDamageTakenWhileMoving", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 3985, + }, + ["tradeHashes"] = { + [4052714663] = { + "10% increased Physical Damage taken while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPowerChargeDurationUniqueWand3"] = { + "15% increased Power Charge Duration", + ["affix"] = "", + ["group"] = "IncreasedPowerChargeDuration", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "15% increased Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedPowerChargeDurationUnique__1"] = { + "(80-100)% increased Power Charge Duration", + ["affix"] = "", + ["group"] = "IncreasedPowerChargeDuration", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "(80-100)% increased Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedRarityPerRampageStacksUnique__1"] = { + "1% increased Rarity of Items found per 15 Rampage Kills", + ["affix"] = "", + ["group"] = "IncreasedRarityPerRampageStacks", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 7393, + }, + ["tradeHashes"] = { + [4260403588] = { + "1% increased Rarity of Items found per 15 Rampage Kills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { + "40% increased Rarity of Items Dropped by Frozen Enemies", + ["affix"] = "", + ["group"] = "IncreasedRarityWhenSlayingFrozen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2470, + }, + ["tradeHashes"] = { + [2138434718] = { + "40% increased Rarity of Items Dropped by Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { + "100% increased Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "100% increased Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { + "8% increased Spell Damage per 5% Chance to Block Attack Damage", + ["affix"] = "", + ["group"] = "SpellDamagePerBlockChance", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 2500, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2449668043] = { + "8% increased Spell Damage per 5% Chance to Block Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { + "(4-7)% increased Spell Damage per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedSpellDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1879, + }, + ["tradeHashes"] = { + [827329571] = { + "(4-7)% increased Spell Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { + "25% increased Spell Damage per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedSpellDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1879, + }, + ["tradeHashes"] = { + [827329571] = { + "25% increased Spell Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { + "(12-16)% increased Spell Damage per Power Charge", + ["affix"] = "", + ["group"] = "IncreasedSpellDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1879, + }, + ["tradeHashes"] = { + [827329571] = { + "(12-16)% increased Spell Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedSpellDamageWhileShockedUnique__1"] = { + "50% increased Spell Damage while Shocked", + ["affix"] = "", + ["group"] = "IncreasedSpellDamageWhileShocked", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10023, + }, + ["tradeHashes"] = { + [2088288068] = { + "50% increased Spell Damage while Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { + "500% increased Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "500% increased Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedStrengthRequirementUniqueStaff8"] = { + "40% increased Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "40% increased Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { + "25% increased Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "25% increased Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedStunDurationOnSelfUnique_1"] = { + "50% increased Stun Duration on you", + ["affix"] = "", + ["group"] = "IncreasedStunDurationOnSelf", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3828, + }, + ["tradeHashes"] = { + [1067429236] = { + "50% increased Stun Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { + "30% increased Elemental Damage with Attack Skills during any Flask Effect", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamageDuringFlask", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "flask", + "damage", + "elemental", + "attack", + }, + ["statOrder"] = { + 2519, + }, + ["tradeHashes"] = { + [782323220] = { + "30% increased Elemental Damage with Attack Skills during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["InfernalCryThresholdJewel"] = { + "With at least 40 Strength in Radius, Combust is Disabled", + ["affix"] = "", + ["group"] = "InfernalCryThresholdJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7758, + }, + ["tradeHashes"] = { + [2471517399] = { + "With at least 40 Strength in Radius, Combust is Disabled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IntelligenceJewel"] = { + "+(12-16) to Intelligence", + ["affix"] = "of Intelligence", + ["group"] = "IntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(12-16) to Intelligence", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["IntelligenceRequirementsUniqueBow12"] = { + "+212 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+212 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IntelligenceRequirementsUniqueOneHandMace3"] = { + "+300 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+300 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IntelligenceUniqueJewel11"] = { + "+(16-24) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(16-24) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IntelligenceUniqueJewel35"] = { + "+(16-24) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(16-24) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { + "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", + ["affix"] = "", + ["group"] = "IntimidateOnHitWithMeleeAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7628, + }, + ["tradeHashes"] = { + [642457541] = { + "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IronReflexes"] = { + "Iron Reflexes", + ["affix"] = "", + ["group"] = "IronReflexes", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 10711, + }, + ["tradeHashes"] = { + [326965591] = { + "Iron Reflexes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["IronWillUniqueGlovesStrInt4__"] = { + "Iron Will", + ["affix"] = "", + ["group"] = "IronWill", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10712, + }, + ["tradeHashes"] = { + [281311123] = { + "Iron Will", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { + "Socketed Gems are Supported by Level 10 Cold to Fire", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetColdToFire", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 339, + }, + ["tradeHashes"] = { + [550444281] = { + "Socketed Gems are Supported by Level 10 Cold to Fire", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsColdToFireSupportUniqueStaff13"] = { + "Socketed Gems are Supported by Level 5 Cold to Fire", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetColdToFire", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 339, + }, + ["tradeHashes"] = { + [550444281] = { + "Socketed Gems are Supported by Level 5 Cold to Fire", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsColdToFireSupportUnique__1"] = { + "Socketed Gems are Supported by Level 30 Cold to Fire", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetColdToFire", + ["level"] = 75, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 339, + }, + ["tradeHashes"] = { + [550444281] = { + "Socketed Gems are Supported by Level 30 Cold to Fire", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { + "Socketed Gems are Supported by Level 10 Concentrated Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 330, + }, + ["tradeHashes"] = { + [2388360415] = { + "Socketed Gems are Supported by Level 10 Concentrated Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { + "Socketed Gems are Supported by Level 20 Concentrated Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 330, + }, + ["tradeHashes"] = { + [2388360415] = { + "Socketed Gems are Supported by Level 20 Concentrated Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { + "Socketed Gems are Supported by Level 15 Concentrated Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 330, + }, + ["tradeHashes"] = { + [2388360415] = { + "Socketed Gems are Supported by Level 15 Concentrated Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsConcentratedAOESupportUnique__1"] = { + "Socketed Gems are Supported by Level 5 Concentrated Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 330, + }, + ["tradeHashes"] = { + [2388360415] = { + "Socketed Gems are Supported by Level 5 Concentrated Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { + "Socketed Gems are Supported by Level 10 Added Fire Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 338, + }, + ["tradeHashes"] = { + [2572192375] = { + "Socketed Gems are Supported by Level 10 Added Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { + "Socketed Gems are Supported by Level 10 Fire Penetration", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetFirePenetration", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 341, + }, + ["tradeHashes"] = { + [3265951306] = { + "Socketed Gems are Supported by Level 10 Fire Penetration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { + "Socketed Gems are supported by Level 30 Blind", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBlindLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 346, + }, + ["tradeHashes"] = { + [2223640518] = { + "Socketed Gems are supported by Level 30 Blind", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { + "Socketed Gems are supported by Level 6 Blind", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBlindLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 346, + }, + ["tradeHashes"] = { + [2223640518] = { + "Socketed Gems are supported by Level 6 Blind", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsSupportBlindUniqueWand1"] = { + "Socketed Gems are supported by Level 20 Blind", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBlindLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 346, + }, + ["tradeHashes"] = { + [2223640518] = { + "Socketed Gems are supported by Level 20 Blind", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemActsAsSupportBlindUnique__1"] = { + "Socketed Gems are supported by Level 10 Blind", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBlindLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 346, + }, + ["tradeHashes"] = { + [2223640518] = { + "Socketed Gems are supported by Level 10 Blind", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { + "Gore Footprints", + ["affix"] = "", + ["group"] = "ItemBloodFootprints", + ["level"] = 1, + ["modTags"] = { + "green_herring", + }, + ["statOrder"] = { + 10751, + }, + ["tradeHashes"] = { + [2319448214] = { + "Gore Footprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { + "Gore Footprints", + ["affix"] = "", + ["group"] = "ItemBloodFootprints", + ["level"] = 1, + ["modTags"] = { + "green_herring", + }, + ["statOrder"] = { + 10751, + }, + ["tradeHashes"] = { + [2319448214] = { + "Gore Footprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemBloodFootstepsUnique__1"] = { + "Gore Footprints", + ["affix"] = "", + ["group"] = "ItemBloodFootprints", + ["level"] = 1, + ["modTags"] = { + "green_herring", + }, + ["statOrder"] = { + 10751, + }, + ["tradeHashes"] = { + [2319448214] = { + "Gore Footprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemCanAlsoRollRingMods"] = { + "Can roll Ring Modifiers", + ["affix"] = "", + ["group"] = "ItemCanAlsoRollRingMods", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6166, + }, + ["tags"] = { + "ring", + "genesis_tree_caster", + "genesis_tree_minion", + }, + ["tradeHashes"] = { + [129891052] = { + "Can roll Ring Modifiers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemCanHaveBaseAndCatalystQuality"] = { + "Catalysts can be applied to this item", + ["affix"] = "", + ["group"] = "ItemCanHaveBaseAndCatalystQuality", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7391, + }, + ["tradeHashes"] = { + [254952842] = { + "Catalysts can be applied to this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemDropsOnDeathUniqueAmulet12"] = { + "Item drops on death", + ["affix"] = "", + ["group"] = "ItemDropsOnDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2340, + }, + ["tradeHashes"] = { + [2524282232] = { + "Item drops on death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { + "(20-30)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(20-30)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemGrantsIllusoryWarpUnique__1"] = { + "Grants Level 20 Illusory Warp Skill", + ["affix"] = "", + ["group"] = "ItemGrantsIllusoryWarp", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 460, + }, + ["tradeHashes"] = { + [3279574030] = { + "Grants Level 20 Illusory Warp Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemLimitUniqueJewel10"] = { + "Survival", + ["affix"] = "", + ["group"] = "SurvivalJewelDisplay", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10641, + }, + ["tradeHashes"] = { + [2995661301] = { + "Survival", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemLimitUniqueJewel8"] = { + "Survival", + ["affix"] = "", + ["group"] = "SurvivalJewelDisplay", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10641, + }, + ["tradeHashes"] = { + [2995661301] = { + "Survival", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemLimitUniqueJewel9"] = { + "Survival", + ["affix"] = "", + ["group"] = "SurvivalJewelDisplay", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10641, + }, + ["tradeHashes"] = { + [2995661301] = { + "Survival", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemQuantityOnLowLifeUnique__1"] = { + "(10-16)% increased Quantity of Items found when on Low Life", + ["affix"] = "", + ["group"] = "ItemQuantityOnLowLife", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 1462, + }, + ["tradeHashes"] = { + [760855772] = { + "(10-16)% increased Quantity of Items found when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { + "2% increased Quantity of Items found per Chest opened Recently", + ["affix"] = "", + ["group"] = "ItemQuantityPerChestOpenedRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7392, + }, + ["tradeHashes"] = { + [3729758391] = { + "2% increased Quantity of Items found per Chest opened Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemQuantityWhenFrozenUniqueBow9"] = { + "15% increased Quantity of Items Dropped by Slain Frozen Enemies", + ["affix"] = "", + ["group"] = "ItemQuantityWhenFrozen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2467, + }, + ["tradeHashes"] = { + [3304763863] = { + "15% increased Quantity of Items Dropped by Slain Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { + "(10-15)% increased Quantity of Items found with a Magic Item Equipped", + ["affix"] = "", + ["group"] = "ItemQuantityWhileWearingAMagicItem", + ["level"] = 10, + ["modTags"] = { + }, + ["statOrder"] = { + 3863, + }, + ["tradeHashes"] = { + [1498954300] = { + "(10-15)% increased Quantity of Items found with a Magic Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemRarityJewel"] = { + "(4-6)% increased Rarity of Items found", + ["affix"] = "of Raiding", + ["group"] = "ItemRarityForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(4-6)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ItemRarityOnLowLifeUniqueBootsInt1"] = { + "100% increased Rarity of Items found when on Low Life", + ["affix"] = "", + ["group"] = "ItemRarityOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1467, + }, + ["tradeHashes"] = { + [2929867083] = { + "100% increased Rarity of Items found when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemRarityWhenShockedUniqueBow9"] = { + "30% increased Rarity of Items Dropped by Slain Shocked Enemies", + ["affix"] = "", + ["group"] = "ItemRarityWhenShocked", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2469, + }, + ["tradeHashes"] = { + [3188291252] = { + "30% increased Rarity of Items Dropped by Slain Shocked Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemRarityWhileWearingANormalItemUnique__1"] = { + "(80-100)% increased Rarity of Items found with a Normal Item Equipped", + ["affix"] = "", + ["group"] = "ItemRarityWhileWearingANormalItem", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3862, + }, + ["tradeHashes"] = { + [4151190513] = { + "(80-100)% increased Rarity of Items found with a Normal Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { + "Mercury Footprints", + ["affix"] = "", + ["group"] = "ItemSilverFootsteps", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10758, + }, + ["tradeHashes"] = { + [3970396418] = { + "Mercury Footprints", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ItemStatsDoubledInBreachImplicit"] = { + "Properties are doubled while in a Breach", + ["affix"] = "", + ["group"] = "StatsDoubledInBreach", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7749, + }, + ["tradeHashes"] = { + [202275580] = { + "Properties are doubled while in a Breach", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelDexToInt"] = { + "Dexterity from Passives in Radius is Transformed to Intelligence", + ["affix"] = "", + ["group"] = "JewelDexToInt", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2784, + }, + ["tradeHashes"] = { + [2075199521] = { + "Dexterity from Passives in Radius is Transformed to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelDexToIntUniqueJewel11"] = { + "Dexterity from Passives in Radius is Transformed to Intelligence", + ["affix"] = "", + ["group"] = "JewelDexToInt", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2784, + }, + ["tradeHashes"] = { + [2075199521] = { + "Dexterity from Passives in Radius is Transformed to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelDexToStr"] = { + "Dexterity from Passives in Radius is Transformed to Strength", + ["affix"] = "", + ["group"] = "JewelDexToStr", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2783, + }, + ["tradeHashes"] = { + [4097174922] = { + "Dexterity from Passives in Radius is Transformed to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelDexToStrUniqueJewel37"] = { + "Dexterity from Passives in Radius is Transformed to Strength", + ["affix"] = "", + ["group"] = "JewelDexToStr", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2783, + }, + ["tradeHashes"] = { + [4097174922] = { + "Dexterity from Passives in Radius is Transformed to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelIntToDex"] = { + "Intelligence from Passives in Radius is Transformed to Dexterity", + ["affix"] = "", + ["group"] = "JewelIntToDex", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2786, + }, + ["tradeHashes"] = { + [1608425196] = { + "Intelligence from Passives in Radius is Transformed to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelIntToDexUniqueJewel36"] = { + "Intelligence from Passives in Radius is Transformed to Dexterity", + ["affix"] = "", + ["group"] = "JewelIntToDex", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2786, + }, + ["tradeHashes"] = { + [1608425196] = { + "Intelligence from Passives in Radius is Transformed to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelIntToStr"] = { + "Intelligence from Passives in Radius is Transformed to Strength", + ["affix"] = "", + ["group"] = "JewelIntToStr", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2785, + }, + ["tradeHashes"] = { + [1285587221] = { + "Intelligence from Passives in Radius is Transformed to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelIntToStrUniqueJewel34"] = { + "Intelligence from Passives in Radius is Transformed to Strength", + ["affix"] = "", + ["group"] = "JewelIntToStr", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2785, + }, + ["tradeHashes"] = { + [1285587221] = { + "Intelligence from Passives in Radius is Transformed to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelRingRadiusValuesUnique__1"] = { + "Only affects Passives in Very Small Ring", + ["affix"] = "", + ["group"] = "JewelRingRadiusValues", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 15, + }, + ["tradeHashes"] = { + [3642528642] = { + "Only affects Passives in Very Small Ring", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelRingRadiusValuesUnique__2"] = { + "Only affects Passives in Medium-Large Ring", + ["affix"] = "", + ["group"] = "JewelRingRadiusValues", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 15, + }, + ["tradeHashes"] = { + [3642528642] = { + "Only affects Passives in Medium-Large Ring", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelStrToDex"] = { + "Strength from Passives in Radius is Transformed to Dexterity", + ["affix"] = "", + ["group"] = "JewelStrToDex", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2781, + }, + ["tradeHashes"] = { + [2237528173] = { + "Strength from Passives in Radius is Transformed to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelStrToDexUniqueJewel13"] = { + "Strength from Passives in Radius is Transformed to Dexterity", + ["affix"] = "", + ["group"] = "JewelStrToDex", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2781, + }, + ["tradeHashes"] = { + [2237528173] = { + "Strength from Passives in Radius is Transformed to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelStrToInt"] = { + "Strength from Passives in Radius is Transformed to Intelligence", + ["affix"] = "", + ["group"] = "JewelStrToInt", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2782, + }, + ["tradeHashes"] = { + [3771273420] = { + "Strength from Passives in Radius is Transformed to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelStrToIntUniqueJewel35"] = { + "Strength from Passives in Radius is Transformed to Intelligence", + ["affix"] = "", + ["group"] = "JewelStrToInt", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 2782, + }, + ["tradeHashes"] = { + [3771273420] = { + "Strength from Passives in Radius is Transformed to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["JewelUniqueAllocateDisconnectedPassives"] = { + "Passives in Radius can be Allocated without being connected to your tree", + ["affix"] = "", + ["group"] = "JewelUniqueAllocateDisconnectedPassives", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 814, + }, + ["tradeHashes"] = { + [4077035099] = { + "Passives in Radius can be Allocated without being connected to your tree", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KeeperOfTheArcVerisiumImplicit3Sockets1"] = { + "Has 3 Sockets", + ["affix"] = "", + ["group"] = "HasXSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 57, + }, + ["tradeHashes"] = { + [4077843608] = { + "Has 3 Sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KeeperOfTheArcVerisiumImplicitIntelligenceRequirement1"] = { + "+250 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+250 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KeeperOfTheArcVerisiumImplicitUnaffectedbyCurses1"] = { + "100% reduced Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "100% reduced Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { + "Every 5 seconds, gain a Verisium Infusion", + ["affix"] = "", + ["group"] = "VerisiumChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6711, + }, + ["tradeHashes"] = { + [3326854490] = { + "Every 5 seconds, gain a Verisium Infusion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { + "(25-50)% increased Runic Ward Regeneration Rate", + ["affix"] = "", + ["group"] = "WardRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10520, + }, + ["tradeHashes"] = { + [2392260628] = { + "(25-50)% increased Runic Ward Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KillEnemyInstantlyExarchDominantUnique__1"] = { + "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", + ["affix"] = "", + ["group"] = "KillEnemyInstantlyExarchDominant", + ["level"] = 77, + ["modTags"] = { + }, + ["statOrder"] = { + 7790, + }, + ["tradeHashes"] = { + [3768948090] = { + "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KilledMonsterItemRarityOnCritUniqueRing11"] = { + "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + ["affix"] = "", + ["group"] = "KilledMonsterItemRarityOnCrit", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2416, + }, + ["tradeHashes"] = { + [21824003] = { + "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KnockbackChanceJewel_"] = { + "(4-6)% chance to Knock Enemies Back on hit", + ["affix"] = "of Fending", + ["group"] = "KnockbackChanceForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1737, + }, + ["tradeHashes"] = { + [977908611] = { + "(4-6)% chance to Knock Enemies Back on hit", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["KnockbackChanceUnique__1"] = { + "10% chance to Knock Enemies Back on hit", + ["affix"] = "", + ["group"] = "KnockbackChanceForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1737, + }, + ["tradeHashes"] = { + [977908611] = { + "10% chance to Knock Enemies Back on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KnockbackCloseRangeUniqueBow6"] = { + "Bow Knockback at Close Range", + ["affix"] = "", + ["group"] = "ChinSolCloseRangeKnockBack", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2195, + }, + ["tradeHashes"] = { + [3261557635] = { + "Bow Knockback at Close Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KnockbackOnCounterattackChanceUnique__1"] = { + "100% chance to knockback on Counterattack", + ["affix"] = "", + ["group"] = "KnockbackOnCounterattack", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3303, + }, + ["tradeHashes"] = { + [399854017] = { + "100% chance to knockback on Counterattack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["KnockbackOnFlaskUseUniqueFlask9"] = { + "Adds Knockback to Melee Attacks during Effect", + ["affix"] = "", + ["group"] = "KnockbackOnFlaskUse", + ["level"] = 1, + ["modTags"] = { + "flask", + "attack", + }, + ["statOrder"] = { + 724, + }, + ["tradeHashes"] = { + [251342217] = { + "Adds Knockback to Melee Attacks during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LeechEnergyShieldInsteadofLife"] = { + "Life Leech is Converted to Energy Shield Leech", + ["affix"] = "", + ["group"] = "LeechEnergyShieldInsteadofLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 5771, + }, + ["tradeHashes"] = { + [3314050176] = { + "Life Leech is Converted to Energy Shield Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { + "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", + ["affix"] = "", + ["group"] = "LeftRingSlotElementalReflectDamageTaken", + ["level"] = 57, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 2482, + }, + ["tradeHashes"] = { + [2422197812] = { + "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LeftRingSlotManaRegenUniqueRing13"] = { + "Left ring slot: 100% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "LeftRingSlotManaRegen", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2433, + }, + ["tradeHashes"] = { + [195090426] = { + "Left ring slot: 100% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { + "Left ring slot: You cannot Recharge or Regenerate Energy Shield", + ["affix"] = "", + ["group"] = "LeftRingSlotNoEnergyShieldRegen", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2426, + }, + ["tradeHashes"] = { + [4263540840] = { + "Left ring slot: You cannot Recharge or Regenerate Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LessMineDamageUniqueStaff11"] = { + "35% less Mine Damage", + ["affix"] = "", + ["group"] = "LessMineDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1155, + }, + ["tradeHashes"] = { + [3298440988] = { + "35% less Mine Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LevelDesignTestingMissionRoomStoneCircle10"] = { + "Area contains a Summoning Circle", + "Area contains 10 Reactivation Runes", + ["affix"] = "", + ["group"] = "MapAdditionalStoneCircle", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8504, + 8504.1, + }, + ["tradeHashes"] = { + [2839545956] = { + "Area contains a Summoning Circle", + "Area contains 10 Reactivation Runes", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LevelDesignTestingMissionRoomStoneCircle12"] = { + "Area contains a Summoning Circle", + "Area contains 12 Reactivation Runes", + ["affix"] = "", + ["group"] = "MapAdditionalStoneCircle", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8504, + 8504.1, + }, + ["tradeHashes"] = { + [2839545956] = { + "Area contains a Summoning Circle", + "Area contains 12 Reactivation Runes", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LevelDesignTestingMissionRoomStoneCircle8"] = { + "Area contains a Summoning Circle", + "Area contains 8 Reactivation Runes", + ["affix"] = "", + ["group"] = "MapAdditionalStoneCircle", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8504, + 8504.1, + }, + ["tradeHashes"] = { + [2839545956] = { + "Area contains a Summoning Circle", + "Area contains 8 Reactivation Runes", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeAndEnergyShieldJewel"] = { + "(2-4)% increased maximum Energy Shield", + "(2-4)% increased maximum Life", + ["affix"] = "Faithful", + ["group"] = "LifeAndEnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 886, + 889, + }, + ["tradeHashes"] = { + [2482852589] = { + "(2-4)% increased maximum Energy Shield", + }, + [983749596] = { + "(2-4)% increased maximum Life", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { + "(10-15)% increased Energy Shield Recovery rate", + "(10-15)% increased Life Recovery rate", + ["affix"] = "", + ["group"] = "LifeAndEnergyShieldRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 1440, + 1445, + }, + ["tradeHashes"] = { + [3240073117] = { + "(10-15)% increased Life Recovery rate", + }, + [988575597] = { + "(10-15)% increased Energy Shield Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitImplicitMarakethClaw1"] = { + "Grants 6 Life and Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1505, + }, + ["tradeHashes"] = { + [1420170973] = { + "Grants 6 Life and Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitImplicitMarakethClaw2"] = { + "Grants 10 Life and Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1505, + }, + ["tradeHashes"] = { + [1420170973] = { + "Grants 10 Life and Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitImplicitMarakethClaw3"] = { + "Grants 14 Life and Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1505, + }, + ["tradeHashes"] = { + [1420170973] = { + "Grants 14 Life and Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { + "Grants 15 Life per Enemy Hit", + "Grants 6 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitSeparatedLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1041, + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 6 Mana per Enemy Hit", + }, + [821021828] = { + "Grants 15 Life per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { + "Grants 28 Life per Enemy Hit", + "Grants 10 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitSeparatedLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1041, + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 10 Mana per Enemy Hit", + }, + [821021828] = { + "Grants 28 Life per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { + "Grants 38 Life per Enemy Hit", + "Grants 14 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "LifeAndManaOnHitSeparatedLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "attack", + }, + ["statOrder"] = { + 1041, + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 14 Mana per Enemy Hit", + }, + [821021828] = { + "Grants 38 Life per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { + "Gain 100 Life when you lose an Endurance Charge", + ["affix"] = "", + ["group"] = "LifeGainOnEnduranceChargeConsumption", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2748, + }, + ["tradeHashes"] = { + [3915702459] = { + "Gain 100 Life when you lose an Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainVsBleedingEnemiesUnique__1"] = { + "Gain 30 Life per Bleeding Enemy Hit", + ["affix"] = "", + ["group"] = "LifeGainVsBleedingEnemies", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3254, + }, + ["tradeHashes"] = { + [3148570142] = { + "Gain 30 Life per Bleeding Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { + "20 Life gained on Kill per Frenzy Charge", + ["affix"] = "", + ["group"] = "LifeGainedOnEnemyDeathPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2682, + }, + ["tradeHashes"] = { + [1269609669] = { + "20 Life gained on Kill per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { + "Gain 1 Life on Kill per Level", + ["affix"] = "", + ["group"] = "LifeGainedOnEnemyDeathPerLevel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2716, + }, + ["tradeHashes"] = { + [4228691877] = { + "Gain 1 Life on Kill per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { + "Gain 10 Life per Ignited Enemy Killed", + ["affix"] = "", + ["group"] = "LifeGainedOnKillingIgnitedEnemies", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1515, + }, + ["tradeHashes"] = { + [893903361] = { + "Gain 10 Life per Ignited Enemy Killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { + "Gain (200-300) Life per Ignited Enemy Killed", + ["affix"] = "", + ["group"] = "LifeGainedOnKillingIgnitedEnemies", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1515, + }, + ["tradeHashes"] = { + [893903361] = { + "Gain (200-300) Life per Ignited Enemy Killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnSpellHitUniqueClaw7"] = { + "Gain (15-20) Life per Enemy Hit with Spells", + ["affix"] = "", + ["group"] = "LifeGainedOnSpellHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 1503, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2018035324] = { + "Gain (15-20) Life per Enemy Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { + "Gain 3 Life per Enemy Hit with Spells", + ["affix"] = "", + ["group"] = "LifeGainedOnSpellHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 1503, + }, + ["tradeHashes"] = { + [2018035324] = { + "Gain 3 Life per Enemy Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeGainedOnSpellHitUnique__1"] = { + "Gain 4 Life per Enemy Hit with Spells", + ["affix"] = "", + ["group"] = "LifeGainedOnSpellHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 1503, + }, + ["tradeHashes"] = { + [2018035324] = { + "Gain 4 Life per Enemy Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { + "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", + ["affix"] = "", + ["group"] = "LifeInRadiusBecomesEnergyShieldAtHalfValue", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 2856, + }, + ["tradeHashes"] = { + [3194864913] = { + "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { + "0.3% of Physical Attack Damage Leeched as Life per Red Socket", + ["affix"] = "", + ["group"] = "LifeLeechFromPhysicalAttackDamagePerRedSocket", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 2489, + }, + ["tradeHashes"] = { + [3025389409] = { + "0.3% of Physical Attack Damage Leeched as Life per Red Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { + "Leeches 1% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches 1% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { + "Life Leech effects are not removed when Unreserved Life is Filled", + ["affix"] = "", + ["group"] = "LifeLeechNotRemovedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2928, + }, + ["tradeHashes"] = { + [4224337800] = { + "Life Leech effects are not removed when Unreserved Life is Filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeLeechPermyriadJewel"] = { + "Leech (0.2-0.4)% of Physical Attack Damage as Life", + ["affix"] = "Hungering", + ["group"] = "LifeLeechPermyriadForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech (0.2-0.4)% of Physical Attack Damage as Life", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["LifeLeechPermyriadUniqueOneHandAxe6"] = { + "Leeches 2% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches 2% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { + "Lose 1% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "LifeLostOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1516, + }, + ["tradeHashes"] = { + [751813227] = { + "Lose 1% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeOnCorpseRemovalUniqueJewel14"] = { + "Recover 2% of maximum Life when you Consume a corpse", + ["affix"] = "", + ["group"] = "LifeOnCorpseRemoval", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2788, + }, + ["tradeHashes"] = { + [2715345125] = { + "Recover 2% of maximum Life when you Consume a corpse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeOnHitJewel"] = { + "Gain (2-3) Life per Enemy Hit with Attacks", + ["affix"] = "of Rejuvenation", + ["group"] = "LifeGainPerTargetForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain (2-3) Life per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { + "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", + ["affix"] = "", + ["group"] = "LifeOnHitPerStatusAilmentOnEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 2804, + }, + ["tradeHashes"] = { + [1609999275] = { + "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { + "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", + ["affix"] = "", + ["group"] = "LifeOnSpellHitPerStatusAilmentOnEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 2805, + }, + ["tradeHashes"] = { + [622657842] = { + "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { + "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", + ["affix"] = "", + ["group"] = "LifePassivesBecomeManaPassivesInRadius", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2864, + }, + ["tradeHashes"] = { + [2479374428] = { + "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifePerDexterityUnique__1"] = { + "+1 Life per 4 Dexterity", + ["affix"] = "", + ["group"] = "LifePerDexterity", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1765, + }, + ["tradeHashes"] = { + [2042405614] = { + "+1 Life per 4 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { + "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", + ["affix"] = "", + ["group"] = "LifePerIntelligenceInRadus", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2861, + }, + ["tradeHashes"] = { + [2865989731] = { + "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifePerLevelUnique__1"] = { + "+1 Maximum Life per Level", + ["affix"] = "", + ["group"] = "LifePerLevel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7470, + }, + ["tradeHashes"] = { + [1982144275] = { + "+1 Maximum Life per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRecoupJewel"] = { + "(4-6)% of Damage taken Recouped as Life", + ["affix"] = "of Infusion", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(4-6)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { + "Regenerate (12-20) Life per second per Buff on you", + ["affix"] = "", + ["group"] = "LifeRegenPerBuff", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7490, + }, + ["tradeHashes"] = { + [996053100] = { + "Regenerate (12-20) Life per second per Buff on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { + "Regenerate 75 Life per second per Endurance Charge", + ["affix"] = "", + ["group"] = "LifeRegenPerMinutePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2745, + }, + ["tradeHashes"] = { + [1898967950] = { + "Regenerate 75 Life per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { + "Regenerate (100-140) Life per second per Endurance Charge", + ["affix"] = "", + ["group"] = "LifeRegenPerMinutePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2745, + }, + ["tradeHashes"] = { + [1898967950] = { + "Regenerate (100-140) Life per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegeneratedAfterSavageHitUnique_1"] = { + "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", + ["affix"] = "", + ["group"] = "LifeRegeneratedAfterSavageHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3831, + }, + ["tradeHashes"] = { + [277484363] = { + "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { + "Regenerate (75-125) Life per second while Ignited", + ["affix"] = "", + ["group"] = "LifeRegeneratedPerMinuteWhileIgnited", + ["level"] = 74, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7498, + }, + ["tradeHashes"] = { + [952897668] = { + "Regenerate (75-125) Life per second while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { + "Regenerate 1% of maximum Life per second while on Low Life", + ["affix"] = "", + ["group"] = "LifeRegenerationOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1692, + }, + ["tradeHashes"] = { + [3942946753] = { + "Regenerate 1% of maximum Life per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { + "Regenerate 2% of maximum Life per second while on Low Life", + ["affix"] = "", + ["group"] = "LifeRegenerationOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1692, + }, + ["tradeHashes"] = { + [3942946753] = { + "Regenerate 2% of maximum Life per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { + "Regenerate 3% of maximum Life per second while on Low Life", + ["affix"] = "", + ["group"] = "LifeRegenerationOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1692, + }, + ["tradeHashes"] = { + [3942946753] = { + "Regenerate 3% of maximum Life per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { + "Regenerate 0.8% of maximum Life per second per Frenzy Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2402, + }, + ["tradeHashes"] = { + [2828673491] = { + "Regenerate 0.8% of maximum Life per second per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { + "Regenerate 0.2 Life per second per Level", + ["affix"] = "", + ["group"] = "LifeRegenerationPerLevel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2706, + }, + ["tradeHashes"] = { + [1384864963] = { + "Regenerate 0.2 Life per second per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { + "Regenerate 400 Life per second if no Equipped Items are Corrupted", + ["affix"] = "", + ["group"] = "LifeRegenerationPerMinuteWhileNoCorruptedItems", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3855, + }, + ["tradeHashes"] = { + [2497198283] = { + "Regenerate 400 Life per second if no Equipped Items are Corrupted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { + "Regenerate 0.2% of maximum Life per second per Endurance Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPercentPerEnduranceCharge", + ["level"] = 40, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1444, + }, + ["tradeHashes"] = { + [989800292] = { + "Regenerate 0.2% of maximum Life per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentImplicitUnique__5"] = { + "Regenerate (1-2)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1-2)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { + "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentagePerTotem", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 10585, + }, + ["tradeHashes"] = { + [1496370423] = { + "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUnique__1"] = { + "Regenerate 2% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 2% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUnique__2"] = { + "Regenerate 10% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 10% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUnique__3"] = { + "Regenerate 1% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 1% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUnique__4_"] = { + "Regenerate 1% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 1% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentUnique__5"] = { + "Regenerate 3% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 3% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentageUniqueAmulet21"] = { + "Regenerate 4% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 20, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 4% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentageUniqueJewel24"] = { + "Regenerate 2% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 2% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { + "Regenerate 3% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 3% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationUniqueWreath1"] = { + "2 Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "2 Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationWhileFrozenUnique__1"] = { + "Regenerate 10% of maximum Life per second while Frozen", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileFrozen", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3419, + }, + ["tradeHashes"] = { + [2656696317] = { + "Regenerate 10% of maximum Life per second while Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LifeRegenerationWhileMovingUnique__1"] = { + "Regenerate 100 Life per second while moving", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileMoving", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7499, + }, + ["tradeHashes"] = { + [2841027131] = { + "Regenerate 100 Life per second while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueAmulet17"] = { + "(10-15)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(10-15)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBelt6"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBodyInt8"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBodyStr4"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBodyStrInt4"] = { + "25% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBodyStrInt5"] = { + "(20-30)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(20-30)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBootsStrDex2"] = { + "25% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueBootsStrDex3"] = { + "20% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueHelmetStrDex6"] = { + "40% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "40% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueHelmetStrInt4"] = { + "40% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "40% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueRing11"] = { + "(10-15)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(10-15)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueRing15"] = { + "10% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "10% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueRing9_"] = { + "31% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "31% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueSceptre2"] = { + "50% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "50% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueShieldDemigods"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUniqueStaff10_"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__1"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__2"] = { + "(10-30)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(10-30)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__3"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__4"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__5"] = { + "(15-25)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(15-25)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__6"] = { + "50% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "50% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__7_"] = { + "(15-25)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(15-25)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightRadiusUnique__8"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningAilmentEffectUnique__1"] = { + "100% increased Effect of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7536, + }, + ["tradeHashes"] = { + [3081816887] = { + "100% increased Effect of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningCritChanceJewel"] = { + "(14-18)% increased Critical Hit Chance with Lightning Skills", + ["affix"] = "Thundering", + ["group"] = "LightningCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "critical", + }, + ["statOrder"] = { + 1378, + }, + ["tradeHashes"] = { + [1186596295] = { + "(14-18)% increased Critical Hit Chance with Lightning Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["LightningCritMultiplier"] = { + "+(15-18)% to Critical Damage Bonus with Lightning Skills", + ["affix"] = "Surging", + ["group"] = "LightningCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "critical", + }, + ["statOrder"] = { + 1400, + }, + ["tradeHashes"] = { + [2441475928] = { + "+(15-18)% to Critical Damage Bonus with Lightning Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["LightningDamageCanPoisonUnique__1"] = { + "Lightning Damage from Hits also Contributes to Poison Magntiude", + ["affix"] = "", + ["group"] = "LightningDamageCanPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2620, + }, + ["tradeHashes"] = { + [1604984482] = { + "Lightning Damage from Hits also Contributes to Poison Magntiude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningDamageJewel"] = { + "(14-16)% increased Lightning Damage", + ["affix"] = "Humming", + ["group"] = "LightningDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(14-16)% increased Lightning Damage", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { + "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", + ["affix"] = "", + ["group"] = "LightningDamageOnChargeExpiry", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2339, + }, + ["tradeHashes"] = { + [2528932950] = { + "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningDamagePerResistanceAbove75Unique__1"] = { + "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", + ["affix"] = "", + ["group"] = "LightningDamagePerResistanceAbove75", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 7547, + }, + ["tradeHashes"] = { + [2642525868] = { + "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningDegenAuraUniqueDisplay__1"] = { + "Nearby Enemies take 50 Lightning Damage per second", + ["affix"] = "", + ["group"] = "LightningDegenAuraDisplay", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2891, + }, + ["tradeHashes"] = { + [1415558356] = { + "Nearby Enemies take 50 Lightning Damage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningGemCastSpeedJewel_"] = { + "(3-5)% increased Cast Speed with Lightning Skills", + ["affix"] = "Electromantic", + ["group"] = "LightningGemCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "elemental", + "lightning", + "caster", + "speed", + }, + ["statOrder"] = { + 1286, + }, + ["tradeHashes"] = { + [1788635023] = { + "(3-5)% increased Cast Speed with Lightning Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["LightningPenetrationUniqueStaff8"] = { + "Damage Penetrates 20% Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 20% Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningPenetrationUnique__1"] = { + "Damage Penetrates 20% Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates 20% Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { + "Passives granting Lightning Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain a Power Charge on Kill", + ["affix"] = "", + ["group"] = "LightningResistAlsoGrantsPowerChargeOnKillJewel", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 7893, + 7893.1, + }, + ["tradeHashes"] = { + [926444104] = { + "Passives granting Lightning Resistance or all Elemental Resistances in Radius", + "also grant an equal chance to gain a Power Charge on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningResistanceJewel"] = { + "+(12-15)% to Lightning Resistance", + ["affix"] = "of Grounding", + ["group"] = "LightningResistanceForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(12-15)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { + "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", + ["affix"] = "", + ["group"] = "LightningResistanceWhenSocketedWithBlueGem", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + "gem", + }, + ["statOrder"] = { + 1491, + }, + ["tradeHashes"] = { + [289814996] = { + "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningSkillsChanceToPoisonUnique__1_"] = { + "Lightning Skills have 20% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "LightningSkillsChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 7568, + }, + ["tradeHashes"] = { + [949718413] = { + "Lightning Skills have 20% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningStrikesOnCritUnique__1"] = { + "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", + ["affix"] = "", + ["group"] = "LightningStrikesOnCrit", + ["level"] = 50, + ["modTags"] = { + "skill", + "critical", + }, + ["statOrder"] = { + 559, + }, + ["tradeHashes"] = { + [3241494164] = { + "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningStrikesOnCritUnique__2"] = { + "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", + ["affix"] = "", + ["group"] = "LightningStrikesOnCrit", + ["level"] = 87, + ["modTags"] = { + "skill", + "critical", + }, + ["statOrder"] = { + 559, + }, + ["tradeHashes"] = { + [3241494164] = { + "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LightningWarpSkillUniqueOneHandAxe8"] = { + "Grants Level 1 Lightning Warp Skill", + ["affix"] = "", + ["group"] = "LightningWarpSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 525, + }, + ["tradeHashes"] = { + [243713911] = { + "Grants Level 1 Lightning Warp Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageImplicitE1"] = { + "Adds (23-33) to (45-60) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 30, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (23-33) to (45-60) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageImplicitE2"] = { + "Adds (38-48) to (70-90) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 50, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (38-48) to (70-90) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageImplicitE3_"] = { + "Adds (40-55) to (80-98) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 70, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (40-55) to (80-98) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageUnique__2"] = { + "Adds (53-67) to (71-89) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (53-67) to (71-89) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageUnique__3"] = { + "Adds (600-650) to (750-800) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (600-650) to (750-800) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedChaosDamageUnique___1"] = { + "Adds 1 to 59 Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds 1 to 59 Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { + "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", + ["affix"] = "", + ["group"] = "AddedFireDamageVsIgnitedEnemies", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1212, + }, + ["tradeHashes"] = { + [627339348] = { + "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { + "Adds (3-5) to (7-10) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (3-5) to (7-10) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAlwaysCrit"] = { + "This Weapon's Critical Hit Chance is 100%", + ["affix"] = "", + ["group"] = "LocalAlwaysCrit", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3466, + }, + ["tradeHashes"] = { + [3384885789] = { + "This Weapon's Critical Hit Chance is 100%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { + "Heavy Stuns Enemies that are on Full Life", + ["affix"] = "", + ["group"] = "LocalAlwaysHeavyStunOnFullLife", + ["level"] = 76, + ["modTags"] = { + }, + ["statOrder"] = { + 1136, + }, + ["tradeHashes"] = { + [668076381] = { + "Heavy Stuns Enemies that are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { + "(270-340)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 94, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(270-340)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalAttacksAlwaysCritUnique__1"] = { + "This Weapon's Critical Hit Chance is 100%", + ["affix"] = "", + ["group"] = "LocalAttacksAlwaysCrit", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3466, + }, + ["tradeHashes"] = { + [3384885789] = { + "This Weapon's Critical Hit Chance is 100%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalCanSocketIgnoringColourUnique__1"] = { + "Gems can be Socketed in this Item ignoring Socket Colour", + ["affix"] = "", + ["group"] = "LocalCanSocketIgnoringColour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 77, + }, + ["tradeHashes"] = { + [899329924] = { + "Gems can be Socketed in this Item ignoring Socket Colour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToBleedImplicitMarakethRapier1"] = { + "15% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "15% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToBleedImplicitMarakethRapier2"] = { + "20% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "20% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToBleedUniqueDagger12"] = { + "30% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "30% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToBleedUniqueOneHandMace8"] = { + "30% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "30% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToBleedUnique__1__"] = { + "50% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "50% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToPoisonOnHitUnique__1"] = { + "15% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "15% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToPoisonOnHitUnique__2"] = { + "60% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "60% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToPoisonOnHitUnique__3"] = { + "20% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "20% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChanceToPoisonOnHitUnique__4"] = { + "20% chance to Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "20% chance to Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChaosDamageUniqueOneHandSword3"] = { + "Adds (49-98) to (101-140) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (49-98) to (101-140) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalChaosDamageUniqueTwoHandSword7"] = { + "Adds (60-68) to (90-102) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (60-68) to (90-102) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDisableRareModOnHitUnique__1"] = { + "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", + ["affix"] = "", + ["group"] = "LocalDisableRareModOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7660, + }, + ["tradeHashes"] = { + [2662365575] = { + "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { + "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", + ["affix"] = "", + ["group"] = "LocalDisplayGrantLevelXShadeForm", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 578, + }, + ["tradeHashes"] = { + [3308936917] = { + "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { + "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", + ["affix"] = "", + ["group"] = "LocalDisplayGrantLevelXSpiritBurst", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 595, + }, + ["tradeHashes"] = { + [1992516007] = { + "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { + "30% increased Rarity of Items found", + "You and Nearby Allies have 30% increased Item Rarity", + ["affix"] = "", + ["group"] = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 941, + 1466, + }, + ["tradeHashes"] = { + [3917489142] = { + "30% increased Rarity of Items found", + }, + [549203380] = { + "You and Nearby Allies have 30% increased Item Rarity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { + "Attacks with this Weapon deal Double Damage to Chilled Enemies", + ["affix"] = "", + ["group"] = "LocalDoubleDamageToChilledEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3435, + }, + ["tradeHashes"] = { + [625037258] = { + "Attacks with this Weapon deal Double Damage to Chilled Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalDoubleImplicitMods"] = { + "Implicit Modifier magnitudes are doubled", + ["affix"] = "", + ["group"] = "LocalModifiesImplicitMods", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 52, + }, + ["tradeHashes"] = { + [2304729532] = { + "Implicit Modifier magnitudes are doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalElementalPenetrationUnique__1"] = { + "Attacks with this Weapon Penetrate 30% Elemental Resistances", + ["affix"] = "", + ["group"] = "LocalElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "attack", + }, + ["statOrder"] = { + 3436, + }, + ["tradeHashes"] = { + [4064396395] = { + "Attacks with this Weapon Penetrate 30% Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { + "25% of Maximum Life taken as Chaos Damage per second", + ["affix"] = "", + ["group"] = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "flask", + "damage", + "chaos", + }, + ["statOrder"] = { + 645, + }, + ["tradeHashes"] = { + [3232201443] = { + "25% of Maximum Life taken as Chaos Damage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { + "(250-300)% increased Charges per use", + ["affix"] = "", + ["group"] = "LocalFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(250-300)% increased Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { + "(70-100)% increased Charges per use", + ["affix"] = "", + ["group"] = "LocalFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(70-100)% increased Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskChargesUsedUnique__2"] = { + "(10-20)% reduced Charges per use", + ["affix"] = "", + ["group"] = "LocalFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(10-20)% reduced Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { + "Recover (75-100)% of maximum Life on use", + ["affix"] = "", + ["group"] = "LocalFlaskInstantRecoverPercentOfLife", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 644, + }, + ["tradeHashes"] = { + [2629106530] = { + "Recover (75-100)% of maximum Life on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskPetrifiedUnique__1"] = { + "Petrified during Effect", + ["affix"] = "", + ["group"] = "LocalFlaskPetrified", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 754, + }, + ["tradeHashes"] = { + [1935500672] = { + "Petrified during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalFlaskPhysicalDamageReductionUnique__1"] = { + "(40-50)% additional Physical Damage Reduction during Effect", + ["affix"] = "", + ["group"] = "LocalFlaskPhysicalDamageReduction", + ["level"] = 1, + ["modTags"] = { + "flask", + "physical", + }, + ["statOrder"] = { + 736, + }, + ["tradeHashes"] = { + [677302513] = { + "(40-50)% additional Physical Damage Reduction during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalGrantsStormCascadeOnAttackUnique__1"] = { + "Trigger Level 20 Storm Cascade when you Attack", + ["affix"] = "", + ["group"] = "LocalDisplayGrantsStormCascadeOnAttack", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 543, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [818329660] = { + "Trigger Level 20 Storm Cascade when you Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { + "+1 to Level of Socketed Skill Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedActiveSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 150, + }, + ["tradeHashes"] = { + [524797741] = { + "+1 to Level of Socketed Skill Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { + "+2 to Level of Socketed Aura Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedAuraLevel", + ["level"] = 1, + ["modTags"] = { + "aura", + "gem", + }, + ["statOrder"] = { + 141, + }, + ["tradeHashes"] = { + [2452998583] = { + "+2 to Level of Socketed Aura Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { + "+1 to Level of Socketed Elemental Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedElementalGem", + ["level"] = 1, + ["modTags"] = { + "elemental", + "gem", + }, + ["statOrder"] = { + 168, + }, + ["tradeHashes"] = { + [3571342795] = { + "+1 to Level of Socketed Elemental Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedElementalGemUnique___1"] = { + "+2 to Level of Socketed Elemental Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedElementalGem", + ["level"] = 50, + ["modTags"] = { + "elemental", + "gem", + }, + ["statOrder"] = { + 168, + }, + ["tradeHashes"] = { + [3571342795] = { + "+2 to Level of Socketed Elemental Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { + "+2 to Level of Socketed Herald Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedHeraldLevel", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 142, + }, + ["tradeHashes"] = { + [1344805487] = { + "+2 to Level of Socketed Herald Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { + "+4 to Level of Socketed Herald Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedHeraldLevel", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 142, + }, + ["tradeHashes"] = { + [1344805487] = { + "+4 to Level of Socketed Herald Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { + "+5 to Level of Socketed Movement Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedMovementGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 143, + }, + ["tradeHashes"] = { + [3852526385] = { + "+5 to Level of Socketed Movement Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { + "-5 to Level of Socketed Non-Vaal Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedNonVaalGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 151, + }, + ["tradeHashes"] = { + [2574694107] = { + "-5 to Level of Socketed Non-Vaal Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { + "+1 to Level of Socketed Strength Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedStrengthGemLevel", + ["level"] = 1, + ["modTags"] = { + "attribute", + "gem", + }, + ["statOrder"] = { + 119, + }, + ["tradeHashes"] = { + [916797432] = { + "+1 to Level of Socketed Strength Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { + "+1 to Level of Socketed Support Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedSupportGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 149, + }, + ["tradeHashes"] = { + [4154259475] = { + "+1 to Level of Socketed Support Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { + "+2 to Level of Socketed Support Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedSupportGemLevel", + ["level"] = 94, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 149, + }, + ["tradeHashes"] = { + [4154259475] = { + "+2 to Level of Socketed Support Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { + "+2 to Level of Socketed Support Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedSupportGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 149, + }, + ["tradeHashes"] = { + [4154259475] = { + "+2 to Level of Socketed Support Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { + "+5 to Level of Socketed Vaal Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedVaalGemLevel", + ["level"] = 1, + ["modTags"] = { + "vaal", + "gem", + }, + ["statOrder"] = { + 148, + }, + ["tradeHashes"] = { + [1170386874] = { + "+5 to Level of Socketed Vaal Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { + "+2 to Level of Socketed Vaal Gems", + ["affix"] = "", + ["group"] = "LocalIncreaseSocketedVaalGemLevel", + ["level"] = 1, + ["modTags"] = { + "vaal", + "gem", + }, + ["statOrder"] = { + 148, + }, + ["tradeHashes"] = { + [1170386874] = { + "+2 to Level of Socketed Vaal Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedMeleeWeaponRangeEssence1"] = { + "+2 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { + "+2 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { + "+2 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { + "+10 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+10 to Weapon Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { + "+2 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { + "+2 to Weapon Range", + ["affix"] = "", + ["group"] = "LocalMeleeWeaponRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2507, + }, + ["tradeHashes"] = { + [350598685] = { + "+2 to Weapon Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { + "(60-80)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(60-80)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { + "This item gains bonuses from Socketed Items as though it was a Body Armour", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfBodyArmour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7740, + }, + ["tradeHashes"] = { + [1087787187] = { + "This item gains bonuses from Socketed Items as though it was a Body Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { + "This item gains bonuses from Socketed Items as though it was a Body Armour", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfBodyArmour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7740, + }, + ["tradeHashes"] = { + [1087787187] = { + "This item gains bonuses from Socketed Items as though it was a Body Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { + "This item gains bonuses from Socketed Items as though it was Boots", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfBoots", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7741, + }, + ["tradeHashes"] = { + [2733960806] = { + "This item gains bonuses from Socketed Items as though it was Boots", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { + "This item gains bonuses from Socketed Items as though it was Gloves", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfGloves", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7742, + }, + ["tradeHashes"] = { + [1856590738] = { + "This item gains bonuses from Socketed Items as though it was Gloves", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { + "This item gains bonuses from Socketed Items as though it was a Helmet", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfHelmet", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7743, + }, + ["tradeHashes"] = { + [1458343515] = { + "This item gains bonuses from Socketed Items as though it was a Helmet", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { + "This item gains bonuses from Socketed Items as though it was a Shield", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7744, + }, + ["tradeHashes"] = { + [2044810874] = { + "This item gains bonuses from Socketed Items as though it was a Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalLifeLeechIsInstantUniqueClaw3"] = { + "Life Leech from Hits with this Weapon is instant", + ["affix"] = "", + ["group"] = "LocalLifeLeechIsInstant", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2318, + }, + ["tradeHashes"] = { + [1765389199] = { + "Life Leech from Hits with this Weapon is instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalMaimOnHit2HImplicit_1"] = { + "25% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "LocalMaimOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7798, + }, + ["tradeHashes"] = { + [2763429652] = { + "25% chance to Maim on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalMaimOnHitChanceUnique__1"] = { + "(15-20)% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "LocalMaimOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7798, + }, + ["tradeHashes"] = { + [2763429652] = { + "(15-20)% chance to Maim on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalMaimOnHitUnique__1"] = { + "Attacks with this Weapon Maim on hit", + ["affix"] = "", + ["group"] = "LocalMaimOnHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3786, + }, + ["tradeHashes"] = { + [3418949024] = { + "Attacks with this Weapon Maim on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalNoAttributeRequirementsUnique__1"] = { + "Has no Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalNoAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 823, + }, + ["tradeHashes"] = { + [2739148464] = { + "Has no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalNoAttributeRequirementsUnique__2"] = { + "Has no Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalNoAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 823, + }, + ["tradeHashes"] = { + [2739148464] = { + "Has no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageAddedAsEachElement", + ["level"] = 50, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "attack", + }, + ["statOrder"] = { + 3908, + }, + ["tradeHashes"] = { + [3620731914] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageAddedAsEachElement", + ["level"] = 50, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "attack", + }, + ["statOrder"] = { + 3908, + }, + ["tradeHashes"] = { + [3620731914] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageAddedAsEachElement", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "attack", + }, + ["statOrder"] = { + 3908, + }, + ["tradeHashes"] = { + [3620731914] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalPoisonOnHit"] = { + "Poisonous Hit", + ["affix"] = "", + ["group"] = "LocalPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 2250, + }, + ["tradeHashes"] = { + [4075957192] = { + "Poisonous Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalSocketItemsEffectUnique__1"] = { + "(50-100)% increased effect of Socketed Augment Items", + ["affix"] = "", + ["group"] = "LocalSocketItemsEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 178, + }, + ["tradeHashes"] = { + [2081918629] = { + "(50-100)% increased effect of Socketed Augment Items", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LocalTripleImplicitModsUnique__1__"] = { + "Implicit Modifier magnitudes are tripled", + ["affix"] = "", + ["group"] = "LocalModifiesImplicitMods", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 52, + }, + ["tradeHashes"] = { + [2304729532] = { + "Implicit Modifier magnitudes are tripled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LoseAllChargesOnMoveUnique__1"] = { + "Lose all Frenzy, Endurance, and Power Charges when you Move", + ["affix"] = "", + ["group"] = "LoseAllChargesOnMove", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 7930, + }, + ["tradeHashes"] = { + [31415336] = { + "Lose all Frenzy, Endurance, and Power Charges when you Move", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { + "You lose all Endurance Charges on reaching maximum Endurance Charges", + ["affix"] = "", + ["group"] = "LoseEnduranceChargesOnMaxEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 2514, + }, + ["tradeHashes"] = { + [3590104875] = { + "You lose all Endurance Charges on reaching maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { + "Lose 10% of your maximum Energy Shield when you Block", + ["affix"] = "", + ["group"] = "LoseEnergyShieldOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2502, + }, + ["tradeHashes"] = { + [4059516437] = { + "Lose 10% of your maximum Energy Shield when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LoseLifeOnSpellHitUnique__1"] = { + "Lose (10-15) Life per Enemy Hit with Spells", + ["affix"] = "", + ["group"] = "LifeGainedOnSpellHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 1503, + }, + ["tradeHashes"] = { + [2018035324] = { + "Lose (10-15) Life per Enemy Hit with Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { + "Lose all Power Charges on reaching maximum Power Charges", + ["affix"] = "", + ["group"] = "LosePowerChargesOnMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 3284, + }, + ["tradeHashes"] = { + [2135899247] = { + "Lose all Power Charges on reaching maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { + "Lose all Power Charges on reaching maximum Power Charges", + ["affix"] = "", + ["group"] = "LosePowerChargesOnMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 3284, + }, + ["tradeHashes"] = { + [2135899247] = { + "Lose all Power Charges on reaching maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["LoseSpiritChargesOnSavageHitUnique__1_"] = { + "You lose all Spirit Charges when taking a Savage Hit", + ["affix"] = "", + ["group"] = "LoseSpiritChargesOnSavageHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4045, + }, + ["tradeHashes"] = { + [2663792764] = { + "You lose all Spirit Charges when taking a Savage Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Maces or Sceptres", + ["affix"] = "Beating", + ["group"] = "MaceAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1323, + }, + ["tradeHashes"] = { + [2515515064] = { + "(6-8)% increased Attack Speed with Maces or Sceptres", + }, + }, + ["weightKey"] = { + "mace", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 0, + 1, + }, + }, + ["MaceDamageJewel"] = { + "(14-16)% increased Damage with Maces", + ["affix"] = "Brutal", + ["group"] = "IncreasedMaceDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1249, + }, + ["tradeHashes"] = { + [1181419800] = { + "(14-16)% increased Damage with Maces", + }, + }, + ["weightKey"] = { + "mace", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 0, + 1, + }, + }, + ["MaceImplicitAlwaysHit1"] = { + "Always Hits", + ["affix"] = "", + ["group"] = "AlwaysHits", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1779, + }, + ["tradeHashes"] = { + [4126210832] = { + "Always Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitCriticalMultiplier1"] = { + "+(5-10)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(5-10)% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitEnemiesExplodeOnCrit1"] = { + "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", + ["affix"] = "", + ["group"] = "EnemiesExplodeOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7700, + }, + ["tradeHashes"] = { + [1541903247] = { + "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitHasXSockets"] = { + "Has 3 Sockets", + ["affix"] = "", + ["group"] = "HasXSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 57, + }, + ["tradeHashes"] = { + [4077843608] = { + "Has 3 Sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitLocalCrushOnHit1"] = { + "Crushes Enemies on Hit", + ["affix"] = "", + ["group"] = "LocalCrushOnHit", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 7650, + }, + ["tradeHashes"] = { + [1503146834] = { + "Crushes Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitLocalDazeBuildup1"] = { + "40% chance to Daze on Hit", + ["affix"] = "", + ["group"] = "LocalDazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7924, + }, + ["tradeHashes"] = { + [2933846633] = { + "40% chance to Daze on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitSplashDamage1"] = { + "Strikes deal Splash Damage", + ["affix"] = "", + ["group"] = "MeleeSplash", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1137, + }, + ["tradeHashes"] = { + [3675300253] = { + "Strikes deal Splash Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitStunDamageIncrease1"] = { + "Causes (20-40)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (20-40)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitStunDamageIncrease2"] = { + "Causes (30-50)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (30-50)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitWarcryExert1"] = { + "Warcries Empower an additional Attack", + ["affix"] = "", + ["group"] = "WarcriesExertAnAdditionalAttack", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 10510, + }, + ["tradeHashes"] = { + [1434716233] = { + "Warcries Empower an additional Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaceImplicitWardUnique1"] = { + "+(100-150) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+(100-150) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MagicItemsDropIdentifiedUnique__1"] = { + "Found Magic Items drop Identified", + ["affix"] = "", + ["group"] = "MagicItemsDropIdentified", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3809, + }, + ["tradeHashes"] = { + [3020069394] = { + "Found Magic Items drop Identified", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MagicMonsterItemRarityUnique__1"] = { + "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", + ["affix"] = "", + ["group"] = "MagicMonsterItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7949, + }, + ["tradeHashes"] = { + [3433676080] = { + "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { + "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", + ["affix"] = "", + ["group"] = "MaimOnHitWithRangedAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7629, + }, + ["tradeHashes"] = { + [2750004091] = { + "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { + "Adds (255-285) to (300-330) Fire Damage in Main Hand", + ["affix"] = "", + ["group"] = "MainHandAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 1271, + }, + ["tradeHashes"] = { + [169657426] = { + "Adds (255-285) to (300-330) Fire Damage in Main Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { + "Adds (75-100) to (165-200) Fire Damage in Main Hand", + ["affix"] = "", + ["group"] = "MainHandAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 1271, + }, + ["tradeHashes"] = { + [169657426] = { + "Adds (75-100) to (165-200) Fire Damage in Main Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MalignantMadnessCritEaterDominantUnique__1"] = { + "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", + ["affix"] = "", + ["group"] = "MalignantMadnessCritEaterDominant", + ["level"] = 77, + ["modTags"] = { + }, + ["statOrder"] = { + 7737, + }, + ["tradeHashes"] = { + [1109900829] = { + "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaCostIncreasedUniqueCorruptedJewel3"] = { + "50% increased Mana Cost of Skills", + ["affix"] = "", + ["group"] = "ManaCostReductionForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1633, + }, + ["tradeHashes"] = { + [474294393] = { + "50% increased Mana Cost of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { + "60% reduced Cost of Aura Skills that summon Totems", + ["affix"] = "", + ["group"] = "ManaCostOfTotemAuras", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2838, + }, + ["tradeHashes"] = { + [2701327257] = { + "60% reduced Cost of Aura Skills that summon Totems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { + "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", + ["affix"] = "", + ["group"] = "ManaCostPerManaSpent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4005, + }, + ["tradeHashes"] = { + [2650053239] = { + "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaCostReductionJewel"] = { + "(3-5)% reduced Mana Cost of Skills", + ["affix"] = "of Efficiency", + ["group"] = "ManaCostReductionForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1633, + }, + ["tradeHashes"] = { + [474294393] = { + "(3-5)% reduced Mana Cost of Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ManaCostReductionUniqueJewel44"] = { + "3% reduced Mana Cost of Skills", + ["affix"] = "", + ["group"] = "ManaCostReductionForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1633, + }, + ["tradeHashes"] = { + [474294393] = { + "3% reduced Mana Cost of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainPerTargetUniqueRing7"] = { + "Gain 30 Mana per Enemy Hit with Attacks", + ["affix"] = "", + ["group"] = "ManaGainPerTarget", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1507, + }, + ["tradeHashes"] = { + [820939409] = { + "Gain 30 Mana per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainPerTargetUniqueTwoHandAxe9"] = { + "Grants 30 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "ManaGainPerTargetLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 30 Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainPerTargetUnique__1"] = { + "Grants (2-3) Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "ManaGainPerTargetLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants (2-3) Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainPerTargetUnique__2"] = { + "Grants 2 Mana per Enemy Hit", + ["affix"] = "", + ["group"] = "ManaGainPerTargetLocal", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1508, + }, + ["tradeHashes"] = { + [640052854] = { + "Grants 2 Mana per Enemy Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { + "Gain 1 Mana on Kill per Level", + ["affix"] = "", + ["group"] = "ManaGainedOnEnemyDeathPerLevel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2717, + }, + ["tradeHashes"] = { + [1064067689] = { + "Gain 1 Mana on Kill per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { + "Recover 1% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [1604736568] = { + "Recover 1% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { + "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", + ["affix"] = "", + ["group"] = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 2495, + }, + ["tradeHashes"] = { + [172852114] = { + "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { + "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", + ["affix"] = "", + ["group"] = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 2495, + }, + ["tradeHashes"] = { + [172852114] = { + "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaLeechPermyriadJewel"] = { + "Leech (0.2-0.4)% of Physical Attack Damage as Mana", + ["affix"] = "Thirsting", + ["group"] = "ManaLeechPermyriadForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (0.2-0.4)% of Physical Attack Damage as Mana", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["ManaOnHitJewel"] = { + "Gain (1-2) Mana per Enemy Hit with Attacks", + ["affix"] = "of Absorption", + ["group"] = "ManaGainPerTargetForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1507, + }, + ["tradeHashes"] = { + [820939409] = { + "Gain (1-2) Mana per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["ManaPerLevelUnique__1"] = { + "+1 Maximum Mana per Level", + ["affix"] = "", + ["group"] = "ManaPerLevel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7990, + }, + ["tradeHashes"] = { + [2563691316] = { + "+1 Maximum Mana per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaPerStackableJewelUnique__1"] = { + "Gain 30 Mana per Grand Spectrum", + ["affix"] = "", + ["group"] = "ManaPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3810, + }, + ["tradeHashes"] = { + [2592799343] = { + "Gain 30 Mana per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaPerStrengthUnique__1__"] = { + "+1 Mana per 4 Strength", + ["affix"] = "", + ["group"] = "ManaPerStrength", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1766, + }, + ["tradeHashes"] = { + [507075051] = { + "+1 Mana per 4 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { + "Regenerate 2 Mana per Second per Power Charge", + ["affix"] = "", + ["group"] = "ManaRegeneratedPerSecondPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8007, + }, + ["tradeHashes"] = { + [4084763463] = { + "Regenerate 2 Mana per Second per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationEfficiencyJewel"] = { + "(2-3)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "Cerebral", + ["group"] = "ManaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(2-3)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ManaReservationEfficiencyPerAttributeUnique__1"] = { + "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + ["affix"] = "", + ["group"] = "ManaReservationEfficiencyPerAttribute", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8026, + }, + ["tradeHashes"] = { + [1212083058] = { + "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { + "16% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ManaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "16% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationEfficiencyUniqueJewel44_"] = { + "4% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ManaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "4% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationEfficiencyUniqueOneHandSword11"] = { + "10% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ManaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "10% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationEfficiencyUnique__2"] = { + "(12-20)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ManaReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1953, + }, + ["tradeHashes"] = { + [4237190083] = { + "(12-20)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ManaReservationPerAttributeUnique__1"] = { + "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + ["affix"] = "", + ["group"] = "ManaReservationPerAttribute", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 8025, + }, + ["tradeHashes"] = { + [2676451350] = { + "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaxPowerChargesIsZeroUniqueAmulet19"] = { + "Cannot gain Power Charges", + ["affix"] = "", + ["group"] = "MaxPowerChargesIsZero", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2750, + }, + ["tradeHashes"] = { + [2503253050] = { + "Cannot gain Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumBlockChanceUniqueAmulet16"] = { + "+3% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "+3% to maximum Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumBlockChanceUnique__1"] = { + "-10% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "-10% to maximum Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumColdResistUniqueShieldDex1"] = { + "+5% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+5% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumColdResistUnique__1_"] = { + "+(-3-3)% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(-3-3)% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumColdResistUnique__2"] = { + "+3% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+3% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { + "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldAsPercentageOfLife", + ["level"] = 60, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1435, + }, + ["tradeHashes"] = { + [1228337241] = { + "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { + "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldAsPercentageOfLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1435, + }, + ["tradeHashes"] = { + [1228337241] = { + "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumEnergyShieldOnKillPercentUnique__1"] = { + "Recover (3-5)% of maximum Energy Shield on Kill", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1512, + }, + ["tradeHashes"] = { + [2406605753] = { + "Recover (3-5)% of maximum Energy Shield on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumEnergyShieldOnKillPercentUnique__2"] = { + "Recover 1% of maximum Energy Shield on Kill", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1512, + }, + ["tradeHashes"] = { + [2406605753] = { + "Recover 1% of maximum Energy Shield on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFireResistUniqueShieldStrInt5"] = { + "+5% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+5% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFireResistUnique__1"] = { + "+(-3-3)% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+(-3-3)% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFrenzyChargesUniqueBodyStr3"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumFrenzyChargesUnique__1"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumGolemsUnique__1"] = { + "+1 to maximum number of Summoned Golems", + ["affix"] = "", + ["group"] = "MaximumGolems", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3368, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [2821079699] = { + "+1 to maximum number of Summoned Golems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumGolemsUnique__2"] = { + "+1 to maximum number of Summoned Golems", + ["affix"] = "", + ["group"] = "MaximumGolems", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3368, + }, + ["tradeHashes"] = { + [2821079699] = { + "+1 to maximum number of Summoned Golems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumGolemsUnique__3"] = { + "+3 to maximum number of Summoned Golems", + ["affix"] = "", + ["group"] = "MaximumGolems", + ["level"] = 43, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3368, + }, + ["tradeHashes"] = { + [2821079699] = { + "+3 to maximum number of Summoned Golems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumGolemsUnique__4_"] = { + "-1 to maximum number of Summoned Golems", + ["affix"] = "", + ["group"] = "MaximumGolems", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3368, + }, + ["tradeHashes"] = { + [2821079699] = { + "-1 to maximum number of Summoned Golems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { + "20% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 75, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "20% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { + "50% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "50% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeOnKillPercentUnique__1"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeOnKillPercentUnique__2"] = { + "Recover (1-3)% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (1-3)% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeOnKillPercentUnique__3__"] = { + "Recover (3-5)% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (3-5)% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeOnKillPercentUnique__4_"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifeOnKillPercentUnique__5"] = { + "Recover (3-5)% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (3-5)% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifePer10DexterityUnique__1"] = { + "+2 to Maximum Life per 10 Dexterity", + ["affix"] = "", + ["group"] = "FlatLifePer10Dexterity", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 8881, + }, + ["tradeHashes"] = { + [3806100539] = { + "+2 to Maximum Life per 10 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifePerItemRarityUnique__1"] = { + "+1 Life per 2% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "MaxLifePerItemRarity", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 8883, + }, + ["tradeHashes"] = { + [1457265483] = { + "+1 Life per 2% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLifePerStackableJewelUnique__1"] = { + "5% increased Maximum Life per socketed Grand Spectrum", + ["affix"] = "", + ["group"] = "MaximumLifePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3816, + }, + ["tradeHashes"] = { + [332217711] = { + "5% increased Maximum Life per socketed Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLightningResistUniqueStaff8c"] = { + "+5% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+5% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumLightningResistUnique__1"] = { + "+(-3-3)% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(-3-3)% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumManaOnKillPercentUnique__1"] = { + "Recover (1-3)% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover (1-3)% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueBodyInt9"] = { + "+1 to maximum number of Spectres", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [2428829184] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueBootsInt4"] = { + "+1 to Level of all Raise Zombie Gems", + "+1 to Level of all Raise Spectre Gems", + ["affix"] = "", + ["group"] = "MinionGlobalSkillLevel", + ["level"] = 1, + ["modTags"] = { + "skill", + "minion", + "gem", + }, + ["statOrder"] = { + 1477, + 1478, + }, + ["tradeHashes"] = { + [2120904498] = { + }, + [2739830820] = { + "+1 to Level of all Raise Zombie Gems", + }, + [3235814433] = { + "+1 to Level of all Raise Spectre Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCountHalfSkeletons", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9341, + }, + ["tradeHashes"] = { + [125218179] = { + }, + [4017641977] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1901, + }, + ["tradeHashes"] = { + [125218179] = { + }, + [2428829184] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueJewel1"] = { + "(7-10)% increased Skeleton Attack Speed", + "(7-10)% increased Skeleton Cast Speed", + "(3-5)% increased Skeleton Movement Speed", + ["affix"] = "", + ["group"] = "SkeletonSpeedOld", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9886, + 9887, + 9890, + }, + ["tradeHashes"] = { + [2725259389] = { + "(7-10)% increased Skeleton Cast Speed", + }, + [3295031203] = { + "(3-5)% increased Skeleton Movement Speed", + }, + [3413085237] = { + "(7-10)% increased Skeleton Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueSceptre5"] = { + "+1 to maximum number of Spectres", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [2428829184] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { + "+1 to maximum number of Spectres", + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCountHalfSkeletons", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + 9341, + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [4017641977] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { + "+1 to maximum number of Spectres", + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + 1901, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [2428829184] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueWand2"] = { + "+1 to maximum number of Spectres", + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCountHalfSkeletons", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + 9341, + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [4017641977] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUniqueWand2Updated"] = { + "+1 to maximum number of Spectres", + "+1 to maximum number of Skeletons", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + 1901, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [125218179] = { + "+1 to maximum number of Spectres", + }, + [2428829184] = { + "+1 to maximum number of Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUnique__1__"] = { + "+2 to maximum number of Spectres", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + }, + ["tradeHashes"] = { + [125218179] = { + "+2 to maximum number of Spectres", + }, + [2428829184] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumMinionCountUnique__2"] = { + "+2 to maximum number of Spectres", + ["affix"] = "", + ["group"] = "MaximumMinionCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1900, + }, + ["tradeHashes"] = { + [125218179] = { + "+2 to maximum number of Spectres", + }, + [2428829184] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { + "+2% to all maximum Resistances while you have no Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumResistanceWithNoEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 4206, + }, + ["tradeHashes"] = { + [3635566977] = { + "+2% to all maximum Resistances while you have no Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumShockOverrideUniqueBow10"] = { + "+40% to Maximum Effect of Shock", + ["affix"] = "", + ["group"] = "MaximumShockOverride", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 10431, + }, + ["tradeHashes"] = { + [4007740198] = { + "+40% to Maximum Effect of Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { + "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", + ["affix"] = "", + ["group"] = "MaximumSpiritChargesPerAbyssJewelEquipped", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4041, + }, + ["tradeHashes"] = { + [4053097676] = { + "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { + "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", + ["affix"] = "", + ["group"] = "MaximumSpiritChargesPerAbyssJewelEquipped", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4041, + }, + ["tradeHashes"] = { + [4053097676] = { + "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MaximumVoidArrowsUnique__1"] = { + "5 Maximum Void Charges", + "Gain a Void Charge every 0.5 seconds", + ["affix"] = "", + ["group"] = "MaximumVoidArrows", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4016, + 6935, + }, + ["tradeHashes"] = { + [1209237645] = { + "5 Maximum Void Charges", + }, + [34273389] = { + "Gain a Void Charge every 0.5 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { + "Reflects (25-50) Cold Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesColdDamageNoRange", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 1935, + }, + ["tradeHashes"] = { + [4235886357] = { + "Reflects (25-50) Cold Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { + "Insufficient Mana doesn't prevent your Melee Attacks", + ["affix"] = "", + ["group"] = "MeleeAttacksUsableWithoutMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 2456, + }, + ["tradeHashes"] = { + [1852317988] = { + "Insufficient Mana doesn't prevent your Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeAttacksUsableWithoutManaUnique__1"] = { + "Insufficient Mana doesn't prevent your Melee Attacks", + ["affix"] = "", + ["group"] = "MeleeAttacksUsableWithoutMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 2456, + }, + ["tradeHashes"] = { + [1852317988] = { + "Insufficient Mana doesn't prevent your Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeCritChanceJewel"] = { + "(10-14)% increased Melee Critical Hit Chance", + ["affix"] = "of Weight", + ["group"] = "MeleeCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1375, + }, + ["tradeHashes"] = { + [1199429645] = { + "(10-14)% increased Melee Critical Hit Chance", + }, + }, + ["weightKey"] = { + "bow", + "wand", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["MeleeCritMultiplier"] = { + "+(12-15)% to Melee Critical Damage Bonus", + ["affix"] = "of Demolishing", + ["group"] = "MeleeCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1395, + }, + ["tradeHashes"] = { + [4237442815] = { + "+(12-15)% to Melee Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "bow", + "wand", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { + "30% increased Melee Damage against Bleeding Enemies", + ["affix"] = "", + ["group"] = "MeleeDamageAgainstBleeding", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2273, + }, + ["tradeHashes"] = { + [1282978314] = { + "30% increased Melee Damage against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { + "50% increased Melee Damage against Bleeding Enemies", + ["affix"] = "", + ["group"] = "MeleeDamageAgainstBleeding", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2273, + }, + ["tradeHashes"] = { + [1282978314] = { + "50% increased Melee Damage against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageImplicitGloves1"] = { + "(16-20)% increased Melee Damage", + ["affix"] = "", + ["group"] = "MeleeDamage", + ["level"] = 78, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(16-20)% increased Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { + "20% increased Melee Damage", + ["affix"] = "", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "20% increased Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageJewel_"] = { + "(10-12)% increased Melee Damage", + ["affix"] = "of Combat", + ["group"] = "MeleeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(10-12)% increased Melee Damage", + }, + }, + ["weightKey"] = { + "bow", + "wand", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["MeleeDamageOnFullLifeUniqueAmulet13"] = { + "60% increased Melee Damage when on Full Life", + ["affix"] = "", + ["group"] = "MeleeDamageOnFullLife", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2412, + }, + ["tradeHashes"] = { + [3579807004] = { + "60% increased Melee Damage when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageTakenUniqueAmulet12"] = { + "60% increased Damage taken from Melee Attacks", + ["affix"] = "", + ["group"] = "MeleeDamageTaken", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2510, + }, + ["tradeHashes"] = { + [2626398389] = { + "60% increased Damage taken from Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageUniqueAmulet12"] = { + "(30-40)% increased Melee Damage", + ["affix"] = "", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(30-40)% increased Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageUnique__1"] = { + "(20-25)% increased Melee Damage", + ["affix"] = "", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(20-25)% increased Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeDamageUnique__2"] = { + "(25-40)% increased Melee Damage", + ["affix"] = "", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(25-40)% increased Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleePhysicalDamagePerDexterityUnique__1_"] = { + "2% increased Melee Physical Damage per 10 Dexterity", + ["affix"] = "", + ["group"] = "MeleePhysicalDamagePerDexterity", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 8924, + }, + ["tradeHashes"] = { + [2355151849] = { + "2% increased Melee Physical Damage per 10 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { + "+(100-125)% to Melee Critical Damage Bonus", + ["affix"] = "", + ["group"] = "MeleeWeaponCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1395, + }, + ["tradeHashes"] = { + [4237442815] = { + "+(100-125)% to Melee Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MineCritChanceJewel"] = { + "(12-16)% increased Critical Hit Chance with Mines", + ["affix"] = "Crippling", + ["group"] = "MineCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1371, + }, + ["tradeHashes"] = { + [214031493] = { + "(12-16)% increased Critical Hit Chance with Mines", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["MineCritMultiplier"] = { + "+(8-10)% to Critical Damage Bonus with Mines", + ["affix"] = "Incapacitating", + ["group"] = "MineCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1398, + }, + ["tradeHashes"] = { + [2529112796] = { + "+(8-10)% to Critical Damage Bonus with Mines", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["MineDamageJewel"] = { + "(14-16)% increased Mine Damage", + ["affix"] = "Sabotage", + ["group"] = "MineDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1154, + }, + ["tradeHashes"] = { + [2137912951] = { + "(14-16)% increased Mine Damage", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MineLaySpeedJewel"] = { + "(6-8)% increased Mine Throwing Speed", + ["affix"] = "Arming", + ["group"] = "MineLaySpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1668, + }, + ["tradeHashes"] = { + [1896971621] = { + "(6-8)% increased Mine Throwing Speed", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["MinesMultipleDetonationUniqueStaff11"] = { + "Mines can be Detonated an additional time", + ["affix"] = "", + ["group"] = "MinesMultipleDetonation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2766, + }, + ["tradeHashes"] = { + [325437053] = { + "Mines can be Detonated an additional time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { + "+1 to Minimum Endurance Charges per Grand Spectrum", + ["affix"] = "", + ["group"] = "MinimumEnduranceChargesPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 3817, + }, + ["tradeHashes"] = { + [2276643899] = { + "+1 to Minimum Endurance Charges per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { + "+1 to Minimum Frenzy Charges per Grand Spectrum", + ["affix"] = "", + ["group"] = "MinimumFrenzyChargesPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 3818, + }, + ["tradeHashes"] = { + [596758264] = { + "+1 to Minimum Frenzy Charges per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { + "+1 to Minimum Power Charges per Grand Spectrum", + ["affix"] = "", + ["group"] = "MinimumPowerChargesPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 3819, + }, + ["tradeHashes"] = { + [308799121] = { + "+1 to Minimum Power Charges per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionAccuracyRatingJewel"] = { + "(22-26)% increased Minion Accuracy Rating", + ["affix"] = "of Training", + ["group"] = "MinionAccuracyRatingForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "minion", + }, + ["statOrder"] = { + 8996, + }, + ["tradeHashes"] = { + [1718147982] = { + "(22-26)% increased Minion Accuracy Rating", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["MinionAccuracyRatingPerDevotion_"] = { + "Minions have +60 to Accuracy Rating per 10 Devotion", + ["affix"] = "", + ["group"] = "MinionAccuracyRatingPerDevotion", + ["level"] = 1, + ["modTags"] = { + "attack", + "minion", + }, + ["statOrder"] = { + 8995, + }, + ["tradeHashes"] = { + [2830135449] = { + "Minions have +60 to Accuracy Rating per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionAreaOfEffectUnique__1"] = { + "Minions have (6-8)% increased Area of Effect", + ["affix"] = "", + ["group"] = "MinionAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (6-8)% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionAttackAndCastSpeedPerDevotion"] = { + "1% increased Minion Attack and Cast Speed per 10 Devotion", + ["affix"] = "", + ["group"] = "MinionAttackAndCastSpeedPerDevotion", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9005, + }, + ["tradeHashes"] = { + [3808469650] = { + "1% increased Minion Attack and Cast Speed per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionAttackSpeedPerXDexUnique__1"] = { + "2% increased Minion Attack Speed per 50 Dexterity", + ["affix"] = "", + ["group"] = "MinionAttackSpeedPerXDex", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "attack", + "speed", + "minion", + }, + ["statOrder"] = { + 9010, + }, + ["tradeHashes"] = { + [4047895119] = { + "2% increased Minion Attack Speed per 50 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionBlindImmunityUnique__1"] = { + "Minions cannot be Blinded", + ["affix"] = "", + ["group"] = "MinionBlindImmunity", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3807, + }, + ["tradeHashes"] = { + [2684385509] = { + "Minions cannot be Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionBlockJewel"] = { + "Minions have +(2-4)% Chance to Block Attack Damage", + ["affix"] = "of the Wall", + ["group"] = "MinionBlockForJewel", + ["level"] = 1, + ["modTags"] = { + "block", + "minion", + }, + ["statOrder"] = { + 2661, + }, + ["tradeHashes"] = { + [3374054207] = { + "Minions have +(2-4)% Chance to Block Attack Damage", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["MinionChanceToBlindOnHitUnique__1"] = { + "Minions have 15% chance to Blind Enemies on hit", + ["affix"] = "", + ["group"] = "MinionChanceToBlindOnHit", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3808, + }, + ["tradeHashes"] = { + [2939409392] = { + "Minions have 15% chance to Blind Enemies on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionColdResistUnique__1"] = { + "Minions have +40% to Cold Resistance", + ["affix"] = "", + ["group"] = "MinionColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "minion_resistance", + "elemental", + "cold", + "resistance", + "minion", + }, + ["statOrder"] = { + 3841, + }, + ["tradeHashes"] = { + [2200407711] = { + "Minions have +40% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { + "Minions have +10% to Critical Damage Bonus per Grand Spectrum", + ["affix"] = "", + ["group"] = "MinionCriticalStrikeMultiplierPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 3820, + }, + ["tradeHashes"] = { + [482240997] = { + "Minions have +10% to Critical Damage Bonus per Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionDamageAlsoAffectsYouUnique__1"] = { + "Increases and Reductions to Minion Damage also affect you at 150% of their value", + ["affix"] = "", + ["group"] = "MinionDamageAlsoAffectsYou", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 4232, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [1433144735] = { + "Increases and Reductions to Minion Damage also affect you at 150% of their value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionDamageJewel"] = { + "Minions deal (14-16)% increased Damage", + ["affix"] = "Leadership", + ["group"] = "MinionDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (14-16)% increased Damage", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["MinionElementalResistancesJewel"] = { + "Minions have +(11-15)% to all Elemental Resistances", + ["affix"] = "of Resilience", + ["group"] = "MinionElementalResistancesForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "minion_resistance", + "elemental", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(11-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["MinionElementalResistancesUnique__1"] = { + "Minions have +(7-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "MinionElementalResistancesForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "minion_resistance", + "elemental", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(7-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionFireResistUnique__1"] = { + "Minions have +40% to Fire Resistance", + ["affix"] = "", + ["group"] = "MinionFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "minion_resistance", + "elemental", + "fire", + "resistance", + "minion", + }, + ["statOrder"] = { + 9055, + }, + ["tradeHashes"] = { + [1889350679] = { + "Minions have +40% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { + "Minions' Hits can only Kill Ignited Enemies", + ["affix"] = "", + ["group"] = "MinionHitsOnlyKillIgnitedEnemies", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9108, + }, + ["tradeHashes"] = { + [1736403946] = { + "Minions' Hits can only Kill Ignited Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionLargerAggroRadiusUnique__1"] = { + "Minions are Aggressive", + ["affix"] = "", + ["group"] = "MinionLargerAggroRadius", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10658, + }, + ["tradeHashes"] = { + [128585622] = { + "Minions are Aggressive", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionLifeJewel"] = { + "Minions have (8-12)% increased maximum Life", + ["affix"] = "Master's", + ["group"] = "MinionLifeForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (8-12)% increased maximum Life", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { + "Minions Recover 2% of their maximum Life when they Block", + ["affix"] = "", + ["group"] = "MinionLifeRecoveryOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 2793, + }, + ["tradeHashes"] = { + [676967140] = { + "Minions Recover 2% of their maximum Life when they Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionLifeRecoveryOnBlockUnique__1"] = { + "Minions Recover 10% of their maximum Life when they Block", + ["affix"] = "", + ["group"] = "MinionLifeRecoveryOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 2793, + }, + ["tradeHashes"] = { + [676967140] = { + "Minions Recover 10% of their maximum Life when they Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionMovementSpeedPerXDexUnique__1"] = { + "2% increased Minion Movement Speed per 50 Dexterity", + ["affix"] = "", + ["group"] = "MinionMovementSpeedPerXDex", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 9069, + }, + ["tradeHashes"] = { + [4017879067] = { + "2% increased Minion Movement Speed per 50 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { + "Minions gain 20% of their Physical Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "MinionPhysicalDamageAddedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "minion_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + "minion", + }, + ["statOrder"] = { + 3843, + }, + ["tradeHashes"] = { + [351413557] = { + "Minions gain 20% of their Physical Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionSkillManaCostUnique__1_"] = { + "(10-15)% reduced Mana Cost of Minion Skills", + ["affix"] = "", + ["group"] = "MinionSkillManaCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "minion", + }, + ["statOrder"] = { + 9086, + }, + ["tradeHashes"] = { + [2969128501] = { + "(10-15)% reduced Mana Cost of Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionSkillManaCostUnique__2"] = { + "(20-30)% reduced Mana Cost of Minion Skills", + ["affix"] = "", + ["group"] = "MinionSkillManaCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "minion", + }, + ["statOrder"] = { + 9086, + }, + ["tradeHashes"] = { + [2969128501] = { + "(20-30)% reduced Mana Cost of Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { + "Minions cannot Die while affected by a Life Flask", + ["affix"] = "", + ["group"] = "MinionsCannotDieWhileFlasked", + ["level"] = 30, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1921, + }, + ["tradeHashes"] = { + [4046380260] = { + "Minions cannot Die while affected by a Life Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionsGainYourStrengthUnique__1"] = { + "Half of your Strength is added to your Minions", + ["affix"] = "", + ["group"] = "MinionsGainYourStrength", + ["level"] = 1, + ["modTags"] = { + "minion", + "attribute", + }, + ["statOrder"] = { + 9103, + }, + ["tradeHashes"] = { + [2195137717] = { + "Half of your Strength is added to your Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionsPoisonEnemiesOnHitUnique__1"] = { + "Minions have 60% chance to Poison Enemies on Hit", + ["affix"] = "", + ["group"] = "MinionsPoisonEnemiesOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "minion", + "ailment", + }, + ["statOrder"] = { + 2900, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [1974445926] = { + "Minions have 60% chance to Poison Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionsPoisonEnemiesOnHitUnique__2"] = { + "Minions have 60% chance to Poison Enemies on Hit", + ["affix"] = "", + ["group"] = "MinionsPoisonEnemiesOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "minion", + "ailment", + }, + ["statOrder"] = { + 2900, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [1974445926] = { + "Minions have 60% chance to Poison Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { + "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", + ["affix"] = "", + ["group"] = "MinionsRecoverLifeOnKillingPoisonedEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 9112, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [2602664175] = { + "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MinonAreaOfEffectUniqueRing33"] = { + "Minions have 10% increased Area of Effect", + ["affix"] = "", + ["group"] = "MinionAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have 10% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MjolnerVerisiumImplicitLightningChain1"] = { + "(50-100)% chance for Lightning Skills to Chain an additional time", + ["affix"] = "", + ["group"] = "LightningChanceToChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7564, + }, + ["tradeHashes"] = { + [3112931530] = { + "(50-100)% chance for Lightning Skills to Chain an additional time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MjolnerVerisiumImplicitLightningDamage1"] = { + "(40-60)% increased Lightning Damage", + ["affix"] = "", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(40-60)% increased Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MoltenBurstOnMeleeHitUnique__1"] = { + "20% chance to Trigger Level 16 Molten Burst on Melee Hit", + ["affix"] = "", + ["group"] = "MoltenBurstOnMeleeHit", + ["level"] = 1, + ["modTags"] = { + "skill", + "attack", + }, + ["statOrder"] = { + 566, + }, + ["tradeHashes"] = { + [4125471110] = { + "20% chance to Trigger Level 16 Molten Burst on Melee Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MonstersFleeOnFlaskUseUniqueFlask9"] = { + "75% chance to cause Enemies to Flee on use", + ["affix"] = "", + ["group"] = "MonstersFleeOnFlaskUse", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 663, + }, + ["tradeHashes"] = { + [1457911472] = { + "75% chance to cause Enemies to Flee on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MoreDamagePerWarcryExertingUnique__1"] = { + "Skills deal (10-15)% more Damage for each Warcry Empowering them", + ["affix"] = "", + ["group"] = "MoreDamagePerWarcryExerting", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10402, + }, + ["tradeHashes"] = { + [2023285759] = { + "Skills deal (10-15)% more Damage for each Warcry Empowering them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementCannotBeSlowedBelowBaseUnique__1"] = { + "Movement Speed cannot be modified to below base value", + ["affix"] = "", + ["group"] = "MovementCannotBeSlowedBelowBase", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2914, + }, + ["tradeHashes"] = { + [3875592188] = { + "Movement Speed cannot be modified to below base value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSkillsCostNoManaUnique__1"] = { + "Movement Skills Cost no Mana", + ["affix"] = "", + ["group"] = "MovementSkillsCostNoMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3161, + }, + ["tradeHashes"] = { + [3086866381] = { + "Movement Skills Cost no Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { + "Movement Skills deal no Physical Damage", + ["affix"] = "", + ["group"] = "MovementSkillsDealNoPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 9140, + }, + ["tradeHashes"] = { + [4114010855] = { + "Movement Skills deal no Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedIfKilledRecentlyUnique___1"] = { + "15% increased Movement Speed if you've Killed Recently", + ["affix"] = "", + ["group"] = "MovementSpeedIfKilledRecently", + ["level"] = 40, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 3907, + }, + ["tradeHashes"] = { + [279227559] = { + "15% increased Movement Speed if you've Killed Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedIfKilledRecentlyUnique___2"] = { + "15% increased Movement Speed if you've Killed Recently", + ["affix"] = "", + ["group"] = "MovementSpeedIfKilledRecently", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 3907, + }, + ["tradeHashes"] = { + [279227559] = { + "15% increased Movement Speed if you've Killed Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { + "10% increased Movement Speed if you've used a Warcry Recently", + ["affix"] = "", + ["group"] = "MovementSpeedIfUsedWarcryRecently", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 3833, + }, + ["tradeHashes"] = { + [2546417825] = { + "10% increased Movement Speed if you've used a Warcry Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { + "15% increased Movement Speed if you've used a Warcry Recently", + ["affix"] = "", + ["group"] = "MovementSpeedIfUsedWarcryRecently", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 3833, + }, + ["tradeHashes"] = { + [2546417825] = { + "15% increased Movement Speed if you've used a Warcry Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { + "30% increased Movement Speed for 9 seconds on Throwing a Trap", + ["affix"] = "", + ["group"] = "MovementSpeedOnTrapThrow", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2532, + }, + ["tradeHashes"] = { + [3102860761] = { + "30% increased Movement Speed for 9 seconds on Throwing a Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedOnTrapThrowUnique__1"] = { + "15% increased Movement Speed for 9 seconds on Throwing a Trap", + ["affix"] = "", + ["group"] = "MovementSpeedOnTrapThrowSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2532, + }, + ["tradeHashes"] = { + [3102860761] = { + "15% increased Movement Speed for 9 seconds on Throwing a Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { + "2% reduced Movement Speed per Chest opened Recently", + ["affix"] = "", + ["group"] = "MovementSpeedPerChestOpenedRecently", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9167, + }, + ["tradeHashes"] = { + [718844908] = { + "2% reduced Movement Speed per Chest opened Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { + "10% increased Movement Speed for each Poison on you up to a maximum of 50%", + ["affix"] = "", + ["group"] = "MovementSpeedPerPoisonOnSelf", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9170, + }, + ["tradeHashes"] = { + [1360723495] = { + "10% increased Movement Speed for each Poison on you up to a maximum of 50%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelicityPerEvasionUniqueBodyDex6"] = { + "1% increased Movement Speed per 600 Evasion Rating, up to 75%", + ["affix"] = "", + ["group"] = "MovementVelicityPerEvasion", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2447, + }, + ["tradeHashes"] = { + [2591020064] = { + "1% increased Movement Speed per 600 Evasion Rating, up to 75%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnFullLifeUniqueAmulet13"] = { + "10% increased Movement Speed when on Full Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnFullLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1555, + }, + ["tradeHashes"] = { + [3393547195] = { + "10% increased Movement Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { + "20% increased Movement Speed when on Full Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnFullLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1555, + }, + ["tradeHashes"] = { + [3393547195] = { + "20% increased Movement Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { + "15% increased Movement Speed when on Full Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnFullLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1555, + }, + ["tradeHashes"] = { + [3393547195] = { + "15% increased Movement Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnFullLifeUnique__1"] = { + "30% increased Movement Speed when on Full Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnFullLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1555, + }, + ["tradeHashes"] = { + [3393547195] = { + "30% increased Movement Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { + "30% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "30% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { + "40% reduced Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "40% reduced Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { + "20% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "20% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueRapier1"] = { + "30% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "30% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueRing9"] = { + "(6-8)% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "(6-8)% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { + "10% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "10% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityOnLowLifeUnique__1"] = { + "(10-20)% increased Movement Speed when on Low Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnLowLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1554, + }, + ["tradeHashes"] = { + [649025131] = { + "(10-20)% increased Movement Speed when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { + "4% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "4% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { + "2% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "2% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { + "5% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "5% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { + "2% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "2% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUnique__1"] = { + "4% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "4% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityPerFrenzyChargeUnique__2"] = { + "6% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "6% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityWhileBleedingUnique__1"] = { + "20% increased Movement Speed while Bleeding", + ["affix"] = "", + ["group"] = "MovementVelocityWhileBleeding", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9173, + }, + ["tradeHashes"] = { + [696659555] = { + "20% increased Movement Speed while Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityWhileIgnitedUniqueJewel20"] = { + "(10-20)% increased Movement Speed while Ignited", + ["affix"] = "", + ["group"] = "MovementVelocityWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2562, + }, + ["tradeHashes"] = { + [581625445] = { + "(10-20)% increased Movement Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityWhileIgnitedUnique__1"] = { + "10% increased Movement Speed while Ignited", + ["affix"] = "", + ["group"] = "MovementVelocityWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2562, + }, + ["tradeHashes"] = { + [581625445] = { + "10% increased Movement Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityWhileIgnitedUnique__2"] = { + "(10-20)% increased Movement Speed while Ignited", + ["affix"] = "", + ["group"] = "MovementVelocityWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2562, + }, + ["tradeHashes"] = { + [581625445] = { + "(10-20)% increased Movement Speed while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { + "20% increased Movement Speed while on Full Energy Shield", + ["affix"] = "", + ["group"] = "MovementSpeedWhileOnFullEnergyShield", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2714, + }, + ["tradeHashes"] = { + [2825197711] = { + "20% increased Movement Speed while on Full Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["MovementVeolcityUniqueBootsDemigods1"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { + "Action Speed cannot be modified to below base value", + "Nearby Allies' Action Speed cannot be modified to below base value", + ["affix"] = "", + ["group"] = "NearbyAlliesCannotBeSlowed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2913, + 7669, + }, + ["tradeHashes"] = { + [1356468153] = { + "Nearby Allies' Action Speed cannot be modified to below base value", + }, + [628716294] = { + "Action Speed cannot be modified to below base value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { + "50% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "50% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { + "Culling Strike", + ["affix"] = "", + ["group"] = "GrantsCullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1775, + }, + ["tradeHashes"] = { + [2524254339] = { + "Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesHaveCullingStrikeUnique__1"] = { + "Culling Strike", + ["affix"] = "", + ["group"] = "GrantsCullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1775, + }, + ["tradeHashes"] = { + [2524254339] = { + "Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { + "30% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "IncreasedItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "30% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { + "30% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "IncreasedItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "30% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NearbyEnemiesCannotCritUnique__1"] = { + "Never deal Critical Hits", + "Nearby Enemies cannot deal Critical Hits", + ["affix"] = "", + ["group"] = "NearbyEnemiesCannotCrit", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1917, + 7676, + }, + ["tradeHashes"] = { + [1177959871] = { + "Nearby Enemies cannot deal Critical Hits", + }, + [3638599682] = { + "Never deal Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NoBonusesFromCriticalStrikes"] = { + "You have no Critical Damage Bonus", + ["affix"] = "", + ["group"] = "NoBonusesFromCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1405, + }, + ["tradeHashes"] = { + [4058681894] = { + "You have no Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NoItemQuantity"] = { + "You cannot increase the Quantity of Items found", + ["affix"] = "", + ["group"] = "NoItemQuantity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2329, + }, + ["tradeHashes"] = { + [3778266957] = { + "You cannot increase the Quantity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NoItemRarity"] = { + "You cannot increase the Rarity of Items found", + ["affix"] = "", + ["group"] = "NoItemRarity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2328, + }, + ["tradeHashes"] = { + [993866933] = { + "You cannot increase the Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { + "33% of Damage taken bypasses Energy Shield", + ["affix"] = "", + ["group"] = "DamageBypassEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1456, + }, + ["tradeHashes"] = { + [2448633171] = { + "33% of Damage taken bypasses Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { + "Non-Critical Hits deal no Damage", + ["affix"] = "", + ["group"] = "NonCriticalStrikesDealNoDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 9220, + }, + ["tradeHashes"] = { + [2511969244] = { + "Non-Critical Hits deal no Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { + "Non-Critical Hits deal no Damage", + ["affix"] = "", + ["group"] = "NonCriticalStrikesDealNoDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 9220, + }, + ["tradeHashes"] = { + [2511969244] = { + "Non-Critical Hits deal no Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { + "Non-instant Recovery from Mana Flasks also applies to Life", + ["affix"] = "", + ["group"] = "NonInstantManaRecoveryAlsoAffectsLife", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 4004, + }, + ["tradeHashes"] = { + [2262007777] = { + "Non-instant Recovery from Mana Flasks also applies to Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NormalMonsterItemQuantityUnique__1"] = { + "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", + ["affix"] = "", + ["group"] = "NormalMonsterItemQuantity", + ["level"] = 38, + ["modTags"] = { + }, + ["statOrder"] = { + 9311, + }, + ["tradeHashes"] = { + [1342790450] = { + "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NovaSpellsAreaOfEffectUnique__1"] = { + "Nova Spells have 20% less Area of Effect", + ["affix"] = "", + ["group"] = "NovaSpellsAreaOfEffect", + ["level"] = 50, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 7827, + }, + ["tradeHashes"] = { + [200113086] = { + "Nova Spells have 20% less Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { + "50% reduced maximum number of Raised Zombies", + ["affix"] = "", + ["group"] = "NumberOfZombiesSummonedPercentage", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2369, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [4041805509] = { + "50% reduced maximum number of Raised Zombies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { + "Adds (75-100) to (165-200) Chaos Damage in Off Hand", + ["affix"] = "", + ["group"] = "OffHandAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1292, + }, + ["tradeHashes"] = { + [3758293500] = { + "Adds (75-100) to (165-200) Chaos Damage in Off Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { + "Adds (255-285) to (300-330) Cold Damage in Off Hand", + ["affix"] = "", + ["group"] = "OffHandAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 1277, + }, + ["tradeHashes"] = { + [2109066258] = { + "Adds (255-285) to (300-330) Cold Damage in Off Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OffHandChillDurationUniqueOneHandAxe2"] = { + "100% increased Chill Duration on Enemies when in Off Hand", + ["affix"] = "", + ["group"] = "OffHandChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2528, + }, + ["tradeHashes"] = { + [4199402748] = { + "100% increased Chill Duration on Enemies when in Off Hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { + "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", + ["affix"] = "", + ["group"] = "DamagePerWardSpentOnSkill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9255, + }, + ["tradeHashes"] = { + [2728425538] = { + "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OlrovasaraVerisiumImplicitLightningToCold1"] = { + "100% of Lightning Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ConvertLightningToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "lightning", + }, + ["statOrder"] = { + 1713, + }, + ["tradeHashes"] = { + [3627052716] = { + "100% of Lightning Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OlrovasaraVerisiumImplicitWeaponRange1"] = { + "+(1.5-2) metres to Melee Strike Range", + ["affix"] = "", + ["group"] = "MeleeWeaponAndUnarmedRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2314, + }, + ["tradeHashes"] = { + [2264295449] = { + "+(1.5-2) metres to Melee Strike Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { + "Blind Chilled enemies on Hit", + ["affix"] = "", + ["group"] = "OnHitBlindChilledEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4925, + }, + ["tradeHashes"] = { + [3450276548] = { + "Blind Chilled enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OneHandCritMultiplierJewel_"] = { + "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", + ["affix"] = "Piercing", + ["group"] = "OneHandCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1394, + }, + ["tradeHashes"] = { + [670153687] = { + "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "wand", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["OneHandedCritChanceJewel"] = { + "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", + ["affix"] = "Harming", + ["group"] = "OneHandedCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1374, + }, + ["tradeHashes"] = { + [2381842786] = { + "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "wand", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["OneHandedMeleeAttackSpeedJewel"] = { + "(4-6)% increased Attack Speed with One Handed Melee Weapons", + ["affix"] = "Bandit's", + ["group"] = "OneHandedMeleeAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1318, + }, + ["tradeHashes"] = { + [1813451228] = { + "(4-6)% increased Attack Speed with One Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "wand", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["OneHandedMeleeDamageJewel"] = { + "(12-14)% increased Damage with One Handed Weapons", + ["affix"] = "Soldier's", + ["group"] = "IncreasedOneHandedMeleeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3041, + }, + ["tradeHashes"] = { + [1010549321] = { + "(12-14)% increased Damage with One Handed Weapons", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "wand", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["OneSocketEachColourUnique"] = { + "Has one socket of each colour", + ["affix"] = "", + ["group"] = "OneSocketEachColour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 63, + }, + ["tradeHashes"] = { + [3146680230] = { + "Has one socket of each colour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnlySocketCorruptedGemsUnique__1"] = { + "You can only Socket Corrupted Gems in this item", + ["affix"] = "", + ["group"] = "OnlySocketCorruptedGems", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 59, + }, + ["tradeHashes"] = { + [608438307] = { + "You can only Socket Corrupted Gems in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtBuffOnKillUniqueDagger12"] = { + "You gain Onslaught for 3 seconds on Kill", + ["affix"] = "", + ["group"] = "OnslaughtBuffOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2417, + }, + ["tradeHashes"] = { + [1195849808] = { + "You gain Onslaught for 3 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtBuffOnKillUniqueRing12"] = { + "You gain Onslaught for 4 seconds on Kill", + ["affix"] = "", + ["group"] = "OnslaughtBuffOnKill", + ["level"] = 58, + ["modTags"] = { + }, + ["statOrder"] = { + 2417, + }, + ["tradeHashes"] = { + [1195849808] = { + "You gain Onslaught for 4 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { + "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", + ["affix"] = "", + ["group"] = "OnslaughtOnKillWithRangedAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7625, + }, + ["tradeHashes"] = { + [2863332749] = { + "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { + "You gain Onslaught for 20 seconds on using a Vaal Skill", + ["affix"] = "", + ["group"] = "OnslaughtOnVaalSkillUse", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 2669, + }, + ["tradeHashes"] = { + [2654043939] = { + "You gain Onslaught for 20 seconds on using a Vaal Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtWhileFortifiedUnique__1"] = { + "You have Onslaught while Fortified", + ["affix"] = "", + ["group"] = "OnslaughtWhileFortified", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6835, + }, + ["tradeHashes"] = { + [1493590317] = { + "You have Onslaught while Fortified", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { + "You have Onslaught while at maximum Endurance Charges", + ["affix"] = "", + ["group"] = "OnslaughtWithMaxEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6831, + }, + ["tradeHashes"] = { + [3101915418] = { + "You have Onslaught while at maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { + "10% chance to gain Onslaught for 10 seconds on kill", + ["affix"] = "", + ["group"] = "OnslaugtOnKill10SecondsPercentChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5535, + }, + ["tradeHashes"] = { + [2453026567] = { + "10% chance to gain Onslaught for 10 seconds on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PainAttunement"] = { + "Pain Attunement", + ["affix"] = "", + ["group"] = "PainAttunement", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10717, + }, + ["tradeHashes"] = { + [98977150] = { + "Pain Attunement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingDoubledPower"] = { + "Targets affected by Abyssal Wasting in your Presence have double Power", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingDoubledPower", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6368, + }, + ["tradeHashes"] = { + [1153919467] = { + "Targets affected by Abyssal Wasting in your Presence have double Power", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingHinders"] = { + "Targets affected by Abyssal Wasting you inflict are Hindered", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingHinders", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4117, + }, + ["tradeHashes"] = { + [4097102799] = { + "Targets affected by Abyssal Wasting you inflict are Hindered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { + "(60-100)% increased Magnitude of Abyssal Wasting you inflict", + ["affix"] = "", + ["group"] = "AbyssalWastingIncreasedEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4121, + }, + ["tradeHashes"] = { + [4043376133] = { + "(60-100)% increased Magnitude of Abyssal Wasting you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { + "Abyssal Wasting you inflict has Infinite Duration", + ["affix"] = "", + ["group"] = "AbyssalWastingInfiniteDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4123, + }, + ["tradeHashes"] = { + [1679776108] = { + "Abyssal Wasting you inflict has Infinite Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { + "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", + " enemy affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingOnslaughtChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6374, + 6374.1, + }, + ["tradeHashes"] = { + [3451259830] = { + "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", + " enemy affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingPreventsCrits"] = { + "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingPreventsCrits", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4119, + }, + ["tradeHashes"] = { + [1986082444] = { + "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingRage"] = { + "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingRage", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6372, + }, + ["tradeHashes"] = { + [2934385135] = { + "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { + "Abyssal Wasting also applies {0:-d}% to Fire Resistance", + ["affix"] = "", + ["group"] = "AbyssalWastingReducesFireRes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4122, + }, + ["tradeHashes"] = { + [2991563371] = { + "Abyssal Wasting also applies {0:-d}% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { + "+(20-30)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(20-30)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuDamageAsExtraFire"] = { + "Gain (8-12)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (8-12)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuFasterCursedActivation"] = { + "(10-20)% faster Curse Activation", + ["affix"] = "", + ["group"] = "CurseDelay", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5924, + }, + ["tradeHashes"] = { + [1104825894] = { + "(10-20)% faster Curse Activation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { + "+(20-25) to Spirit while you have at least 200 Strength", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Strength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10057, + }, + ["tradeHashes"] = { + [3044685077] = { + "+(20-25) to Spirit while you have at least 200 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuHybridArmourAndArmourElemental"] = { + "(30-40)% increased Armour", + "+(20-30)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "UniqueHybridArmourAndArmourElemental", + ["level"] = 1, + ["modTags"] = { + "defences", + "physical", + "elemental", + }, + ["statOrder"] = { + 882, + 1027, + }, + ["tradeHashes"] = { + [2866361420] = { + "(30-40)% increased Armour", + }, + [3362812763] = { + "+(20-30)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { + "Debuffs you inflict have (12-20)% increased Slow Magnitude", + "(10-20)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "UniqueHybridSlowAndSlowOnSelf", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4691, + 4747, + }, + ["tradeHashes"] = { + [3650992555] = { + "Debuffs you inflict have (12-20)% increased Slow Magnitude", + }, + [924253255] = { + "(10-20)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuHybridStrengthPercentGainAsFire"] = { + "Gain (8-12)% of Damage as Extra Fire Damage", + "(4-6)% increased Strength", + ["affix"] = "", + ["group"] = "UniqueHybridStrengthPercentGainAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attribute", + }, + ["statOrder"] = { + 863, + 999, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (8-12)% of Damage as Extra Fire Damage", + }, + [734614379] = { + "(4-6)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIgniteMagnitude"] = { + "(30-40)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(30-40)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIncreasedArmourPercent"] = { + "(30-40)% increased Armour", + ["affix"] = "", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(30-40)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { + "(15-25)% increased Area of Effect of Curses", + ["affix"] = "", + ["group"] = "CurseAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(15-25)% increased Area of Effect of Curses", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { + "Debuffs you inflict have (12-20)% increased Slow Magnitude", + ["affix"] = "", + ["group"] = "SlowEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4691, + }, + ["tradeHashes"] = { + [3650992555] = { + "Debuffs you inflict have (12-20)% increased Slow Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { + "(6-10)% increased Spirit", + ["affix"] = "", + ["group"] = "MaximumSpiritPercentage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1417, + }, + ["tradeHashes"] = { + [1416406066] = { + "(6-10)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { + "(4-6)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(4-6)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuMaxEnduranceCharges"] = { + "+1 to Maximum Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1559, + }, + ["tradeHashes"] = { + [1515657623] = { + "+1 to Maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { + "Hits against you have (20-30)% reduced Critical Damage Bonus", + ["affix"] = "", + ["group"] = "ReducedExtraDamageFromCrits", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1005, + }, + ["tradeHashes"] = { + [3855016469] = { + "Hits against you have (20-30)% reduced Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { + "(10-20)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(10-20)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuReducedMovementPenalty"] = { + "(5-8)% reduced Movement Speed Penalty from using Skills while moving", + ["affix"] = "", + ["group"] = "MovementVelocityPenaltyWhilePerformingAction", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9154, + }, + ["tradeHashes"] = { + [2590797182] = { + "(5-8)% reduced Movement Speed Penalty from using Skills while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuSkillEffectDuration"] = { + "(10-16)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(10-16)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuSpiritEfficiency"] = { + "(6-10)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(6-10)% increased Spirit Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { + "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", + ["affix"] = "", + ["group"] = "ThornsFromConsumingEndurance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10250, + }, + ["tradeHashes"] = { + [806994543] = { + "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { + "You and Allies in your Presence have +(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceChaosResistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10574, + }, + ["tradeHashes"] = { + [1404134612] = { + "You and Allies in your Presence have +(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { + "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10575, + }, + ["tradeHashes"] = { + [36954843] = { + "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { + "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "AbyssalWastingAccuracyRatingPlusPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4132, + }, + ["tradeHashes"] = { + [4255854327] = { + "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingDebilitates"] = { + "Targets affected by Abyssal Wasting you inflict are Debilitated", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingDebilitates", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4116, + }, + ["tradeHashes"] = { + [2668499289] = { + "Targets affected by Abyssal Wasting you inflict are Debilitated", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { + "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + ["affix"] = "", + ["group"] = "AbyssalWastingInstantManaLeechPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4125, + }, + ["tradeHashes"] = { + [546201303] = { + "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { + "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingPhysExplode", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 6340, + }, + ["tradeHashes"] = { + [3134931479] = { + "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingPreventsEleAilments"] = { + "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingPreventsEleAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 4118, + }, + ["tradeHashes"] = { + [4149923257] = { + "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { + "Abyssal Wasting also applies {0:-d}% to Cold Resistance", + ["affix"] = "", + ["group"] = "AbyssalWastingReducesColdRes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4120, + }, + ["tradeHashes"] = { + [3979226081] = { + "Abyssal Wasting also applies {0:-d}% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { + "10% chance to revive one of your Persistent Minions when you kill an", + " enemy affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingReviveChance", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 6375, + 6375.1, + }, + ["tradeHashes"] = { + [19819865] = { + "10% chance to revive one of your Persistent Minions when you kill an", + " enemy affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingVolatility"] = { + "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingVolatility", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6373, + }, + ["tradeHashes"] = { + [2952939159] = { + "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { + "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingWitherChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5557, + }, + ["tradeHashes"] = { + [2614251226] = { + "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalChillMagnitude"] = { + "(30-40)% increased Magnitude of Chill you inflict", + ["affix"] = "", + ["group"] = "ChillEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5647, + }, + ["tradeHashes"] = { + [828179689] = { + "(30-40)% increased Magnitude of Chill you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { + "(25-40)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(25-40)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalDamageAsExtraCold"] = { + "Gain (8-12)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (8-12)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { + "(10-14)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(10-14)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { + "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9688, + }, + ["tradeHashes"] = { + [2456226238] = { + "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { + "(15-25)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(15-25)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { + "+(20-25) to Spirit while you have at least 200 Intelligence", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Intelligence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10056, + }, + ["tradeHashes"] = { + [1282318918] = { + "+(20-25) to Spirit while you have at least 200 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { + "Gain Arcane Surge when a Minion Dies", + ["affix"] = "", + ["group"] = "GainArcaneSurgeOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6745, + }, + ["tradeHashes"] = { + [3625518318] = { + "Gain Arcane Surge when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { + "Gain Arcane Surge when a Minion Dies", + "You and Allies in your Presence have (11-16)% increased Cast Speed", + ["affix"] = "", + ["group"] = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + "caster", + "minion", + }, + ["statOrder"] = { + 6745, + 10573, + }, + ["tradeHashes"] = { + [281990982] = { + "You and Allies in your Presence have (11-16)% increased Cast Speed", + }, + [3625518318] = { + "Gain Arcane Surge when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalHybridEnergyShieldAndDelay"] = { + "(30-40)% increased maximum Energy Shield", + "(15-25)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "UniqueHybridEnergyShieldAndDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 886, + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(15-25)% faster start of Energy Shield Recharge", + }, + [2482852589] = { + "(30-40)% increased maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalHybridIntelligencePercentGainAsCold"] = { + "Gain (8-12)% of Damage as Extra Cold Damage", + "(4-6)% increased Intelligence", + ["affix"] = "", + ["group"] = "UniqueHybridIntelligencePercentGainAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attribute", + }, + ["statOrder"] = { + 866, + 1001, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (8-12)% of Damage as Extra Cold Damage", + }, + [656461285] = { + "(4-6)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalHybridManaPercentTakenBeforeLife"] = { + "(5-10)% increased maximum Mana", + "(10-14)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "UniqueHybridManaPercentTakenBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + 2472, + }, + ["tradeHashes"] = { + [2748665614] = { + "(5-10)% increased maximum Mana", + }, + [458438597] = { + "(10-14)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { + "(30-40)% increased maximum Energy Shield", + ["affix"] = "", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(30-40)% increased maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { + "(4-6)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(4-6)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { + "Spell Skills have (12-18)% increased Area of Effect", + ["affix"] = "", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (12-18)% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { + "(40-60)% increased Mana Regeneration Rate while Surrounded", + ["affix"] = "", + ["group"] = "ManaRegenWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8003, + }, + ["tradeHashes"] = { + [1895238057] = { + "(40-60)% increased Mana Regeneration Rate while Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalMaximumManaPercent"] = { + "(5-10)% increased maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(5-10)% increased maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalMaximumPowerCharges"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { + "Meta Skills gain (10-16)% increased Energy", + ["affix"] = "", + ["group"] = "EnergyGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6410, + }, + ["tradeHashes"] = { + [4236566306] = { + "Meta Skills gain (10-16)% increased Energy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { + "2% increased Cast Speed per 20 Spirit", + ["affix"] = "", + ["group"] = "PercentCastSpeedPerSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5333, + }, + ["tradeHashes"] = { + [34174842] = { + "2% increased Cast Speed per 20 Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { + "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + ["affix"] = "", + ["group"] = "SkillCostEfficiencyFromConsumingPower", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9897, + }, + ["tradeHashes"] = { + [2369495153] = { + "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { + "Triggered Spells deal (25-40)% increased Spell Damage", + ["affix"] = "", + ["group"] = "DamageWithTriggeredSpells", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10323, + }, + ["tradeHashes"] = { + [3067892458] = { + "Triggered Spells deal (25-40)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { + "You and Allies in your Presence have (11-16)% increased Cast Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCastSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10573, + }, + ["tradeHashes"] = { + [281990982] = { + "You and Allies in your Presence have (11-16)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { + "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "AbyssalWastingAilmentChancePlusPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4252, + }, + ["tradeHashes"] = { + [2760643568] = { + "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingBlinds"] = { + "Targets affected by Abyssal Wasting you inflict are Blinded", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingBlinds", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4115, + }, + ["tradeHashes"] = { + [3963171183] = { + "Targets affected by Abyssal Wasting you inflict are Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { + "Enemies you kill while they are affected by Abyssal Wasting", + " grant 100% increased Flask Charges", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingGrantsFlaskCharges", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6371, + 6371.1, + }, + ["tradeHashes"] = { + [2051332707] = { + "Enemies you kill while they are affected by Abyssal Wasting", + " grant 100% increased Flask Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { + "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", + ["affix"] = "", + ["group"] = "UniqueAbyssalWastingImmobilisationBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7276, + }, + ["tradeHashes"] = { + [3893409915] = { + "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { + "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", + ["affix"] = "", + ["group"] = "AbyssalWastingInstantLifeLeechPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4124, + }, + ["tradeHashes"] = { + [3658708511] = { + "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { + "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", + ["affix"] = "", + ["group"] = "AbyssalWastingReducesLightningRes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4126, + }, + ["tradeHashes"] = { + [1726353460] = { + "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { + "Projectiles have (40-50)% chance for an additional Projectile when Forking", + ["affix"] = "", + ["group"] = "ForkingProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have (40-50)% chance for an additional Projectile when Forking", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanCriticalDamageBonus"] = { + "(15-25)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(15-25)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanDamageAsExtraLightning"] = { + "Gain (8-12)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (8-12)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { + "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9686, + }, + ["tradeHashes"] = { + [3503117295] = { + "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { + "Gain Deflection Rating equal to (10-20)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (10-20)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { + "+(20-25) to Spirit while you have at least 200 Dexterity", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200PerDexterity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10055, + }, + ["tradeHashes"] = { + [2694614739] = { + "+(20-25) to Spirit while you have at least 200 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + ["affix"] = "", + ["group"] = "GainOnslaughtSurgeOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6824, + }, + ["tradeHashes"] = { + [3605616594] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + "You and Allies in your Presence have (7-12)% increased Attack Speed", + ["affix"] = "", + ["group"] = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "attack", + "speed", + "minion", + }, + ["statOrder"] = { + 6824, + 10572, + }, + ["tradeHashes"] = { + [3408222535] = { + "You and Allies in your Presence have (7-12)% increased Attack Speed", + }, + [3605616594] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { + "Projectiles have (40-50)% chance for an additional Projectile when Forking", + "Projectiles have (15-20)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "UniqueHybridChainTerrainAndFork", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5515, + 9543, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have (40-50)% chance for an additional Projectile when Forking", + }, + [4081947835] = { + "Projectiles have (15-20)% chance to Chain an additional time from terrain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanHybridDexterityAndGainAsLightning"] = { + "Gain (8-12)% of Damage as Extra Lightning Damage", + "(4-6)% increased Dexterity", + ["affix"] = "", + ["group"] = "UniqueHybridDexterityAndGainAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attribute", + }, + ["statOrder"] = { + 869, + 1000, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (8-12)% of Damage as Extra Lightning Damage", + }, + [4139681126] = { + "(4-6)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanHybridEvasionAndDeflection"] = { + "(30-40)% increased Evasion Rating", + "Gain Deflection Rating equal to (10-20)% of Evasion Rating", + ["affix"] = "", + ["group"] = "UniqueHybridEvasionAndDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 884, + 1028, + }, + ["tradeHashes"] = { + [2106365538] = { + "(30-40)% increased Evasion Rating", + }, + [3033371881] = { + "Gain Deflection Rating equal to (10-20)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { + "(5-10)% increased maximum Life", + "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "UniqueHybridLifeRecoverLifeOnDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + 9686, + }, + ["tradeHashes"] = { + [3503117295] = { + "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", + }, + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { + "(12-18)% increased Area of Effect for Attacks", + ["affix"] = "", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(12-18)% increased Area of Effect for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanIncreasedDexterityPercent"] = { + "(4-6)% increased Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(4-6)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanIncreasedEvasionPercent"] = { + "(30-40)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(30-40)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { + "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + ["affix"] = "", + ["group"] = "LifeLeechAmountFromConsumingFrenzy", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7452, + }, + ["tradeHashes"] = { + [3843204146] = { + "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { + "(30-40)% increased Life Regeneration rate while Surrounded", + ["affix"] = "", + ["group"] = "LifeRegenWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7505, + }, + ["tradeHashes"] = { + [3084372306] = { + "(30-40)% increased Life Regeneration rate while Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanMaximumFrenzyCharges"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanMaximumLifePercent"] = { + "(5-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { + "1% increased Attack Speed per 20 Spirit", + ["affix"] = "", + ["group"] = "PercentAttackSpeedPerSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4553, + }, + ["tradeHashes"] = { + [324579579] = { + "1% increased Attack Speed per 20 Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { + "Projectiles have (10-16)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (10-16)% chance to Chain an additional time from terrain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanShockMagnitude"] = { + "(30-40)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(30-40)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { + "You and Allies in your Presence have (20-28)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAccuracyRating", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10570, + }, + ["tradeHashes"] = { + [3429986699] = { + "You and Allies in your Presence have (20-28)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { + "You and Allies in your Presence have (7-12)% increased Attack Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAttackSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10572, + }, + ["tradeHashes"] = { + [3408222535] = { + "You and Allies in your Presence have (7-12)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassiveEffectivenessJewelUnique__1_"] = { + "50% increased Effect of non-Keystone Passive Skills in Radius", + "Notable Passive Skills in Radius grant nothing", + ["affix"] = "", + ["group"] = "PassiveEffectivenessJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7902, + 7903, + }, + ["tradeHashes"] = { + [2627243269] = { + "Notable Passive Skills in Radius grant nothing", + }, + [607548408] = { + "50% increased Effect of non-Keystone Passive Skills in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PassivesApplyToMinionsUniqueJewel7"] = { + "Passives in Radius apply to Minions instead of you", + ["affix"] = "", + ["group"] = "PassivesApplyToMinionsJewel", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2802, + }, + ["tradeHashes"] = { + [727625899] = { + "Passives in Radius apply to Minions instead of you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PenetrateEnemyFireResistUnique__1"] = { + "Damage Penetrates 20% Fire Resistance", + ["affix"] = "", + ["group"] = "PenetrateEnemyFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates 20% Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentDamageGoesToManaUniqueBootsDex3"] = { + "(5-10)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(5-10)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { + "(10-20)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(10-20)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentDamageGoesToManaUnique__1"] = { + "8% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "8% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentDamageGoesToManaUnique__2"] = { + "(6-12)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(6-12)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentDamagePerItemQuantityUnique__1"] = { + "Your Increases and Reductions to Quantity of Items found also apply to Damage", + ["affix"] = "", + ["group"] = "PercentDamagePerItemQuantity", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6002, + }, + ["tradeHashes"] = { + [2675627948] = { + "Your Increases and Reductions to Quantity of Items found also apply to Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentIncreasedAccuracyJewel"] = { + "(10-14)% increased Accuracy Rating", + ["affix"] = "of Precision", + ["group"] = "IncreasedAccuracyPercentForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(10-14)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["PercentIncreasedAccuracyJewelUnique__1"] = { + "20% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercentForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "20% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentIncreasedLifeAndManaJewel"] = { + "(2-4)% increased maximum Life", + "(4-6)% increased maximum Mana", + ["affix"] = "Passionate", + ["group"] = "PercentageLifeAndManaForJewel", + ["level"] = 1, + ["modTags"] = { + "green_herring", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 889, + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(4-6)% increased maximum Mana", + }, + [983749596] = { + "(2-4)% increased maximum Life", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["PercentIncreasedLifeJewel"] = { + "(5-7)% increased maximum Life", + ["affix"] = "Vivid", + ["group"] = "PercentIncreasedLifeForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-7)% increased maximum Life", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["PercentIncreasedManaJewel"] = { + "(8-10)% increased maximum Mana", + ["affix"] = "Enlightened", + ["group"] = "PercentIncreasedManaForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(8-10)% increased maximum Mana", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { + "30% of Lightning Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "PercentLightningDamageTakenFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + "elemental", + "lightning", + }, + ["statOrder"] = { + 3822, + }, + ["tradeHashes"] = { + [2477735984] = { + "30% of Lightning Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentManaRecoveredWhenYouShockUnique__1"] = { + "Recover 3% of maximum Mana when you Shock an Enemy", + ["affix"] = "", + ["group"] = "PercentManaRecoveredWhenYouShock", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3824, + }, + ["tradeHashes"] = { + [2524029637] = { + "Recover 3% of maximum Mana when you Shock an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { + "10% of Physical damage dealt by your Hits causes Blood Loss", + ["affix"] = "", + ["group"] = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9423, + }, + ["tradeHashes"] = { + [70760090] = { + "10% of Physical damage dealt by your Hits causes Blood Loss", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PetrificationStatueUnique__1"] = { + "Grants Level 20 Petrification Statue Skill", + ["affix"] = "", + ["group"] = "GrantsPetrificationStatue", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 500, + }, + ["tradeHashes"] = { + [1904419785] = { + "Grants Level 20 Petrification Statue Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhasingOnBeginESRechargeUnique___1"] = { + "You have Phasing if Energy Shield Recharge has started Recently", + ["affix"] = "", + ["group"] = "GainPhasingFor4SecondsOnBeginESRecharge", + ["level"] = 56, + ["modTags"] = { + }, + ["statOrder"] = { + 2284, + }, + ["tradeHashes"] = { + [2632954025] = { + "You have Phasing if Energy Shield Recharge has started Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhasingOnRampageUniqueGlovesDexInt6"] = { + "Enemies do not block your movement for 4 seconds on Rampage", + ["affix"] = "", + ["group"] = "PhasingOnRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2713, + }, + ["tradeHashes"] = { + [376956212] = { + "Enemies do not block your movement for 4 seconds on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhasingOnTrapTriggeredUnique__1"] = { + "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", + ["affix"] = "", + ["group"] = "PhasingOnTrapTriggered", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3891, + }, + ["tradeHashes"] = { + [144887967] = { + "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhasingUniqueBootsStrDex4"] = { + "Phasing", + ["affix"] = "", + ["group"] = "Phasing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2576, + }, + ["tradeHashes"] = { + [963290143] = { + "Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { + "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", + ["affix"] = "", + ["group"] = "PhysAddedAsChaosWithMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 3160, + }, + ["tradeHashes"] = { + [3655758456] = { + "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { + "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", + ["affix"] = "", + ["group"] = "PhysAddedAsEachElementPerSpiritCharge", + ["level"] = 1, + ["modTags"] = { + "earth_elemental", + "physical", + }, + ["statOrder"] = { + 9298, + }, + ["tradeHashes"] = { + [3137640399] = { + "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAddedAsFireUnique__1"] = { + "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", + ["affix"] = "", + ["group"] = "AttackPhysicalDamageAddedAsFire", + ["level"] = 30, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 3448, + }, + ["tradeHashes"] = { + [3606204707] = { + "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAddedAsFireUnique__2"] = { + "Gain 70% of Physical Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalAddedAsFire", + ["level"] = 50, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1674, + }, + ["tradeHashes"] = { + [1936645603] = { + "Gain 70% of Physical Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAddedAsFireUnique__3"] = { + "Gain 20% of Physical Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalAddedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 1674, + }, + ["tradeHashes"] = { + [1936645603] = { + "Gain 20% of Physical Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueAmulet8"] = { + "-4 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 25, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-4 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueBelt3"] = { + "-2 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-2 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueBelt8"] = { + "-(50-40) Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-(50-40) Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { + "-3 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-3 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { + "-(7-5) Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-(7-5) Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { + "-(15-10) Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-(15-10) Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { + "-(18-14) Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-(18-14) Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalAttackDamageReducedUnique__1"] = { + "-(60-30) Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-(60-30) Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalBowDamageCloseRangeUniqueBow6"] = { + "50% more Damage with Arrow Hits at Close Range", + ["affix"] = "", + ["group"] = "ChinSolPhysicalBowDamageAtCloseRange", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2194, + }, + ["tradeHashes"] = { + [2749166636] = { + "50% more Damage with Arrow Hits at Close Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { + "Physical Damage from Hits also Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "PhysicalDamageCanChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2637, + }, + ["tradeHashes"] = { + [2227042420] = { + "Physical Damage from Hits also Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { + "Physical Damage from Hits also Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "PhysicalDamageCanChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2637, + }, + ["tradeHashes"] = { + [2227042420] = { + "Physical Damage from Hits also Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageCanShockUnique__1"] = { + "Physical Damage from Hits also Contributes to Shock Chance", + ["affix"] = "", + ["group"] = "PhysicalDamageCanShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2640, + }, + ["tradeHashes"] = { + [3848047105] = { + "Physical Damage from Hits also Contributes to Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertToChaosBodyStrInt4"] = { + "30% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "30% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertToChaosUniqueBow5"] = { + "25% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "25% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertToChaosUniqueClaw2"] = { + "(10-20)% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "(10-20)% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertToChaosUnique__1"] = { + "25% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "25% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { + "1% of Physical Damage Converted to Chaos Damage per Level", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertToChaosPerLevel", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 9282, + }, + ["tradeHashes"] = { + [1422721322] = { + "1% of Physical Damage Converted to Chaos Damage per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertedToChaosUnique__1"] = { + "25% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertedToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "25% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageConvertedToChaosUnique__2"] = { + "50% of Physical Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageConvertedToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "physical_damage", + "damage", + "physical", + "chaos", + }, + ["statOrder"] = { + 1710, + }, + ["tradeHashes"] = { + [717955465] = { + "50% of Physical Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { + "-(50-40) Physical Damage taken from Hits by Animals", + ["affix"] = "", + ["group"] = "PhysicalDamageFromBeasts", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 2675, + }, + ["tradeHashes"] = { + [3277537093] = { + "-(50-40) Physical Damage taken from Hits by Animals", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { + "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", + ["affix"] = "", + ["group"] = "PhysicalDamageImmunityOnRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2701, + }, + ["tradeHashes"] = { + [3100457893] = { + "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageJewel"] = { + "(14-16)% increased Global Physical Damage", + ["affix"] = "Sharpened", + ["group"] = "PhysicalDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1310194496] = { + "(14-16)% increased Global Physical Damage", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { + "(7-10)% more Melee Physical Damage during effect", + ["affix"] = "", + ["group"] = "PhysicalDamageOnFlaskUse", + ["level"] = 1, + ["modTags"] = { + "flask", + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 797, + }, + ["tradeHashes"] = { + [3636096208] = { + "(7-10)% more Melee Physical Damage during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { + "25% of Physical Damage from Hits taken as Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamagePercentTakesAsChaosDamage", + ["level"] = 1, + ["modTags"] = { + "physical", + "chaos", + }, + ["statOrder"] = { + 2212, + }, + ["tradeHashes"] = { + [4129825612] = { + "25% of Physical Damage from Hits taken as Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamagePercentUnique___1"] = { + "(10-15)% increased Global Physical Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1310194496] = { + "(10-15)% increased Global Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { + "10% additional Physical Damage Reduction while stationary", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionWhileNotMoving", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 3983, + }, + ["tradeHashes"] = { + [2181129193] = { + "10% additional Physical Damage Reduction while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageTakenAsColdUnique__1"] = { + "20% of Physical Damage from Hits taken as Cold Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsCold", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 2206, + }, + ["tradeHashes"] = { + [1871056256] = { + "20% of Physical Damage from Hits taken as Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { + "20% of Physical Damage from Hits taken as Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsFirePercent", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2197, + }, + ["tradeHashes"] = { + [3342989455] = { + "20% of Physical Damage from Hits taken as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageTakenAsFirePercentUnique__1"] = { + "8% of Physical Damage from Hits taken as Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsFirePercent", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2197, + }, + ["tradeHashes"] = { + [3342989455] = { + "8% of Physical Damage from Hits taken as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { + "50% of Physical damage from Hits taken as Lightning damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsLightningPercent", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2201, + }, + ["tradeHashes"] = { + [425242359] = { + "50% of Physical damage from Hits taken as Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { + "1000% of Melee Physical Damage taken reflected to Attacker", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenPercentToReflect", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2241, + }, + ["tradeHashes"] = { + [1092987622] = { + "1000% of Melee Physical Damage taken reflected to Attacker", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { + "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", + ["affix"] = "", + ["group"] = "SelfPhysicalDamageOnMinionDeathPerES", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2758, + }, + ["tradeHashes"] = { + [1617739170] = { + "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { + "350 Physical Damage taken on Minion Death", + ["affix"] = "", + ["group"] = "SelfPhysicalDamageOnMinionDeath", + ["level"] = 25, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2762, + }, + ["tradeHashes"] = { + [4176970656] = { + "350 Physical Damage taken on Minion Death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageWhileFrozenUnique___1"] = { + "100% increased Global Physical Damage while Frozen", + ["affix"] = "", + ["group"] = "PhysicalDamageWhileFrozen", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3049, + }, + ["tradeHashes"] = { + [2614654450] = { + "100% increased Global Physical Damage while Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PhysicalDamageWhileHoldingAShield"] = { + "(12-14)% increased Attack Damage while holding a Shield", + ["affix"] = "Flanking", + ["group"] = "DamageWhileHoldingAShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1164, + }, + ["tradeHashes"] = { + [1393393937] = { + "(12-14)% increased Attack Damage while holding a Shield", + }, + }, + ["weightKey"] = { + "bow", + "wand", + "dual_wielding_mod", + "two_handed_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { + "25% increased Global Physical Damage with Weapons per Red Socket", + ["affix"] = "", + ["group"] = "PhysicalDamgePerRedSocket", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2490, + }, + ["tradeHashes"] = { + [2112615899] = { + "25% increased Global Physical Damage with Weapons per Red Socket", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PlayerFarShotUnique__1"] = { + "Far Shot", + ["affix"] = "", + ["group"] = "PlayerFarShot", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10729, + }, + ["tradeHashes"] = { + [2483362276] = { + "Far Shot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PlayerLightAlternateColourUniqueRing9"] = { + "Emits a golden glow", + ["affix"] = "", + ["group"] = "PlayerLightAlternateColour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2337, + }, + ["tradeHashes"] = { + [1252481812] = { + "Emits a golden glow", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonChanceAndDurationForJewel"] = { + "(6-8)% increased Poison Duration", + "(3-5)% chance to Poison on Hit", + ["affix"] = "of Poisoning", + ["group"] = "PoisonChanceAndDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + 2899, + }, + ["tradeHashes"] = { + [2011656677] = { + "(6-8)% increased Poison Duration", + }, + [795138349] = { + "(3-5)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["PoisonCursedEnemiesOnHitUnique__1"] = { + "Poison Cursed Enemies on hit", + ["affix"] = "", + ["group"] = "PoisonCursedEnemiesOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3860, + }, + ["tradeHashes"] = { + [4266201818] = { + "Poison Cursed Enemies on hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonDurationOnYouJewel"] = { + "(30-35)% reduced Poison Duration on you", + ["affix"] = "of Neutralisation", + ["group"] = "ReducedPoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(30-35)% reduced Poison Duration on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["PoisonDurationPerPowerChargeUnique__1"] = { + "3% increased Poison Duration per Power Charge", + ["affix"] = "", + ["group"] = "PoisonDurationPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 9494, + }, + ["tradeHashes"] = { + [3491499175] = { + "3% increased Poison Duration per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonDurationUnique__1_"] = { + "(15-20)% increased Poison Duration", + ["affix"] = "", + ["group"] = "PoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(15-20)% increased Poison Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonDurationUnique__2"] = { + "(20-25)% increased Poison Duration", + ["affix"] = "", + ["group"] = "PoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(20-25)% increased Poison Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonDurationWithOver150IntelligenceUnique__1"] = { + "(15-25)% increased Poison Duration if you have at least 150 Intelligence", + ["affix"] = "", + ["group"] = "PoisonDurationWithOver150Intelligence", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 9495, + }, + ["tradeHashes"] = { + [2771181375] = { + "(15-25)% increased Poison Duration if you have at least 150 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PoisonOnMeleeHitUnique__1"] = { + "Melee Attacks have (20-40)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "PoisonOnMeleeHit", + ["level"] = 60, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 3906, + }, + ["tradeHashes"] = { + [33065250] = { + "Melee Attacks have (20-40)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeDurationJewel_"] = { + "(10-14)% increased Power Charge Duration", + ["affix"] = "of Power", + ["group"] = "PowerChargeDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "(10-14)% increased Power Charge Duration", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["PowerChargeDurationUniqueAmulet14"] = { + "30% reduced Power Charge Duration", + ["affix"] = "", + ["group"] = "IncreasedPowerChargeDuration", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "30% reduced Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnHitUnique__1"] = { + "20% chance to gain a Power Charge on Hit", + ["affix"] = "", + ["group"] = "PowerChargeOnHit", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1589, + }, + ["tradeHashes"] = { + [1453197917] = { + "20% chance to gain a Power Charge on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKillChanceProphecy_"] = { + "30% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "30% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKillChanceUniqueAmulet15"] = { + "10% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "10% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { + "15% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "15% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { + "10% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "10% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKillChanceUnique__1"] = { + "(25-35)% chance to gain a Power Charge on kill", + ["affix"] = "", + ["group"] = "PowerChargeOnKillChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2407, + }, + ["tradeHashes"] = { + [2483795307] = { + "(25-35)% chance to gain a Power Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnKnockbackUniqueStaff7"] = { + "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", + ["affix"] = "", + ["group"] = "PowerChargeOnKnockback", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "attack", + }, + ["statOrder"] = { + 2686, + }, + ["tradeHashes"] = { + [2179619644] = { + "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnManaSpentUnique__1"] = { + "Gain a Power Charge after Spending a total of 200 Mana", + ["affix"] = "", + ["group"] = "PowerChargeOnManaSpent", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 7665, + }, + ["tradeHashes"] = { + [3269060224] = { + "Gain a Power Charge after Spending a total of 200 Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnMeleeStunUniqueSceptre10"] = { + "30% chance to gain a Power Charge when you Stun with Melee Damage", + ["affix"] = "", + ["group"] = "PowerChargeOnMeleeStun", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2530, + }, + ["tradeHashes"] = { + [2318615887] = { + "30% chance to gain a Power Charge when you Stun with Melee Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnStunUniqueSceptre10"] = { + "30% chance to gain a Power Charge when you Stun", + ["affix"] = "", + ["group"] = "PowerChargeOnStun", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2531, + }, + ["tradeHashes"] = { + [3470535775] = { + "30% chance to gain a Power Charge when you Stun", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { + "25% chance to gain a Power Charge when you Throw a Trap", + ["affix"] = "", + ["group"] = "PowerChargeOnTrapThrow", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 2687, + }, + ["tradeHashes"] = { + [1936544447] = { + "25% chance to gain a Power Charge when you Throw a Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { + "(10-15)% chance to gain a Power, Frenzy, or Endurance Charge on kill", + ["affix"] = "", + ["group"] = "PowerFrenzyOrEnduranceChargeOnKill", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 3293, + }, + ["tradeHashes"] = { + [498214257] = { + "(10-15)% chance to gain a Power, Frenzy, or Endurance Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrecisionAuraBonusUnique__1"] = { + "Precision has 100% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "PrecisionAuraBonus", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "aura", + }, + ["statOrder"] = { + 9515, + }, + ["tradeHashes"] = { + [1291925008] = { + "Precision has 100% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrecisionReservationEfficiencyUnique__1"] = { + "Precision has 100% increased Mana Reservation Efficiency", + ["affix"] = "", + ["group"] = "PrecisionReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "aura", + }, + ["statOrder"] = { + 9516, + }, + ["tradeHashes"] = { + [3859865977] = { + "Precision has 100% increased Mana Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrimordialJewelCountUnique__1"] = { + "Primordial", + ["affix"] = "", + ["group"] = "PrimordialJewelCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10643, + }, + ["tradeHashes"] = { + [1089165168] = { + "Primordial", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrimordialJewelCountUnique__2"] = { + "Primordial", + ["affix"] = "", + ["group"] = "PrimordialJewelCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10643, + }, + ["tradeHashes"] = { + [1089165168] = { + "Primordial", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrimordialJewelCountUnique__3"] = { + "Primordial", + ["affix"] = "", + ["group"] = "PrimordialJewelCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10643, + }, + ["tradeHashes"] = { + [1089165168] = { + "Primordial", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrimordialJewelCountUnique__4"] = { + "Primordial", + ["affix"] = "", + ["group"] = "PrimordialJewelCount", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10643, + }, + ["tradeHashes"] = { + [1089165168] = { + "Primordial", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { + "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "ProjectileAttackCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3987, + }, + ["tradeHashes"] = { + [4095169720] = { + "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileAttackDamageImplicitGloves1"] = { + "(14-18)% increased Projectile Attack Damage", + ["affix"] = "", + ["group"] = "ProjectileAttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1739, + }, + ["tradeHashes"] = { + [2162876159] = { + "(14-18)% increased Projectile Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { + "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", + "you have a Bestial Minion", + ["affix"] = "", + ["group"] = "ProjectileAttacksChanceToBleedBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 3988, + 3988.1, + }, + ["tradeHashes"] = { + [4058504226] = { + "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", + "you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { + "Projectiles from Attacks have 20% chance to Maim on Hit while", + "you have a Bestial Minion", + ["affix"] = "", + ["group"] = "ProjectileAttacksChanceToMaimBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3989, + 3989.1, + }, + ["tradeHashes"] = { + [1753916791] = { + "Projectiles from Attacks have 20% chance to Maim on Hit while", + "you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { + "Projectiles from Attacks have 20% chance to Poison on Hit while", + "you have a Bestial Minion", + ["affix"] = "", + ["group"] = "ProjectileAttacksChanceToPoisonBeastialMinion", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 3990, + 3990.1, + }, + ["tradeHashes"] = { + [1114411822] = { + "Projectiles from Attacks have 20% chance to Poison on Hit while", + "you have a Bestial Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileDamageJewel"] = { + "(10-12)% increased Projectile Damage", + ["affix"] = "of Archery", + ["group"] = "ProjectileDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "(10-12)% increased Projectile Damage", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ProjectileDamageJewelUniqueJewel41"] = { + "10% increased Projectile Damage", + ["affix"] = "", + ["group"] = "ProjectileDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "10% increased Projectile Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { + "5% increased Projectile Damage per Power Charge", + ["affix"] = "", + ["group"] = "ProjectileDamagePerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2415, + }, + ["tradeHashes"] = { + [3816512110] = { + "5% increased Projectile Damage per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileFreezeChanceUniqueDagger6"] = { + "Projectiles have (15-20)% chance to Freeze", + ["affix"] = "", + ["group"] = "ProjectileFreezeChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2475, + }, + ["tradeHashes"] = { + [3733737728] = { + "Projectiles have (15-20)% chance to Freeze", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileShockChanceUniqueDagger6"] = { + "Projectiles have (15-20)% chance to Shock", + ["affix"] = "", + ["group"] = "ProjectileShockChance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2476, + }, + ["tradeHashes"] = { + [2803352419] = { + "Projectiles have (15-20)% chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectileSpeedJewel"] = { + "(6-8)% increased Projectile Speed", + ["affix"] = "of Soaring", + ["group"] = "IncreasedProjectileSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(6-8)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { + "5% increased Projectile Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "ProjectileSpeedPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2414, + }, + ["tradeHashes"] = { + [3159161267] = { + "5% increased Projectile Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ProjectilesForkUnique____1"] = { + "Arrows Fork", + ["affix"] = "", + ["group"] = "ArrowsFork", + ["level"] = 70, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3265, + }, + ["tradeHashes"] = { + [2421436896] = { + "Arrows Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { + "Projectiles Pierce all Targets while you have Phasing", + ["affix"] = "", + ["group"] = "PrrojectilesPierceWhilePhasing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9572, + }, + ["tradeHashes"] = { + [2636403786] = { + "Projectiles Pierce all Targets while you have Phasing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PunishmentReservationCostUnique__1"] = { + "Punishment has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "PunishmentNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 9576, + }, + ["tradeHashes"] = { + [2097195894] = { + "Punishment has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { + "(20-30)% chance to Curse you with Punishment on Kill", + ["affix"] = "", + ["group"] = "PunishmentSelfCurseOnKill", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2848, + }, + ["tradeHashes"] = { + [1556263668] = { + "(20-30)% chance to Curse you with Punishment on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuarterstaffImplicitAdditionalBlock1"] = { + "+(12-18)% to Block chance", + ["affix"] = "", + ["group"] = "AdditionalBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+(12-18)% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuarterstaffImplicitDazeChance1"] = { + "(20-50)% chance to Daze on Hit", + ["affix"] = "", + ["group"] = "LocalDazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7924, + }, + ["tradeHashes"] = { + [2933846633] = { + "(20-50)% chance to Daze on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuarterstaffImplicitRunicWard1"] = { + "+(30-50) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+(30-50) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuarterstaffWeaponRange1"] = { + "16% increased Melee Strike Range with this weapon", + ["affix"] = "", + ["group"] = "LocalWeaponRangeIncrease", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7600, + }, + ["tradeHashes"] = { + [548198834] = { + "16% increased Melee Strike Range with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuillRainVerisiumImplicitForkExtraProjectile"] = { + "Projectiles have 50% chance for an additional Projectile when Forking", + ["affix"] = "", + ["group"] = "ForkingProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have 50% chance for an additional Projectile when Forking", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitArrowAdditionalPierce1"] = { + "100% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 69, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "100% chance to Pierce an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitArrowSpeed1"] = { + "(20-30)% increased Arrow Speed", + ["affix"] = "", + ["group"] = "ArrowSpeed", + ["level"] = 75, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1552, + }, + ["tradeHashes"] = { + [1207554355] = { + "(20-30)% increased Arrow Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitChanceToBleed1"] = { + "Attacks have (20-30)% chance to cause Bleeding", + ["affix"] = "", + ["group"] = "ChanceToBleed", + ["level"] = 56, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2270, + }, + ["tradeHashes"] = { + [2055966527] = { + "Attacks have (20-30)% chance to cause Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitChanceToPoison1"] = { + "(20-30)% chance to Poison on Hit with Attacks", + ["affix"] = "", + ["group"] = "ChanceToPoisonWithAttacks", + ["level"] = 49, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 2902, + }, + ["tradeHashes"] = { + [3954735777] = { + "(20-30)% chance to Poison on Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitCriticalStrikeChance1"] = { + "(20-30)% increased Critical Hit Chance for Attacks", + ["affix"] = "", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 80, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(20-30)% increased Critical Hit Chance for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitFireDamage1"] = { + "Adds 3 to 5 Fire damage to Attacks", + ["affix"] = "", + ["group"] = "FireDamage", + ["level"] = 11, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds 3 to 5 Fire damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitIncreasedAccuracy1"] = { + "(20-30)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 30, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(20-30)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitIncreasedAttackSpeed1"] = { + "(7-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 64, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(7-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitLifeGainPerTarget1"] = { + "Gain (2-3) Life per Enemy Hit with Attacks", + ["affix"] = "", + ["group"] = "LifeGainPerTarget", + ["level"] = 21, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain (2-3) Life per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitPhysicalDamage1"] = { + "Adds 1 to 3 Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds 1 to 3 Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["QuiverImplicitStunThresholdReduction1"] = { + "(25-40)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "StunDamageIncrease", + ["level"] = 40, + ["modTags"] = { + }, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [239367161] = { + "(25-40)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { + "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", + ["affix"] = "", + ["group"] = "RageOnHitWithMeleeAbyssJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7704, + }, + ["tradeHashes"] = { + [3892691596] = { + "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { + "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", + ["affix"] = "", + ["group"] = "RagingSpiritDurationResetOnIgnitedEnemy", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9629, + }, + ["tradeHashes"] = { + [2761732967] = { + "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RaiseSpectreManaCostUnique__1_"] = { + "(40-50)% reduced Mana Cost of Raise Spectre", + ["affix"] = "", + ["group"] = "RaiseSpectreManaCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "minion", + }, + ["statOrder"] = { + 9634, + }, + ["tradeHashes"] = { + [262301496] = { + "(40-50)% reduced Mana Cost of Raise Spectre", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { + "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + ["affix"] = "", + ["group"] = "RandomlyCursedWhenTotemsDie", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2330, + }, + ["tradeHashes"] = { + [2918129907] = { + "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RangedAttackDamageReducedUniqueShieldStr1"] = { + "-25 Physical damage taken from Projectile Attacks", + ["affix"] = "", + ["group"] = "RangedAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1971, + }, + ["tradeHashes"] = { + [3612407781] = { + "-25 Physical damage taken from Projectile Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RangedAttackDamageReducedUniqueShieldStr2"] = { + "-(80-50) Physical damage taken from Projectile Attacks", + ["affix"] = "", + ["group"] = "RangedAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1971, + }, + ["tradeHashes"] = { + [3612407781] = { + "-(80-50) Physical damage taken from Projectile Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { + "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", + ["affix"] = "", + ["group"] = "RangedAttacksConsumeAmmo", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4581, + }, + ["tradeHashes"] = { + [591162856] = { + "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { + "(10-15)% increased Physical Damage with Ranged Weapons", + ["affix"] = "", + ["group"] = "RangedWeaponPhysicalDamagePlusPercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1740, + }, + ["tradeHashes"] = { + [766615564] = { + "(10-15)% increased Physical Damage with Ranged Weapons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { + "(75-150)% increased Physical Damage with Ranged Weapons", + ["affix"] = "", + ["group"] = "RangedWeaponPhysicalDamagePlusPercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1740, + }, + ["tradeHashes"] = { + [766615564] = { + "(75-150)% increased Physical Damage with Ranged Weapons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReceiveBleedingWhenHitUnique__1_"] = { + "50% chance to be inflicted with Bleeding when Hit", + ["affix"] = "", + ["group"] = "ReceiveBleedingWhenHit", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 9654, + }, + ["tradeHashes"] = { + [3423694372] = { + "50% chance to be inflicted with Bleeding when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { + "Recover (8-10)% of maximum Life when you use a Mana Flask", + ["affix"] = "", + ["group"] = "RecoverLifeInstantlyOnManaFlask", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 4003, + }, + ["tradeHashes"] = { + [1926816773] = { + "Recover (8-10)% of maximum Life when you use a Mana Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RecoverLifePercentOnIgniteUnique__1"] = { + "Recover 1% of maximum Life when you Ignite an Enemy", + ["affix"] = "", + ["group"] = "RecoverLifePercentOnIgnite", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3970, + }, + ["tradeHashes"] = { + [3112776239] = { + "Recover 1% of maximum Life when you Ignite an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RecoverPercentMaxLifeOnKillUnique__1"] = { + "Recover 5% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "RecoverPercentMaxLifeOnKill", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 5% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RecoverPercentMaxLifeOnKillUnique__2"] = { + "Recover 5% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "RecoverPercentMaxLifeOnKill", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 5% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RecoverPercentMaxLifeOnKillUnique__3"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "RecoverPercentMaxLifeOnKill", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover 1% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { + "(20-30)% reduced Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(20-30)% reduced Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { + "Movement Attack Skills have 40% reduced Attack Speed", + ["affix"] = "", + ["group"] = "ReducedAttackSpeedOfMovementSkills", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 9137, + }, + ["tradeHashes"] = { + [1176492594] = { + "Movement Attack Skills have 40% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedBleedDurationUnique__1_"] = { + "25% reduced Bleeding Duration", + ["affix"] = "", + ["group"] = "BleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "25% reduced Bleeding Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedCurseEffectUniqueRing26"] = { + "60% reduced effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "60% reduced effect of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedCurseEffectUniqueRing7"] = { + "50% reduced effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "50% reduced effect of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedCurseEffectUnique__1"] = { + "20% reduced effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "20% reduced effect of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedDamageIfNotHitRecentlyUnique__1"] = { + "35% less Damage taken if you have not been Hit Recently", + ["affix"] = "", + ["group"] = "ReducedDamageIfNotHitRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3839, + }, + ["tradeHashes"] = { + [67637087] = { + "35% less Damage taken if you have not been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { + "10% increased Damage taken if you've taken a Savage Hit Recently", + ["affix"] = "", + ["group"] = "ReducedDamageIfTakenASavageHitRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3827, + }, + ["tradeHashes"] = { + [2415592273] = { + "10% increased Damage taken if you've taken a Savage Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { + "1% reduced Elemental Damage taken from Hits per Endurance Charge", + ["affix"] = "", + ["group"] = "ReducedElementalDamageTakenHitsPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 6284, + }, + ["tradeHashes"] = { + [1686913105] = { + "1% reduced Elemental Damage taken from Hits per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { + "40% reduced Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 81, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "40% reduced Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { + "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", + ["affix"] = "", + ["group"] = "ReducedExtraDamageFromCritsWithNoPowerCharges", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 6544, + }, + ["tradeHashes"] = { + [3544527742] = { + "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedFireDamageTakenUnique__1"] = { + "-(200-100) Fire Damage taken from Hits", + ["affix"] = "", + ["group"] = "FlatFireDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 1962, + }, + ["tradeHashes"] = { + [614758785] = { + "-(200-100) Fire Damage taken from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedFreezeDurationUniqueShieldStrInt3"] = { + "80% reduced Freeze Duration on you", + ["affix"] = "", + ["group"] = "ReducedFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "80% reduced Freeze Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedLifeLeechRateUniqueJewel19"] = { + "Leech Life (10-20)% slower", + ["affix"] = "", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (10-20)% slower", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { + "20% reduced Mana Cost of Skills when on Low Life", + ["affix"] = "", + ["group"] = "ReducedManaCostOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1636, + }, + ["tradeHashes"] = { + [73272763] = { + "20% reduced Mana Cost of Skills when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaCostPerDevotion"] = { + "1% reduced Mana Cost of Skills per 10 Devotion", + ["affix"] = "", + ["group"] = "ReducedManaCostPerDevotion", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7974, + }, + ["tradeHashes"] = { + [3293275880] = { + "1% reduced Mana Cost of Skills per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaReservationCostUnique__1"] = { + "12% increased Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedAllReservationLegacy", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1958, + }, + ["tradeHashes"] = { + [4202507508] = { + "12% increased Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaReservationCostUnique__2"] = { + "(12-20)% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "(12-20)% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaReservationsCostUniqueHelmetDex5"] = { + "16% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "16% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedManaReservationsCostUniqueJewel44"] = { + "4% increased Mana Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReducedReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1957, + }, + ["tradeHashes"] = { + [1269219558] = { + "4% increased Mana Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { + "-1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "-1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedMaximumFrenzyChargesUnique__1"] = { + "-1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "-1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedMaximumFrenzyChargesUnique__2_"] = { + "-2 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "-2 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { + "-1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "-1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedMaximumPowerChargesUnique__1"] = { + "-1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "-1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedProjectileDamageTakenUniqueAmulet12"] = { + "20% reduced Damage taken from Projectile Hits", + ["affix"] = "", + ["group"] = "ProjectileDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2511, + }, + ["tradeHashes"] = { + [1425651005] = { + "20% reduced Damage taken from Projectile Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedProjectileDamageUniqueAmulet12"] = { + "40% reduced Projectile Damage", + ["affix"] = "", + ["group"] = "ProjectileDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "40% reduced Projectile Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedReservationForSocketedCurseGemsUnique__1"] = { + "Socketed Curse Gems have 30% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedCurseGemsGetReducedReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 453, + }, + ["tradeHashes"] = { + [1471600638] = { + "Socketed Curse Gems have 30% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedReservationForSocketedCurseGemsUnique__2"] = { + "Socketed Curse Gems have 80% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedCurseGemsGetReducedReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 453, + }, + ["tradeHashes"] = { + [1471600638] = { + "Socketed Curse Gems have 80% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedSelfCurseDurationUniqueShieldDex3"] = { + "50% reduced Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "50% reduced Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedSkillEffectDurationUniqueAmulet20"] = { + "(10-20)% reduced Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 63, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(10-20)% reduced Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedStrengthRequirementUniqueBodyStr5"] = { + "30% reduced Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "30% reduced Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { + "20% reduced Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "20% reduced Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReducedTotemDamageUniqueJewel26"] = { + "(30-50)% reduced Totem Damage", + ["affix"] = "", + ["group"] = "TotemDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1152, + }, + ["tradeHashes"] = { + [3851254963] = { + "(30-50)% reduced Totem Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectBleedingToSelfUnique__1"] = { + "Bleeding you inflict is Reflected to you", + ["affix"] = "", + ["group"] = "ReflectBleedingToSelf", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4820, + }, + ["tradeHashes"] = { + [2658399404] = { + "Bleeding you inflict is Reflected to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectCurses"] = { + "Curse Reflection", + ["affix"] = "", + ["group"] = "ReflectCurses", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2257, + }, + ["tradeHashes"] = { + [1731672673] = { + "Curse Reflection", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { + "Reflects 240 to 300 Physical Damage to Attackers on Block", + ["affix"] = "", + ["group"] = "ReflectDamageToAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2367, + }, + ["tradeHashes"] = { + [1445684883] = { + "Reflects 240 to 300 Physical Damage to Attackers on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { + "Reflects 4 to 8 Physical Damage to Attackers on Block", + ["affix"] = "", + ["group"] = "ReflectDamageToAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2367, + }, + ["tradeHashes"] = { + [1445684883] = { + "Reflects 4 to 8 Physical Damage to Attackers on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { + "Reflects 8 to 14 Physical Damage to Attackers on Block", + ["affix"] = "", + ["group"] = "ReflectDamageToAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2367, + }, + ["tradeHashes"] = { + [1445684883] = { + "Reflects 8 to 14 Physical Damage to Attackers on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { + "Reflects 1000 to 10000 Physical Damage to Attackers on Block", + ["affix"] = "", + ["group"] = "ReflectDamageToAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2367, + }, + ["tradeHashes"] = { + [1445684883] = { + "Reflects 1000 to 10000 Physical Damage to Attackers on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { + "Reflects (22-44) Physical Damage to Attackers on Block", + ["affix"] = "", + ["group"] = "ReflectDamageToAttackersOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2367, + }, + ["tradeHashes"] = { + [1445684883] = { + "Reflects (22-44) Physical Damage to Attackers on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { + "Enemies you Attack Reflect 100 Physical Damage to you", + ["affix"] = "", + ["group"] = "ReflectPhysicalDamageToSelfOnHit", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1929, + }, + ["tradeHashes"] = { + [2006370586] = { + "Enemies you Attack Reflect 100 Physical Damage to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectPoisonsToSelfUnique__1"] = { + "Poison you inflict is Reflected to you", + ["affix"] = "", + ["group"] = "ReflectPoisonsToSelf", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 9503, + }, + ["tradeHashes"] = { + [2374357674] = { + "Poison you inflict is Reflected to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReflectsShocksUnique__1"] = { + "Shock Reflection", + ["affix"] = "", + ["group"] = "ReflectsShocks", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9715, + }, + ["tradeHashes"] = { + [3291999509] = { + "Shock Reflection", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RegenerateLifeOnCastUniqueWand4"] = { + "Regenerate (6-8) Life over 1 second when you Cast a Spell", + ["affix"] = "", + ["group"] = "RegenerateLifeOnCast", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2586, + }, + ["tradeHashes"] = { + [1955882986] = { + "Regenerate (6-8) Life over 1 second when you Cast a Spell", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RemoteMineArmingSpeedUnique__1"] = { + "Mines have (40-50)% increased Detonation Speed", + ["affix"] = "", + ["group"] = "MineArmingSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 8949, + }, + ["tradeHashes"] = { + [3085465082] = { + "Mines have (40-50)% increased Detonation Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RemoteMineLayingSpeedUniqueStaff11"] = { + "(40-60)% increased Mine Throwing Speed", + ["affix"] = "", + ["group"] = "MineLayingSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1668, + }, + ["tradeHashes"] = { + [1896971621] = { + "(40-60)% increased Mine Throwing Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RemoteMineLayingSpeedUnique__1"] = { + "(10-15)% reduced Mine Throwing Speed", + ["affix"] = "", + ["group"] = "MineLayingSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1668, + }, + ["tradeHashes"] = { + [1896971621] = { + "(10-15)% reduced Mine Throwing Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RepeatingShockwave"] = { + "Triggers Level 7 Abberath's Fury when Equipped", + ["affix"] = "", + ["group"] = "RepeatingShockwave", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 550, + }, + ["tradeHashes"] = { + [3250579936] = { + "Triggers Level 7 Abberath's Fury when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReservationEfficiencyUnique__1_"] = { + "80% reduced Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1955, + }, + ["tradeHashes"] = { + [2587176568] = { + "80% reduced Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReservationEfficiencyUnique__2"] = { + "20% reduced Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1955, + }, + ["tradeHashes"] = { + [2587176568] = { + "20% reduced Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReservationEfficiencyUnique__3__"] = { + "12% increased Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1955, + }, + ["tradeHashes"] = { + [2587176568] = { + "12% increased Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ReservationEfficiencyUnique__4_"] = { + "(10-20)% increased Reservation Efficiency of Skills", + ["affix"] = "", + ["group"] = "ReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1955, + }, + ["tradeHashes"] = { + [2587176568] = { + "(10-20)% increased Reservation Efficiency of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { + "Resolute Technique", + ["affix"] = "", + ["group"] = "ResoluteTechnique", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 10730, + }, + ["tradeHashes"] = { + [3943945975] = { + "Resolute Technique", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { + "Right ring slot: Regenerate 6% of maximum Energy Shield per second", + ["affix"] = "", + ["group"] = "RightRingSlotEnergyShieldRegen", + ["level"] = 38, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2423, + }, + ["tradeHashes"] = { + [3676958605] = { + "Right ring slot: Regenerate 6% of maximum Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RightRingSlotNoManaRegenUniqueRing13"] = { + "Right ring slot: You cannot Regenerate Mana", + ["affix"] = "", + ["group"] = "RightRingSlotNoManaRegen", + ["level"] = 38, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 2422, + }, + ["tradeHashes"] = { + [783864527] = { + "Right ring slot: You cannot Regenerate Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { + "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", + ["affix"] = "", + ["group"] = "RightRingSlotPhysicalReflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 2483, + }, + ["tradeHashes"] = { + [1357244124] = { + "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingAttackSpeedUnique__1"] = { + "20% less Attack Speed", + ["affix"] = "", + ["group"] = "RingAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 7825, + }, + ["tradeHashes"] = { + [2418322751] = { + "20% less Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitAdditionalSkillSlots1"] = { + "Grants 1 additional Skill Slot", + ["affix"] = "", + ["group"] = "AdditionalSkillSlots", + ["level"] = 56, + ["modTags"] = { + }, + ["statOrder"] = { + 58, + }, + ["tradeHashes"] = { + [958696139] = { + "Grants 1 additional Skill Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitAllResistances1"] = { + "+(7-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 44, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(7-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitChaosDamage"] = { + "(11-23)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 59, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(11-23)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitChaosResistance1"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 25, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitColdLightningResistance"] = { + "+(12-16)% to Cold and Lightning Resistances", + ["affix"] = "", + ["group"] = "ColdLightningResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "lightning_resistance", + "elemental", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1021, + }, + ["tradeHashes"] = { + [4277795662] = { + "+(12-16)% to Cold and Lightning Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitColdResistance1"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 15, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitFireColdResistance"] = { + "+(12-16)% to Fire and Cold Resistances", + ["affix"] = "", + ["group"] = "FireColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "cold", + "resistance", + }, + ["statOrder"] = { + 1016, + }, + ["tradeHashes"] = { + [2915988346] = { + "+(12-16)% to Fire and Cold Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitFireLightningResistance"] = { + "+(12-16)% to Fire and Lightning Resistances", + ["affix"] = "", + ["group"] = "FireLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1018, + }, + ["tradeHashes"] = { + [3441501978] = { + "+(12-16)% to Fire and Lightning Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitFireResistance1"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 10, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitGloveSocket"] = { + "This item gains bonuses from Socketed Items as though it was Gloves", + ["affix"] = "", + ["group"] = "LocalItemBenefitSocketableAsIfGloves", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 7742, + }, + ["tradeHashes"] = { + [1856590738] = { + "This item gains bonuses from Socketed Items as though it was Gloves", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitIncreasedAccuracy1"] = { + "+(120-160) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 33, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(120-160) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitIncreasedCastSpeed1"] = { + "(7-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 40, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(7-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitIncreasedMana1"] = { + "+(20-30) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-30) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitItemFoundRarityIncrease1"] = { + "(6-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 50, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(6-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitLightningResistance1"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 20, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitMaximumQualityAdditional1"] = { + "+20% to Maximum Quality", + ["affix"] = "", + ["group"] = "LocalMaximumQuality", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 615, + }, + ["tradeHashes"] = { + [2039822488] = { + "+20% to Maximum Quality", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitMaximumQualityAdditional2"] = { + "+25% to Maximum Quality", + ["affix"] = "", + ["group"] = "LocalMaximumQuality", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 615, + }, + ["tradeHashes"] = { + [2039822488] = { + "+25% to Maximum Quality", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitMaximumQualityOverride1"] = { + "Maximum Quality is 40%", + ["affix"] = "", + ["group"] = "MaximumQualityOverride", + ["level"] = 50, + ["modTags"] = { + }, + ["statOrder"] = { + 614, + }, + ["tradeHashes"] = { + [275498888] = { + "Maximum Quality is 40%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitMaximumResistance"] = { + "+1% to all maximum Resistances", + ["affix"] = "", + ["group"] = "MaximumResistances", + ["level"] = 65, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1493, + }, + ["tradeHashes"] = { + [569299859] = { + "+1% to all maximum Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPercentLife"] = { + "(4-6)% increased maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLifePercent", + ["level"] = 50, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(4-6)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPercentMana"] = { + "(4-6)% increased maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 50, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(4-6)% increased maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPhysicalDamage1"] = { + "Adds 1 to 4 Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds 1 to 4 Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPhysicalDamage2"] = { + "Adds (6-9) to (11-15) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 50, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (6-9) to (11-15) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPrefixSuffixAllowed1"] = { + "+1 Prefix Modifier allowed", + "-1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "+1 Prefix Modifier allowed", + }, + [718638445] = { + "-1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPrefixSuffixAllowed2"] = { + "-1 Prefix Modifier allowed", + "+1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "-1 Prefix Modifier allowed", + }, + [718638445] = { + "+1 Suffix Modifier allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPrefixSuffixAllowed3"] = { + "+2 Prefix Modifiers allowed", + "-2 Suffix Modifiers allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "+2 Prefix Modifiers allowed", + }, + [718638445] = { + "-2 Suffix Modifiers allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RingImplicitPrefixSuffixAllowed4"] = { + "-2 Prefix Modifiers allowed", + "+2 Suffix Modifiers allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + "-2 Prefix Modifiers allowed", + }, + [718638445] = { + "+2 Suffix Modifiers allowed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { + "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RuneseekersCallVerisiumImplicitManaRegen1"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["RuneseekersCallVerisiumImplicitMaximumRunicWard"] = { + "+300 to maximum Runic Ward", + ["affix"] = "", + ["group"] = "GlobalMaximumRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 890, + }, + ["tradeHashes"] = { + [3336230913] = { + "+300 to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ScorchingRaySkillUnique__1"] = { + "Grants Level 25 Scorching Ray Skill", + ["affix"] = "", + ["group"] = "ScorchingRaySkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 486, + }, + ["tradeHashes"] = { + [1540840] = { + "Grants Level 25 Scorching Ray Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { + "(30-40)% increased effect of Fully Broken Armour", + ["affix"] = "", + ["group"] = "ArmourBreakEffect", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 5236, + }, + ["tradeHashes"] = { + [1879206848] = { + "(30-40)% increased effect of Fully Broken Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SelfStatusAilmentDurationUnique__1"] = { + "50% increased Elemental Ailment Duration on you", + ["affix"] = "", + ["group"] = "SelfStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 1622, + }, + ["tradeHashes"] = { + [1745952865] = { + "50% increased Elemental Ailment Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SentryFasterVerisiumImplicitFasterIgnite1"] = { + "Ignites you inflict deal Damage (30-40)% faster", + ["affix"] = "", + ["group"] = "FasterBurnFromAttacks", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2346, + }, + ["tradeHashes"] = { + [2443492284] = { + "Ignites you inflict deal Damage (30-40)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SetElementalResistancesUniqueHelmetStrInt4"] = { + "You have no Elemental Resistances", + ["affix"] = "", + ["group"] = "SetElementalResistances", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 2591, + }, + ["tradeHashes"] = { + [1776968075] = { + "You have no Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShieldAttackSpeedJewel"] = { + "(4-6)% increased Attack Speed while holding a Shield", + ["affix"] = "Charging", + ["group"] = "AttackSpeedWithAShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1316, + }, + ["tradeHashes"] = { + [3805075944] = { + "(4-6)% increased Attack Speed while holding a Shield", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dual_wielding_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 1, + }, + }, + ["ShieldBlockChanceUniqueAmulet16"] = { + "+10% Chance to Block Attack Damage while holding a Shield", + ["affix"] = "", + ["group"] = "GlobalShieldBlockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1125, + }, + ["tradeHashes"] = { + [4061558269] = { + "+10% Chance to Block Attack Damage while holding a Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShieldCastSpeedJewel"] = { + "(3-5)% increased Cast Speed while holding a Shield", + ["affix"] = "Warding", + ["group"] = "CastSpeedWithAShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 1346, + }, + ["tradeHashes"] = { + [1612163368] = { + "(3-5)% increased Cast Speed while holding a Shield", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dual_wielding_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + }, + }, + ["ShieldCritChanceJewel"] = { + "(10-14)% increased Critical Hit Chance while holding a Shield", + ["affix"] = "", + ["group"] = "ShieldCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1370, + }, + ["tradeHashes"] = { + [1215447494] = { + "(10-14)% increased Critical Hit Chance while holding a Shield", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ShieldCritMultiplierJewel"] = { + "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", + ["affix"] = "", + ["group"] = "ShieldCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1397, + }, + ["tradeHashes"] = { + [3668589927] = { + "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ShieldDefencesPerDevotion"] = { + "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", + ["affix"] = "", + ["group"] = "ShieldDefencesPerDevotion", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 9840, + }, + ["tradeHashes"] = { + [2398058229] = { + "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShieldSpellDamageJewel"] = { + "(14-16)% increased Spell Damage while holding a Shield", + ["affix"] = "Battlemage's", + ["group"] = "ShieldSpellDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1183, + }, + ["tradeHashes"] = { + [1766142294] = { + "(14-16)% increased Spell Damage while holding a Shield", + }, + }, + ["weightKey"] = { + "two_handed_mod", + "dual_wielding_mod", + "bow", + "staff", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + }, + }, + ["ShockChanceAndDurationJewel"] = { + "(3-5)% chance to Shock", + "(12-16)% increased Shock Duration", + ["affix"] = "of Shocking", + ["group"] = "ShockChanceAndDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1058, + 1613, + }, + ["tradeHashes"] = { + [1538773178] = { + "(3-5)% chance to Shock", + }, + [3668351662] = { + "(12-16)% increased Shock Duration", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["ShockDurationJewel"] = { + "(12-16)% increased Shock Duration", + ["affix"] = "of the Storm", + ["group"] = "ShockDurationForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1613, + }, + ["tradeHashes"] = { + [3668351662] = { + "(12-16)% increased Shock Duration", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["ShockDurationUniqueGlovesDexInt3"] = { + "100% increased Duration of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7534, + }, + ["tradeHashes"] = { + [1484471543] = { + "100% increased Duration of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockDurationUniqueStaff8"] = { + "100% increased Duration of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7534, + }, + ["tradeHashes"] = { + [1484471543] = { + "100% increased Duration of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockDurationUnique__1"] = { + "10000% increased Shock Duration", + ["affix"] = "", + ["group"] = "ShockDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1613, + }, + ["tradeHashes"] = { + [3668351662] = { + "10000% increased Shock Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockDurationUnique__2"] = { + "(1-100)% increased Duration of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7534, + }, + ["tradeHashes"] = { + [1484471543] = { + "(1-100)% increased Duration of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockEffectOnYouJewel"] = { + "(30-35)% reduced effect of Shock on you", + ["affix"] = "of the Stormdweller", + ["group"] = "ReducedShockEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9859, + }, + ["tradeHashes"] = { + [3801067695] = { + "(30-35)% reduced effect of Shock on you", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 1, + }, + }, + ["ShockEffectUnique__1"] = { + "(15-25)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(15-25)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockEffectUnique__2"] = { + "(1-50)% increased Effect of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7536, + }, + ["tradeHashes"] = { + [3081816887] = { + "(1-50)% increased Effect of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockEffectUnique__3"] = { + "30% increased Effect of Lightning Ailments", + ["affix"] = "", + ["group"] = "LightningAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7536, + }, + ["tradeHashes"] = { + [3081816887] = { + "30% increased Effect of Lightning Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockOnKillUnique__1"] = { + "Enemies you kill are Shocked", + ["affix"] = "", + ["group"] = "ShockOnKill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1655, + }, + ["tradeHashes"] = { + [209387074] = { + "Enemies you kill are Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockOnMaxPowerChargesUnique__1"] = { + "Shocks you when you reach maximum Power Charges", + ["affix"] = "", + ["group"] = "ShockOnMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 3285, + }, + ["tradeHashes"] = { + [4256314560] = { + "Shocks you when you reach maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockedEnemiesExplodeUnique__1_"] = { + "Shocked Enemies you Kill Explode, dealing 5% of", + "their Life as Lightning Damage which cannot Shock", + ["affix"] = "", + ["group"] = "ShockedEnemiesExplode", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 9860, + 9860.1, + }, + ["tradeHashes"] = { + [2706994884] = { + "Shocked Enemies you Kill Explode, dealing 5% of", + "their Life as Lightning Damage which cannot Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockedEnemyCastSpeedUnique__1"] = { + "Enemies you Shock have 30% reduced Cast Speed", + ["affix"] = "", + ["group"] = "ShockedEnemyCastSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3932, + }, + ["tradeHashes"] = { + [4107150355] = { + "Enemies you Shock have 30% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ShockedEnemyMovementSpeedUnique__1"] = { + "Enemies you Shock have 20% reduced Movement Speed", + ["affix"] = "", + ["group"] = "ShockedEnemyMovementSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3933, + }, + ["tradeHashes"] = { + [3134790305] = { + "Enemies you Shock have 20% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageDexInt6"] = { + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10665, + }, + ["tradeHashes"] = { + [2397408229] = { + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageStrDex5"] = { + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10665, + }, + ["tradeHashes"] = { + [2397408229] = { + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageStrInt2"] = { + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10665, + }, + ["tradeHashes"] = { + [2397408229] = { + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageUnique__1"] = { + "Melee Hits count as Rampage Kills", + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampageMeleeHits", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10664, + 10664.1, + }, + ["tradeHashes"] = { + [2889807051] = { + "Melee Hits count as Rampage Kills", + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageUnique__2"] = { + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10665, + }, + ["tradeHashes"] = { + [2397408229] = { + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SimulatedRampageUnique__3_"] = { + "Rampage", + ["affix"] = "", + ["group"] = "SimulatedRampage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10665, + }, + ["tradeHashes"] = { + [2397408229] = { + "Rampage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkeletonAttackSpeedUniqueJewel1"] = { + "(7-10)% increased Skeleton Attack Speed", + ["affix"] = "", + ["group"] = "SkeletonAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "attack", + "speed", + "minion", + }, + ["statOrder"] = { + 9886, + }, + ["tradeHashes"] = { + [3413085237] = { + "(7-10)% increased Skeleton Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkeletonCastSpeedUniqueJewel1"] = { + "(7-10)% increased Skeleton Cast Speed", + ["affix"] = "", + ["group"] = "SkeletonCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9887, + }, + ["tradeHashes"] = { + [2725259389] = { + "(7-10)% increased Skeleton Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkeletonDurationUniqueJewel1_"] = { + "(10-20)% reduced Skeleton Duration", + ["affix"] = "", + ["group"] = "SkeletonDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1538, + }, + ["tradeHashes"] = { + [1331384105] = { + "(10-20)% reduced Skeleton Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkeletonDurationUniqueTwoHandSword4"] = { + "(150-200)% increased Skeleton Duration", + ["affix"] = "", + ["group"] = "SkeletonDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 1538, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [1331384105] = { + "(150-200)% increased Skeleton Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkeletonMovementSpeedUniqueJewel1"] = { + "(3-5)% increased Skeleton Movement Speed", + ["affix"] = "", + ["group"] = "SkeletonMovementSpeed", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 9890, + }, + ["tradeHashes"] = { + [3295031203] = { + "(3-5)% increased Skeleton Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUniqueJewel44"] = { + "4% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "4% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUniqueTwoHandMace5"] = { + "15% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "15% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUnique__1"] = { + "(10-15)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(10-15)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUnique__2_"] = { + "(-20-20)% reduced Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(-20-20)% reduced Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUnique__3"] = { + "30% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "30% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SkillEffectDurationUnique__4"] = { + "(-13-13)% reduced Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(-13-13)% reduced Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SmokeCloudWhenHitUniqueQuiver9"] = { + "25% chance to create a Smoke Cloud when Hit", + ["affix"] = "", + ["group"] = "SmokeCloudWhenHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2358, + }, + ["tradeHashes"] = { + [953314356] = { + "25% chance to create a Smoke Cloud when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedAurasReserveNoManaUnique__1"] = { + "Socketed Gems have no Reservation", + "Your Blessing Skills are Disabled", + ["affix"] = "", + ["group"] = "SocketedAurasReserveNoMana", + ["level"] = 48, + ["modTags"] = { + "resource", + "mana", + "aura", + }, + ["statOrder"] = { + 391, + 391.1, + }, + ["tradeHashes"] = { + [2497009514] = { + "Socketed Gems have no Reservation", + "Your Blessing Skills are Disabled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { + "Socketed Gems have Elemental Equilibrium", + ["affix"] = "", + ["group"] = "SocketedGemHasElementalEquilibrium", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "skill", + "damage", + "elemental", + "gem", + }, + ["statOrder"] = { + 443, + }, + ["tradeHashes"] = { + [2605850929] = { + "Socketed Gems have Elemental Equilibrium", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemHasSecretsOfSufferingUnique__1"] = { + "Socketed Gems have Secrets of Suffering", + ["affix"] = "", + ["group"] = "SocketedGemHasSecretsOfSuffering", + ["level"] = 1, + ["modTags"] = { + "skill", + "elemental", + "fire", + "cold", + "lightning", + "critical", + "ailment", + "gem", + }, + ["statOrder"] = { + 445, + }, + ["tradeHashes"] = { + [4051493629] = { + "Socketed Gems have Secrets of Suffering", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { + "Socketed Gems fire 4 additional Projectiles", + ["affix"] = "", + ["group"] = "DisplaySocketedGemAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 446, + }, + ["tradeHashes"] = { + [4016885052] = { + "Socketed Gems fire 4 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { + "Socketed Gems fire an additional Projectile", + ["affix"] = "", + ["group"] = "DisplaySocketedGemAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 446, + }, + ["tradeHashes"] = { + [4016885052] = { + "Socketed Gems fire an additional Projectile", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsAdditionalProjectilesUnique__1__"] = { + "Socketed Projectile Spells fire 4 additional Projectiles", + ["affix"] = "", + ["group"] = "DisplaySocketedSpellsAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 447, + }, + ["tradeHashes"] = { + [973574623] = { + "Socketed Projectile Spells fire 4 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { + "Socketed Gems are Supported by Level 5 Elemental Proliferation", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsElementalProliferation", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 342, + }, + ["tradeHashes"] = { + [2929101122] = { + "Socketed Gems are Supported by Level 5 Elemental Proliferation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { + "Socketed Gems are Supported by Level 20 Elemental Proliferation", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsElementalProliferation", + ["level"] = 94, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 342, + }, + ["tradeHashes"] = { + [2929101122] = { + "Socketed Gems are Supported by Level 20 Elemental Proliferation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { + "Socketed Gems are Supported by Level 5 Increased Area of Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 182, + }, + ["tradeHashes"] = { + [3720936304] = { + "Socketed Gems are Supported by Level 5 Increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { + "Socketed Gems are Supported by Level 20 Increased Area of Effect", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 182, + }, + ["tradeHashes"] = { + [3720936304] = { + "Socketed Gems are Supported by Level 20 Increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { + "Socketed Gems are Supported by Level 15 Pulverise", + ["affix"] = "", + ["group"] = "SupportedByPulverise", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 258, + }, + ["tradeHashes"] = { + [282757414] = { + "Socketed Gems are Supported by Level 15 Pulverise", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { + "Socketed Gems are Supported by Level 10 Intensify", + ["affix"] = "", + ["group"] = "SupportedByIntensifyLevel10Boolean", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 288, + }, + ["tradeHashes"] = { + [3561676020] = { + "Socketed Gems are Supported by Level 10 Intensify", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { + "Enemies slain by Socketed Gems drop 10% increased item quantity", + ["affix"] = "", + ["group"] = "SocketedGemsGetIncreasedItemQuantity", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 396, + }, + ["tradeHashes"] = { + [85122299] = { + "Enemies slain by Socketed Gems drop 10% increased item quantity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { + "Socketed Gems are Supported by Level 15 Added Chaos Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 335, + }, + ["tradeHashes"] = { + [411460446] = { + "Socketed Gems are Supported by Level 15 Added Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { + "Socketed Gems are Supported by Level 10 Added Chaos Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 335, + }, + ["tradeHashes"] = { + [411460446] = { + "Socketed Gems are Supported by Level 10 Added Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { + "Socketed Gems are Supported by Level 25 Added Chaos Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetAddedChaosDamage", + ["level"] = 50, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 335, + }, + ["tradeHashes"] = { + [411460446] = { + "Socketed Gems are Supported by Level 25 Added Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { + "Socketed Gems are Supported by Level 29 Added Chaos Damage", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 335, + }, + ["tradeHashes"] = { + [411460446] = { + "Socketed Gems are Supported by Level 29 Added Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBloodMagic", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 389, + }, + ["tradeHashes"] = { + [1104246401] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsHaveBloodMagicUnique__1"] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBloodMagic", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 389, + }, + ["tradeHashes"] = { + [1104246401] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsInBlueSocketEffectUnique__1"] = { + "Gems Socketed in Blue Sockets gain 100% increased Experience", + ["affix"] = "", + ["group"] = "SocketedGemsInBlueSocketEffect", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 128, + }, + ["tradeHashes"] = { + [2236460050] = { + "Gems Socketed in Blue Sockets gain 100% increased Experience", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsInGreenSocketEffectUnique__1"] = { + "Gems Socketed in Green Sockets have +30% to Quality", + ["affix"] = "", + ["group"] = "SocketedGemsInGreenSocketEffect", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 127, + }, + ["tradeHashes"] = { + [3799930101] = { + "Gems Socketed in Green Sockets have +30% to Quality", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsInRedSocketEffectUnique__1"] = { + "Gems Socketed in Red Sockets have +2 to Level", + ["affix"] = "", + ["group"] = "SocketedGemsInRedSocketEffect", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 126, + }, + ["tradeHashes"] = { + [2886998024] = { + "Gems Socketed in Red Sockets have +2 to Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsProjectilesNovaUniqueStaff10"] = { + "Socketed Gems fire Projectiles in a circle", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsNova", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 448, + }, + ["tradeHashes"] = { + [967556848] = { + "Socketed Gems fire Projectiles in a circle", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsProjectilesNovaUnique__1"] = { + "Socketed Projectile Spells fire Projectiles in a circle", + ["affix"] = "", + ["group"] = "DisplaySocketedSpellsNova", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 449, + }, + ["tradeHashes"] = { + [3235941702] = { + "Socketed Projectile Spells fire Projectiles in a circle", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsReducedDurationUniqueStaff10"] = { + "Socketed Gems have 70% reduced Skill Effect Duration", + ["affix"] = "", + ["group"] = "DisplaySocketedGemReducedDuration", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 450, + }, + ["tradeHashes"] = { + [678608747] = { + "Socketed Gems have 70% reduced Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsSupportedByBlasphemyUnique__1"] = { + "Socketed Gems are Supported by Level 22 Blasphemy", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsSupportedByBlasphemy", + ["level"] = 1, + ["modTags"] = { + "support", + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 382, + }, + ["tradeHashes"] = { + [539747809] = { + "Socketed Gems are Supported by Level 22 Blasphemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { + "Socketed Gems are Supported by Level 20 Blasphemy", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsSupportedByBlasphemy", + ["level"] = 1, + ["modTags"] = { + "support", + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 382, + }, + ["tradeHashes"] = { + [539747809] = { + "Socketed Gems are Supported by Level 20 Blasphemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { + "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", + ["affix"] = "", + ["group"] = "DisplaySupportedByEnduranceChargeOnStun", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 388, + }, + ["tradeHashes"] = { + [3375208082] = { + "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsSupportedByFortifyUnique____1"] = { + "Socketed Gems are Supported by Level 12 Fortify", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsSupportedByFortify", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 363, + }, + ["tradeHashes"] = { + [107118693] = { + "Socketed Gems are Supported by Level 12 Fortify", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { + "Socketed Gems are Supported by Level 15 Pierce", + ["affix"] = "", + ["group"] = "DisplaySupportedByPierce", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 375, + }, + ["tradeHashes"] = { + [254728692] = { + "Socketed Gems are Supported by Level 15 Pierce", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { + "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsFlee", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 395, + }, + ["tradeHashes"] = { + [3418772] = { + "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedItemsHaveIncreasedReservationUnique__1"] = { + "Socketed Gems have 20% reduced Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetReducedReservation", + ["level"] = 57, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 390, + }, + ["tradeHashes"] = { + [3289633055] = { + "Socketed Gems have 20% reduced Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { + "Socketed Gems have 45% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetReducedReservation", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 390, + }, + ["tradeHashes"] = { + [3289633055] = { + "Socketed Gems have 45% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { + "Socketed Gems have 30% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetReducedReservation", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 390, + }, + ["tradeHashes"] = { + [3289633055] = { + "Socketed Gems have 30% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedItemsHaveReducedReservationUnique__1"] = { + "Socketed Gems have 25% increased Reservation Efficiency", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetReducedReservation", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 390, + }, + ["tradeHashes"] = { + [3289633055] = { + "Socketed Gems have 25% increased Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedWarcryCooldownCountUnique__1"] = { + "Socketed Warcry Skills have +1 Cooldown Use", + ["affix"] = "", + ["group"] = "SocketedWarcryCooldownCount", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 439, + }, + ["tradeHashes"] = { + [3784504781] = { + "Socketed Warcry Skills have +1 Cooldown Use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsBloodMagic", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 389, + }, + ["tradeHashes"] = { + [1104246401] = { + "Socketed Gems Cost and Reserve Life instead of Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpearImplicitDeflectDamagePrevented1"] = { + "Prevent +(3-7)% of Damage from Deflected Hits", + ["affix"] = "", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +(3-7)% of Damage from Deflected Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpearImplicitFasterBleed1"] = { + "Bleeding you inflict deals Damage (10-20)% faster", + ["affix"] = "", + ["group"] = "FasterBleedDamage", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 6550, + }, + ["tradeHashes"] = { + [3828375170] = { + "Bleeding you inflict deals Damage (10-20)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpearImplicitLocalChanceToMaim1"] = { + "(15-25)% chance to Maim on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToMaim", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7798, + }, + ["tradeHashes"] = { + [2763429652] = { + "(15-25)% chance to Maim on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpearImplicitLocalProjectileSpeed1"] = { + "(25-35)% increased Projectile Speed with this Weapon", + ["affix"] = "", + ["group"] = "LocalIncreasedProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7815, + }, + ["tradeHashes"] = { + [535217483] = { + "(25-35)% increased Projectile Speed with this Weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpearImplicitWeaponRange1"] = { + "25% increased Melee Strike Range with this weapon", + ["affix"] = "", + ["group"] = "LocalWeaponRangeIncrease", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7600, + }, + ["tradeHashes"] = { + [548198834] = { + "25% increased Melee Strike Range with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpectreIncreasedLifeUnique__1"] = { + "Spectres have (50-100)% increased maximum Life", + ["affix"] = "", + ["group"] = "SpectreIncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1529, + }, + ["tradeHashes"] = { + [3035514623] = { + "Spectres have (50-100)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpectreLifeUnique__1___"] = { + "+1000 to Spectre maximum Life", + ["affix"] = "", + ["group"] = "SpectreLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 9980, + }, + ["tradeHashes"] = { + [3111456397] = { + "+1000 to Spectre maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedChaosDamageUniqueWand7"] = { + "Adds (90-130) to (140-190) Chaos Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "chaos_damage", + "damage", + "chaos", + "caster", + }, + ["statOrder"] = { + 1308, + }, + ["tradeHashes"] = { + [2300399854] = { + "Adds (90-130) to (140-190) Chaos Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedChaosDamageUnique__1"] = { + "Adds (48-56) to (73-84) Chaos Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedChaosDamage", + ["level"] = 81, + ["modTags"] = { + "caster_damage", + "chaos_damage", + "damage", + "chaos", + "caster", + }, + ["statOrder"] = { + 1308, + }, + ["tradeHashes"] = { + [2300399854] = { + "Adds (48-56) to (73-84) Chaos Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedChaosDamageUnique__2"] = { + "Adds (16-21) to (31-36) Chaos Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "chaos_damage", + "damage", + "chaos", + "caster", + }, + ["statOrder"] = { + 1308, + }, + ["tradeHashes"] = { + [2300399854] = { + "Adds (16-21) to (31-36) Chaos Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUniqueBootsStrDex5"] = { + "Adds (25-30) to (40-50) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (25-30) to (40-50) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__1"] = { + "Adds 100 to 100 Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds 100 to 100 Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__2"] = { + "Adds (20-30) to 40 Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (20-30) to 40 Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__3"] = { + "Adds (2-3) to (5-6) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (2-3) to (5-6) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__4"] = { + "Adds (40-60) to (90-110) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (40-60) to (90-110) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__5"] = { + "Adds (35-39) to (54-60) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (35-39) to (54-60) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__6__"] = { + "Adds (10-12) to (24-28) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (10-12) to (24-28) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedColdDamageUnique__7"] = { + "Adds (120-140) to (150-170) Cold Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedColdDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "cold", + "caster", + }, + ["statOrder"] = { + 1306, + }, + ["tradeHashes"] = { + [2469416729] = { + "Adds (120-140) to (150-170) Cold Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUniqueWand10"] = { + "Adds (4-6) to (8-12) Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (4-6) to (8-12) Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__1"] = { + "Adds 100 to 100 Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds 100 to 100 Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__2_"] = { + "Adds (20-30) to 40 Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (20-30) to 40 Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__3"] = { + "Adds (20-24) to (38-46) Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (20-24) to (38-46) Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__4"] = { + "Adds (2-3) to (5-6) Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (2-3) to (5-6) Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__5"] = { + "Battlemage", + ["affix"] = "", + ["group"] = "KeystoneBattlemage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10684, + }, + ["tradeHashes"] = { + [448903047] = { + "Battlemage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedFireDamageUnique__6_"] = { + "Adds (14-16) to (30-32) Fire Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedFireDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "fire", + "caster", + }, + ["statOrder"] = { + 1305, + }, + ["tradeHashes"] = { + [1133016593] = { + "Adds (14-16) to (30-32) Fire Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { + "Adds (5-15) to (100-140) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamageTwoHand", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (5-15) to (100-140) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__1"] = { + "Adds 100 to 100 Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 100 to 100 Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__2"] = { + "Adds (1-10) to (150-200) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (1-10) to (150-200) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__3"] = { + "Adds 1 to (10-12) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 1 to (10-12) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__4"] = { + "Adds 1 to (60-70) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 1 to (60-70) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__5"] = { + "Adds (26-35) to (95-105) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (26-35) to (95-105) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__6_"] = { + "Adds (13-18) to (50-56) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds (13-18) to (50-56) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedLightningDamageUnique__7"] = { + "Adds 1 to (60-68) Lightning Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedLightningDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "caster", + }, + ["statOrder"] = { + 1307, + }, + ["tradeHashes"] = { + [2831165374] = { + "Adds 1 to (60-68) Lightning Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedPhysicalDamageUnique__1_"] = { + "Battlemage", + ["affix"] = "", + ["group"] = "KeystoneBattlemage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10684, + }, + ["tradeHashes"] = { + [448903047] = { + "Battlemage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellAddedPhysicalDamageUnique__2_"] = { + "Adds (6-8) to (10-12) Physical Damage to Spells", + ["affix"] = "", + ["group"] = "SpellAddedPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "physical_damage", + "damage", + "physical", + "caster", + }, + ["statOrder"] = { + 1304, + }, + ["tradeHashes"] = { + [2435536961] = { + "Adds (6-8) to (10-12) Physical Damage to Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { + "Your spells have 100% chance to Shock against Frozen Enemies", + ["affix"] = "", + ["group"] = "SpellChanceToShockFrozenEnemies", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "caster", + "ailment", + }, + ["statOrder"] = { + 2673, + }, + ["tradeHashes"] = { + [288651645] = { + "Your spells have 100% chance to Shock against Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellCritChanceJewel"] = { + "(10-14)% increased Critical Hit Chance for Spells", + ["affix"] = "of Annihilation", + ["group"] = "SpellCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(10-14)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["SpellCritMultiplier"] = { + "(12-15)% increased Critical Spell Damage Bonus", + ["affix"] = "of Unmaking", + ["group"] = "SpellCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster_damage", + "damage", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(12-15)% increased Critical Spell Damage Bonus", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["SpellDamageElderItemUnique__1_"] = { + "(60-80)% increased Spell Damage if your other Ring is an Elder Item", + ["affix"] = "", + ["group"] = "SpellDamageElderItem", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 3995, + }, + ["tradeHashes"] = { + [2921373173] = { + "(60-80)% increased Spell Damage if your other Ring is an Elder Item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { + "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", + ["affix"] = "", + ["group"] = "SpellDamageIfCritPast8Seconds", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10013, + }, + ["tradeHashes"] = { + [467806158] = { + "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { + "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "SpellDamageIfYouHaveCritRecently", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10003, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [1550015622] = { + "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { + "1% increased Spell Damage per Level", + ["affix"] = "", + ["group"] = "SpellDamageIncreasedPerLevel", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 2709, + }, + ["tradeHashes"] = { + [797084288] = { + "1% increased Spell Damage per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageJewel"] = { + "(10-12)% increased Spell Damage", + ["affix"] = "of Mysticism", + ["group"] = "SpellDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(10-12)% increased Spell Damage", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + }, + }, + ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { + "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", + ["affix"] = "", + ["group"] = "SpellDamageModifiersApplyToAttackDamage150Percent", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2459, + }, + ["tradeHashes"] = { + [185598681] = { + "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { + "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", + ["affix"] = "", + ["group"] = "SpellDamagePerManaSpent", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 4006, + }, + ["tradeHashes"] = { + [347220474] = { + "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamagePerIntelligenceUniqueStaff12"] = { + "2% increased Spell Damage per 10 Intelligence", + ["affix"] = "", + ["group"] = "SpellDamagePerIntelligence", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 2501, + }, + ["tags"] = { + "caster_unique_weapon", + }, + ["tradeHashes"] = { + [2818518881] = { + "2% increased Spell Damage per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { + "100% increased Spell Damage taken when on Low Mana", + ["affix"] = "", + ["group"] = "SpellDamageTakenOnLowMana", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 2252, + }, + ["tradeHashes"] = { + [3557561376] = { + "100% increased Spell Damage taken when on Low Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellDamageWithNoManaReservedUniqueJewel30"] = { + "(40-60)% increased Spell Damage while no Mana is Reserved", + ["affix"] = "", + ["group"] = "SpellDamageWithNoManaReserved", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 2812, + }, + ["tradeHashes"] = { + [3779823630] = { + "(40-60)% increased Spell Damage while no Mana is Reserved", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellsAreDisabledUnique__1"] = { + "Your Spells are disabled", + ["affix"] = "", + ["group"] = "SpellsAreDisabled", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10627, + }, + ["tradeHashes"] = { + [1981749265] = { + "Your Spells are disabled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { + "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", + ["affix"] = "", + ["group"] = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 3834, + }, + ["tradeHashes"] = { + [3204585690] = { + "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpellsHaveCullingStrikeUniqueDagger4"] = { + "Your Spells have Culling Strike", + ["affix"] = "", + ["group"] = "SpellsHaveCullingStrike", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 2312, + }, + ["tradeHashes"] = { + [3238189103] = { + "Your Spells have Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpreadChilledGroundOnFreezeUnique__1"] = { + "15% chance to create Chilled Ground when you Freeze an Enemy", + ["affix"] = "", + ["group"] = "SpreadChilledGroundOnFreeze", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 3105, + }, + ["tradeHashes"] = { + [2901262227] = { + "15% chance to create Chilled Ground when you Freeze an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { + "15% chance to create Chilled Ground when Hit with an Attack", + ["affix"] = "", + ["group"] = "SpreadChilledGroundWhenHitByAttack", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5654, + }, + ["tradeHashes"] = { + [358040686] = { + "15% chance to create Chilled Ground when Hit with an Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SpreadConsecratedGroundOnShatterUnique__1"] = { + "Create Consecrated Ground when you Shatter an Enemy", + ["affix"] = "", + ["group"] = "SpreadConsecratedGroundOnShatter", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3781, + }, + ["tradeHashes"] = { + [4148932984] = { + "Create Consecrated Ground when you Shatter an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StaffAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Quarterstaves", + ["affix"] = "Blunt", + ["group"] = "StaffAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1320, + }, + ["tradeHashes"] = { + [3283482523] = { + "(6-8)% increased Attack Speed with Quarterstaves", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "dual_wielding_mod", + "shield_mod", + "staff", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["StaffCastSpeedJewel"] = { + "(3-5)% increased Cast Speed while wielding a Staff", + ["affix"] = "Wright's", + ["group"] = "CastSpeedWithAStaffForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 1347, + }, + ["tradeHashes"] = { + [2066542501] = { + "(3-5)% increased Cast Speed while wielding a Staff", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "dual_wielding_mod", + "shield_mod", + "staff", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["StaffDamageJewel"] = { + "(14-16)% increased Damage with Quarterstaves", + ["affix"] = "Judging", + ["group"] = "IncreasedStaffDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1238, + }, + ["tradeHashes"] = { + [4045894391] = { + "(14-16)% increased Damage with Quarterstaves", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "dual_wielding_mod", + "shield_mod", + "staff", + "specific_weapon", + "not_str", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["StaffSpellDamageJewel"] = { + "(14-16)% increased Spell Damage while wielding a Staff", + ["affix"] = "Wizard's", + ["group"] = "StaffSpellDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 1181, + }, + ["tradeHashes"] = { + [3496944181] = { + "(14-16)% increased Spell Damage while wielding a Staff", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "staff", + "specific_weapon", + "shield_mod", + "dual_wielding_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 1, + 0, + 0, + 0, + 0, + 1, + }, + }, + ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { + "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + ["affix"] = "", + ["group"] = "StealChargesOnHitPercent", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 2729, + }, + ["tradeHashes"] = { + [875143443] = { + "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StealChargesOnHitPercentUnique__1"] = { + "Steal Power, Frenzy, and Endurance Charges on Hit", + ["affix"] = "", + ["group"] = "StealChargesOnHitPercent", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + }, + ["statOrder"] = { + 2729, + }, + ["tradeHashes"] = { + [875143443] = { + "Steal Power, Frenzy, and Endurance Charges on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StealRareModUniqueJewel3"] = { + "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", + ["affix"] = "", + ["group"] = "JewelStealRareMod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2790, + }, + ["tradeHashes"] = { + [3807518091] = { + "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthDexterityImplicitSword_1"] = { + "+50 to Strength and Dexterity", + ["affix"] = "", + ["group"] = "StrengthDexterityForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+50 to Strength and Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthDexterityJewel"] = { + "+(8-10) to Strength and Dexterity", + ["affix"] = "of Athletics", + ["group"] = "StrengthDexterityForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+(8-10) to Strength and Dexterity", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["StrengthDexterityUnique__1"] = { + "+20 to Strength and Dexterity", + ["affix"] = "", + ["group"] = "StrengthDexterityForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+20 to Strength and Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthIntelligenceJewel"] = { + "+(8-10) to Strength and Intelligence", + ["affix"] = "of Spirit", + ["group"] = "StrengthIntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(8-10) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + "not_dex", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["StrengthIntelligenceRequirementsUnique__1"] = { + "+600 Strength and Intelligence Requirement", + ["affix"] = "", + ["group"] = "StrengthIntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 826, + }, + ["tradeHashes"] = { + [4272453892] = { + "+600 Strength and Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthIntelligenceUnique__1"] = { + "+20 to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthIntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+20 to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthIntelligenceUnique__2"] = { + "+(10-30) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthIntelligenceForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(10-30) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthJewel"] = { + "+(12-16) to Strength", + ["affix"] = "of Strength", + ["group"] = "StrengthForJewel", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(12-16) to Strength", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["StrengthRequirementsUniqueOneHandMace3"] = { + "+200 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+200 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthRequirementsUnique__1"] = { + "+100 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+100 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthRequirementsUnique__2"] = { + "+200 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+200 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthRequirementsUnique__3_"] = { + "+(500-700) Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+(500-700) Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthUniqueJewel34"] = { + "+(16-24) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(16-24) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StrengthUniqueJewel37"] = { + "+(16-24) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(16-24) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StunAvoidancePerHeraldUnique__1"] = { + "35% chance to avoid being Stunned for each Herald Buff affecting you", + ["affix"] = "", + ["group"] = "StunAvoidancePerHerald", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4617, + }, + ["tradeHashes"] = { + [1493090598] = { + "35% chance to avoid being Stunned for each Herald Buff affecting you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StunAvoidanceUniqueOneHandSword13"] = { + "20% chance to Avoid being Stunned", + ["affix"] = "", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "20% chance to Avoid being Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StunAvoidanceUnique___1"] = { + "20% chance to Avoid being Stunned", + ["affix"] = "", + ["group"] = "AvoidStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1607, + }, + ["tradeHashes"] = { + [4262448838] = { + "20% chance to Avoid being Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StunDurationBasedOnEnergyShieldUnique__1"] = { + "Stun Threshold is based on Energy Shield instead of Life", + ["affix"] = "", + ["group"] = "StunDurationBasedOnEnergyShield", + ["level"] = 48, + ["modTags"] = { + }, + ["statOrder"] = { + 3921, + }, + ["tradeHashes"] = { + [2562665460] = { + "Stun Threshold is based on Energy Shield instead of Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["StunDurationJewel"] = { + "(10-14)% increased Stun Duration on Enemies", + ["affix"] = "of Stunning", + ["group"] = "StunDurationForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1053, + }, + ["tradeHashes"] = { + [2517001139] = { + "(10-14)% increased Stun Duration on Enemies", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["StunRecoveryJewel"] = { + "(25-35)% increased Stun Recovery", + ["affix"] = "of Recovery", + ["group"] = "StunRecoveryForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1060, + }, + ["tradeHashes"] = { + [2511217560] = { + "(25-35)% increased Stun Recovery", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["SubtractedBlockChanceUniqueShieldStrInt8"] = { + "-10% Chance to Block", + ["affix"] = "", + ["group"] = "IncreasedShieldBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 838, + }, + ["tradeHashes"] = { + [4253454700] = { + "-10% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { + "Socketed Skills Summon your maximum number of Totems in formation", + ["affix"] = "", + ["group"] = "SummonMaximumNumberOfSocketedTotems", + ["level"] = 1, + ["modTags"] = { + "skill", + "gem", + }, + ["statOrder"] = { + 394, + }, + ["tradeHashes"] = { + [1936441365] = { + "Socketed Skills Summon your maximum number of Totems in formation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonRagingSpiritOnKillUnique__1"] = { + "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", + ["affix"] = "", + ["group"] = "SummonRagingSpiritOnKill", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 568, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3751996449] = { + "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { + "+1 second to Summon Skeleton Cooldown", + ["affix"] = "", + ["group"] = "SummonSkeletonsCooldownTime", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10172, + }, + ["tradeHashes"] = { + [3013430129] = { + "+1 second to Summon Skeleton Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { + "Summon 4 additional Skeletons with Summon Skeletons", + ["affix"] = "", + ["group"] = "SummonSkeletonsNumberOfSkeletonsToSummon", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 3661, + }, + ["tradeHashes"] = { + [1589090910] = { + "Summon 4 additional Skeletons with Summon Skeletons", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonSkeletonsThresholdUnique__1"] = { + "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", + ["affix"] = "", + ["group"] = "SummonSkeletonsThreshold", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2958, + }, + ["tradeHashes"] = { + [3088991881] = { + "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonSpidersOnKillUnique__1"] = { + "100% chance to Trigger Level 1 Raise Spiders on Kill", + ["affix"] = "", + ["group"] = "GrantsSpiderMinion", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 567, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3844016207] = { + "100% chance to Trigger Level 1 Raise Spiders on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonTotemCastSpeedImplicit1"] = { + "(20-30)% increased Totem Placement speed", + ["affix"] = "", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 93, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(20-30)% increased Totem Placement speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonTotemCastSpeedUnique__1"] = { + "(14-20)% increased Totem Placement speed", + ["affix"] = "", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(14-20)% increased Totem Placement speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonTotemCastSpeedUnique__2"] = { + "(30-50)% increased Totem Placement speed", + ["affix"] = "", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(30-50)% increased Totem Placement speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonVoidSphereOnKillUnique__1_"] = { + "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", + ["affix"] = "", + ["group"] = "SummonVoidSphereOnKill", + ["level"] = 100, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 603, + }, + ["tradeHashes"] = { + [2143990571] = { + "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonWolfOnCritUnique__1"] = { + "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", + ["affix"] = "", + ["group"] = "SummonWolfOnCrit", + ["level"] = 1, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 539, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [4221489692] = { + "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonWolfOnKillUnique__1"] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + ["affix"] = "", + ["group"] = "SummonWolfOnKillOld", + ["level"] = 62, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 574, + }, + ["tradeHashes"] = { + [1468606528] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonWolfOnKillUnique__1New"] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + ["affix"] = "", + ["group"] = "SummonWolfOnKillOld", + ["level"] = 25, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 574, + }, + ["tradeHashes"] = { + [1468606528] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonWolfOnKillUnique__2_"] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + ["affix"] = "", + ["group"] = "SummonWolfOnKillOld", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 574, + }, + ["tradeHashes"] = { + [1468606528] = { + "Trigger Level 10 Summon Spectral Wolf on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SummonsWormsOnUse"] = { + "2 Enemy Writhing Worms escape the Flask when used", + "Writhing Worms are destroyed when Hit", + ["affix"] = "", + ["group"] = "SummonsWormsOnUse", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 683, + 683.1, + }, + ["tradeHashes"] = { + [2434293916] = { + "2 Enemy Writhing Worms escape the Flask when used", + "Writhing Worms are destroyed when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByBlasphemyUnique"] = { + "Socketed Gems are Supported by Level 20 Blasphemy", + ["affix"] = "", + ["group"] = "SupportedByBlasphemyUnique", + ["level"] = 1, + ["modTags"] = { + "support", + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 382, + }, + ["tradeHashes"] = { + [539747809] = { + "Socketed Gems are Supported by Level 20 Blasphemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByBlessingSupportUnique__1"] = { + "Socketed Gems are Supported by Level 25 Divine Blessing", + ["affix"] = "", + ["group"] = "SupportedByBlessing", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 185, + }, + ["tradeHashes"] = { + [3274973940] = { + "Socketed Gems are Supported by Level 25 Divine Blessing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByChanceToBleedUnique__1"] = { + "Socketed Gems are supported by Level 1 Chance to Bleed", + ["affix"] = "", + ["group"] = "SupportedByChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 356, + }, + ["tradeHashes"] = { + [2178803872] = { + "Socketed Gems are supported by Level 1 Chance to Bleed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByClusterTrapUnique__1"] = { + "Socketed Gems are Supported by Level 16 Cluster Trap", + ["affix"] = "", + ["group"] = "SupportedByClusterTrap", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 332, + }, + ["tradeHashes"] = { + [2854183975] = { + "Socketed Gems are Supported by Level 16 Cluster Trap", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByFasterCastUnique__1"] = { + "Socketed Gems are Supported by Level 18 Faster Casting", + ["affix"] = "", + ["group"] = "DisplaySocketedGemsGetFasterCast", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 366, + }, + ["tradeHashes"] = { + [2169938251] = { + "Socketed Gems are Supported by Level 18 Faster Casting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByGenerosityUniqueBodyDexInt4_"] = { + "Socketed Gems are Supported by Level 30 Generosity", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGenerosity", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 362, + }, + ["tradeHashes"] = { + [2593773031] = { + "Socketed Gems are Supported by Level 30 Generosity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByIceBiteUnique__1"] = { + "Socketed Gems are Supported by Level 18 Ice Bite", + ["affix"] = "", + ["group"] = "SupportedByIceBite", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 377, + }, + ["tradeHashes"] = { + [1384629003] = { + "Socketed Gems are Supported by Level 18 Ice Bite", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByInnervateUnique__1"] = { + "Socketed Gems are Supported by Level 18 Innervate", + ["affix"] = "", + ["group"] = "SupportedByInnervate", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 383, + }, + ["tradeHashes"] = { + [1106668565] = { + "Socketed Gems are Supported by Level 18 Innervate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByInnervateUnique__2"] = { + "Socketed Gems are Supported by Level 15 Innervate", + ["affix"] = "", + ["group"] = "SupportedByInnervate", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 383, + }, + ["tradeHashes"] = { + [1106668565] = { + "Socketed Gems are Supported by Level 15 Innervate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByLesserPoisonUnique__1"] = { + "Socketed Gems are Supported by Level 10 Chance to Poison", + ["affix"] = "", + ["group"] = "SupportedByLesserPoison", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 385, + }, + ["tradeHashes"] = { + [228165595] = { + "Socketed Gems are Supported by Level 10 Chance to Poison", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByLifeLeechUniqueBodyStrInt5"] = { + "Socketed Gems are supported by Level 15 Life Leech", + ["affix"] = "", + ["group"] = "SupportedByLifeLeech", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 355, + }, + ["tradeHashes"] = { + [891277550] = { + "Socketed Gems are supported by Level 15 Life Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByLifeLeechUnique__1"] = { + "Socketed Gems are supported by Level 10 Life Leech", + ["affix"] = "", + ["group"] = "SupportedByLifeLeech", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 355, + }, + ["tradeHashes"] = { + [891277550] = { + "Socketed Gems are supported by Level 10 Life Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByMultistrikeUniqueOneHandSword13"] = { + "Socketed Gems are supported by Level 1 Multistrike", + ["affix"] = "", + ["group"] = "SupportedByMultistrike", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 353, + }, + ["tradeHashes"] = { + [2501237765] = { + "Socketed Gems are supported by Level 1 Multistrike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByReducedManaUniqueBodyDexInt4"] = { + "Socketed Gems are Supported by Level 15 Inspiration", + ["affix"] = "", + ["group"] = "DisplaySocketedGemGetsReducedManaCost", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 361, + }, + ["tradeHashes"] = { + [1866911844] = { + "Socketed Gems are Supported by Level 15 Inspiration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByRemoteMineUniqueStaff11"] = { + "Socketed Gems are Supported by Level 10 Blastchain Mine", + ["affix"] = "", + ["group"] = "SupportedByRemoteMineLevel", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 364, + }, + ["tradeHashes"] = { + [1710508327] = { + "Socketed Gems are Supported by Level 10 Blastchain Mine", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByTrapAndMineDamageUnique__1"] = { + "Socketed Gems are Supported by Level 16 Trap And Mine Damage", + ["affix"] = "", + ["group"] = "SupportedByTrapAndMineDamage", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 334, + }, + ["tradeHashes"] = { + [3814066599] = { + "Socketed Gems are Supported by Level 16 Trap And Mine Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SupportedByVileToxinsUnique__1"] = { + "Socketed Gems are Supported by Level 20 Vile Toxins", + ["affix"] = "", + ["group"] = "SupportedByVileToxins", + ["level"] = 1, + ["modTags"] = { + "support", + "gem", + }, + ["statOrder"] = { + 384, + }, + ["tradeHashes"] = { + [1002855537] = { + "Socketed Gems are Supported by Level 20 Vile Toxins", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SvalinnVerisiumImplicitManaBeforeLife1"] = { + "(15-25)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(15-25)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { + "Recover (15-25) Runic Ward when you Block", + ["affix"] = "", + ["group"] = "WardOnBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9682, + }, + ["tradeHashes"] = { + [1568848828] = { + "Recover (15-25) Runic Ward when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SwordAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Swords", + ["affix"] = "Fencing", + ["group"] = "SwordAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1325, + }, + ["tradeHashes"] = { + [3293699237] = { + "(6-8)% increased Attack Speed with Swords", + }, + }, + ["weightKey"] = { + "sword", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["SwordDamageJewel"] = { + "(14-16)% increased Damage with Swords", + ["affix"] = "Vicious", + ["group"] = "IncreasedSwordDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1259, + }, + ["tradeHashes"] = { + [83050999] = { + "(14-16)% increased Damage with Swords", + }, + }, + ["weightKey"] = { + "sword", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + 1, + 0, + }, + }, + ["SwordImplicitItemFoundRarity1"] = { + "(15-25)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(15-25)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SwordImplicitLifeLeechLocal1"] = { + "Leeches 6% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches 6% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SwordImplicitSpellDamage1"] = { + "(40-60)% increased Spell Damage", + ["affix"] = "", + ["group"] = "SpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(40-60)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SwordPhysicalAttackSpeedUnique__1"] = { + "35% increased Attack Speed with Swords", + ["affix"] = "", + ["group"] = "SwordAttackSpeed", + ["level"] = 80, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1325, + }, + ["tradeHashes"] = { + [3293699237] = { + "35% increased Attack Speed with Swords", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { + "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", + ["affix"] = "", + ["group"] = "SwordPhysicalDamageToAddAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 3448, + }, + ["tradeHashes"] = { + [3606204707] = { + "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TakeFireDamageOnIgniteUnique__1"] = { + "Take 100 Fire Damage when you Ignite an Enemy", + ["affix"] = "", + ["group"] = "TakeFireDamageOnIgnite", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6578, + }, + ["tradeHashes"] = { + [2518598473] = { + "Take 100 Fire Damage when you Ignite an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { + "Take no Extra Damage from Critical Hits", + ["affix"] = "", + ["group"] = "TakeNoExtraDamageFromCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3931, + }, + ["tradeHashes"] = { + [4294267596] = { + "Take no Extra Damage from Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { + "When you Attack, take (15-20)% of Life as Physical Damage for", + "each Warcry Empowering the Attack", + ["affix"] = "", + ["group"] = "TakePhysicalDamagePerWarcryExerting", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9812, + 9812.1, + }, + ["tradeHashes"] = { + [1615324731] = { + "When you Attack, take (15-20)% of Life as Physical Damage for", + "each Warcry Empowering the Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { + "+25 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "TakesDamageWhenAttacked", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "+25 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitAdditionalBlock1"] = { + "+(14-18)% to Block chance", + ["affix"] = "", + ["group"] = "AdditionalBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+(14-18)% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitFireDamageAndFlammability1"] = { + "(50-80)% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "WeaponImplicitDamageIsFireAndFlammability", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tradeHashes"] = { + [2968503605] = { + "(50-80)% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { + "(20-30)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "WeaponImplicitDamageIsLightningAndShockMagnitude", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(20-30)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitMarkEffect1"] = { + "(10-20)% increased Effect of your Mark Skills", + ["affix"] = "", + ["group"] = "WeaponImplicitMarkEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "(10-20)% increased Effect of your Mark Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitMaximumRage1"] = { + "+(7-10) to Maximum Rage", + ["affix"] = "", + ["group"] = "WeaponImplicitMaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(7-10) to Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitMinionDamage1"] = { + "Minions deal (30-50)% increased Damage", + ["affix"] = "", + ["group"] = "WeaponImplicitMinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (30-50)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TalismanImplicitRageOnMeleeHit1"] = { + "Gain (2-4) Rage on Melee Hit", + ["affix"] = "", + ["group"] = "WeaponImplicitRageOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain (2-4) Rage on Melee Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TemporalChainsOnHitUniqueGlovesInt3"] = { + "Curse Enemies with Temporal Chains on Hit", + ["affix"] = "", + ["group"] = "TemporalChainsOnHit", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2299, + }, + ["tradeHashes"] = { + [4139135963] = { + "Curse Enemies with Temporal Chains on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TemporalChainsReservationCostUnique__1"] = { + "Temporal Chains has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "TemporalChainsNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 10245, + }, + ["tradeHashes"] = { + [2100165275] = { + "Temporal Chains has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TemporalChainsReservationCostUnique__2"] = { + "Temporal Chains has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "TemporalChainsNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 10245, + }, + ["tradeHashes"] = { + [2100165275] = { + "Temporal Chains has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TentacleSmashOnKillUnique__1_"] = { + "20% chance to Trigger Level 20 Tentacle Whip on Kill", + ["affix"] = "", + ["group"] = "TentacleSmashOnKill", + ["level"] = 100, + ["modTags"] = { + "green_herring", + "skill", + }, + ["statOrder"] = { + 602, + }, + ["tradeHashes"] = { + [1350938937] = { + "20% chance to Trigger Level 20 Tentacle Whip on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TheFlawedEdictUnique__1"] = { + "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", + ["affix"] = "", + ["group"] = "TheFlawedEdict", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7696, + }, + ["tradeHashes"] = { + [3607612750] = { + "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TheUnleashedVerisiumImplicitArcaneSurgeEffect1"] = { + "(30-50)% increased effect of Arcane Surge on you", + ["affix"] = "", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(30-50)% increased effect of Arcane Surge on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TheUnleashedVerisiumImplicitBypassEnergyShield1"] = { + "(10-15)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(10-15)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TokenOfPassageReducedLightUnique_1"] = { + "(20-30)% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(20-30)% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TokenOfPassageReducedPresenceUnique_1"] = { + "(20-30)% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(20-30)% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemDamageJewel"] = { + "(12-16)% increased Totem Damage", + ["affix"] = "Shaman's", + ["group"] = "TotemDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1152, + }, + ["tradeHashes"] = { + [3851254963] = { + "(12-16)% increased Totem Damage", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["TotemDamagePerDevotion"] = { + "4% increased Totem Damage per 10 Devotion", + ["affix"] = "", + ["group"] = "TotemDamagePerDevotion", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10286, + }, + ["tradeHashes"] = { + [2566390555] = { + "4% increased Totem Damage per 10 Devotion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemDamageUnique__1_"] = { + "40% increased Totem Damage", + ["affix"] = "", + ["group"] = "TotemDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1152, + }, + ["tradeHashes"] = { + [3851254963] = { + "40% increased Totem Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemElementalResistPerActiveTotemUnique_1"] = { + "Totems gain -10% to all Elemental Resistances per Summoned Totem", + ["affix"] = "", + ["group"] = "TotemElementalResistPerActiveTotem", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 3830, + }, + ["tradeHashes"] = { + [2288558421] = { + "Totems gain -10% to all Elemental Resistances per Summoned Totem", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemElementalResistancesJewel"] = { + "Totems gain +(6-10)% to all Elemental Resistances", + ["affix"] = "of Runes", + ["group"] = "TotemElementalResistancesForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 2547, + }, + ["tradeHashes"] = { + [1809006367] = { + "Totems gain +(6-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["TotemLifeJewel"] = { + "(8-12)% increased Totem Life", + ["affix"] = "Carved", + ["group"] = "TotemLifeForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(8-12)% increased Totem Life", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + }, + }, + ["TotemLifePerStrengthUniqueJewel15"] = { + "3% increased Totem Life per 10 Strength Allocated in Radius", + ["affix"] = "", + ["group"] = "TotemLifePerStrengthInRadius", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2789, + }, + ["tradeHashes"] = { + [747037697] = { + "3% increased Totem Life per 10 Strength Allocated in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemLifeUniqueBodyInt7"] = { + "(20-30)% increased Totem Life", + ["affix"] = "", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(20-30)% increased Totem Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemLifeUnique__1"] = { + "(14-20)% increased Totem Life", + ["affix"] = "", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(14-20)% increased Totem Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemLifeUnique__2_"] = { + "(20-30)% increased Totem Life", + ["affix"] = "", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(20-30)% increased Totem Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TotemsCannotBeStunnedUniqueJewel15"] = { + "Totems cannot be Stunned", + ["affix"] = "", + ["group"] = "TotemsCannotBeStunned", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2794, + }, + ["tradeHashes"] = { + [335735137] = { + "Totems cannot be Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapAndMineAddedPhysicalDamageUnique__1"] = { + "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", + ["affix"] = "", + ["group"] = "TrapAndMineAddedPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 3467, + }, + ["tradeHashes"] = { + [3391324703] = { + "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapCooldownRecoveryUnique__1"] = { + "(10-15)% increased Cooldown Recovery Rate for throwing Traps", + ["affix"] = "", + ["group"] = "TrapCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3150, + }, + ["tradeHashes"] = { + [3417757416] = { + "(10-15)% increased Cooldown Recovery Rate for throwing Traps", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapCritChanceJewel_"] = { + "(12-16)% increased Critical Hit Chance with Traps", + ["affix"] = "Inescapable", + ["group"] = "TrapCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(12-16)% increased Critical Hit Chance with Traps", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["TrapCritChanceUnique__1"] = { + "(100-120)% increased Critical Hit Chance with Traps", + ["affix"] = "", + ["group"] = "TrapCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 979, + }, + ["tradeHashes"] = { + [1192661666] = { + "(100-120)% increased Critical Hit Chance with Traps", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapCritMultiplier"] = { + "+(8-10)% to Critical Damage Bonus with Traps", + ["affix"] = "Debilitating", + ["group"] = "TrapCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 984, + }, + ["tradeHashes"] = { + [1780168381] = { + "+(8-10)% to Critical Damage Bonus with Traps", + }, + }, + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["TrapDamageJewel"] = { + "(14-16)% increased Trap Damage", + ["affix"] = "Trapping", + ["group"] = "TrapDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(14-16)% increased Trap Damage", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapDamageUniqueBelt6"] = { + "(30-40)% increased Trap Damage", + ["affix"] = "", + ["group"] = "TrapDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(30-40)% increased Trap Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapDamageUniqueShieldDexInt1"] = { + "(18-28)% increased Trap Damage", + ["affix"] = "", + ["group"] = "TrapDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(18-28)% increased Trap Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapDamageUnique___1"] = { + "(15-25)% increased Trap Damage", + ["affix"] = "", + ["group"] = "TrapDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(15-25)% increased Trap Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapDurationUniqueBelt6"] = { + "(50-75)% reduced Trap Duration", + ["affix"] = "", + ["group"] = "TrapDuration", + ["level"] = 47, + ["modTags"] = { + }, + ["statOrder"] = { + 1662, + }, + ["tradeHashes"] = { + [2001530951] = { + "(50-75)% reduced Trap Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapDurationUnique__1"] = { + "10% reduced Trap Duration", + ["affix"] = "", + ["group"] = "TrapDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1662, + }, + ["tradeHashes"] = { + [2001530951] = { + "10% reduced Trap Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapImplicitCooldownRecovery1"] = { + "(20-30)% increased Cooldown Recovery Rate for throwing Traps", + ["affix"] = "", + ["group"] = "TrapCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3150, + }, + ["tradeHashes"] = { + [3417757416] = { + "(20-30)% increased Cooldown Recovery Rate for throwing Traps", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapPoisonChanceUnique__1"] = { + "Traps and Mines have a 25% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "TrapPoisonChance", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3745, + }, + ["tradeHashes"] = { + [3192135716] = { + "Traps and Mines have a 25% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapThrowSpeedJewel"] = { + "(6-8)% increased Trap Throwing Speed", + ["affix"] = "Honed", + ["group"] = "TrapThrowSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1667, + }, + ["tradeHashes"] = { + [118398748] = { + "(6-8)% increased Trap Throwing Speed", + }, + }, + ["weightKey"] = { + "not_str", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["TrapThrowSpeedUniqueBootsDex6"] = { + "(14-18)% increased Trap Throwing Speed", + ["affix"] = "", + ["group"] = "TrapThrowSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1667, + }, + ["tradeHashes"] = { + [118398748] = { + "(14-18)% increased Trap Throwing Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapThrowSpeedUnique__1_"] = { + "(20-30)% reduced Trap Throwing Speed", + ["affix"] = "", + ["group"] = "TrapThrowSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1667, + }, + ["tradeHashes"] = { + [118398748] = { + "(20-30)% reduced Trap Throwing Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapTriggerRadiusUnique__1"] = { + "(40-60)% increased Trap Trigger Area of Effect", + ["affix"] = "", + ["group"] = "TrapTriggerRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1665, + }, + ["tradeHashes"] = { + [497716276] = { + "(40-60)% increased Trap Trigger Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TrapTriggerTwiceChanceUnique__1"] = { + "(8-12)% Chance for Traps to Trigger an additional time", + ["affix"] = "", + ["group"] = "TrapTriggerTwiceChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3468, + }, + ["tradeHashes"] = { + [1087710344] = { + "(8-12)% Chance for Traps to Trigger an additional time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TravelSkillsReflectPoisonUnique__1"] = { + "Poison you inflict with Travel Skills is Reflected to you if you", + "have fewer than 5 Poisons on you", + ["affix"] = "", + ["group"] = "TravelSkillsReflectPoison", + ["level"] = 57, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 10315, + 10315.1, + }, + ["tradeHashes"] = { + [130616495] = { + "Poison you inflict with Travel Skills is Reflected to you if you", + "have fewer than 5 Poisons on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggerBowSkillsOnBowAttackUnique__1"] = { + "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", + ["affix"] = "", + ["group"] = "TriggerBowSkillsOnBowAttack", + ["level"] = 1, + ["modTags"] = { + "skill", + "attack", + "gem", + }, + ["statOrder"] = { + 549, + }, + ["tradeHashes"] = { + [3171958921] = { + "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggerBowSkillsOnCastUnique__1"] = { + "Trigger a Socketed Bow Skill when you Cast a Spell while", + "wielding a Bow, with a 1 second Cooldown", + ["affix"] = "", + ["group"] = "TriggerBowSkillsOnCast", + ["level"] = 1, + ["modTags"] = { + "skill", + "attack", + "caster", + "gem", + }, + ["statOrder"] = { + 607, + 607.1, + }, + ["tradeHashes"] = { + [1378815167] = { + "Trigger a Socketed Bow Skill when you Cast a Spell while", + "wielding a Bow, with a 1 second Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggerShadeFormWhenHitUnique__1"] = { + "Trigger Level 20 Shade Form when Hit", + ["affix"] = "", + ["group"] = "TriggerShadeFormWhenHit", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 579, + }, + ["tradeHashes"] = { + [2603798371] = { + "Trigger Level 20 Shade Form when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { + "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", + ["affix"] = "", + ["group"] = "TriggerCurseOnCurse", + ["level"] = 1, + ["modTags"] = { + "skill", + "caster", + "gem", + "curse", + }, + ["statOrder"] = { + 600, + }, + ["tradeHashes"] = { + [3657377047] = { + "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredAbyssalCryUnique__1"] = { + "Trigger Level 1 Intimidating Cry on Hit", + ["affix"] = "", + ["group"] = "TriggeredAbyssalCry", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 604, + }, + ["tradeHashes"] = { + [1795756125] = { + "Trigger Level 1 Intimidating Cry on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredColdAegisSkillUnique__1"] = { + "Triggers Level 20 Cold Aegis when Equipped", + ["affix"] = "", + ["group"] = "TriggeredColdAegisSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 555, + }, + ["tradeHashes"] = { + [3918947537] = { + "Triggers Level 20 Cold Aegis when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredElementalAegisSkillUnique__1_"] = { + "Triggers Level 20 Elemental Aegis when Equipped", + ["affix"] = "", + ["group"] = "TriggeredElementalAegisSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 556, + }, + ["tradeHashes"] = { + [2602585351] = { + "Triggers Level 20 Elemental Aegis when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredFireAegisSkillUnique__1_"] = { + "Triggers Level 20 Fire Aegis when Equipped", + ["affix"] = "", + ["group"] = "TriggeredFireAegisSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 557, + }, + ["tradeHashes"] = { + [1128763150] = { + "Triggers Level 20 Fire Aegis when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredLightningAegisSkillUnique__1"] = { + "Triggers Level 20 Lightning Aegis when Equipped", + ["affix"] = "", + ["group"] = "TriggeredLightningAegisSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 558, + }, + ["tradeHashes"] = { + [850729424] = { + "Triggers Level 20 Lightning Aegis when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredLightningWarpUnique__1__"] = { + "Trigger Level 15 Lightning Warp on Hit with this Weapon", + ["affix"] = "", + ["group"] = "TriggeredLightningWarp", + ["level"] = 1, + ["modTags"] = { + "skill", + "caster", + }, + ["statOrder"] = { + 542, + }, + ["tradeHashes"] = { + [1527893390] = { + "Trigger Level 15 Lightning Warp on Hit with this Weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredPhysicalAegisSkillUnique__1"] = { + "Triggers Level 20 Physical Aegis when Equipped", + ["affix"] = "", + ["group"] = "TriggeredPhysicalAegisSkill", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 560, + }, + ["tradeHashes"] = { + [1892084828] = { + "Triggers Level 20 Physical Aegis when Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TriggeredSummonLesserShrineUnique__1"] = { + "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + ["affix"] = "", + ["group"] = "TriggeredSummonLesserShrine", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 497, + }, + ["tradeHashes"] = { + [1010340836] = { + "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { + "Skills which create Fissures have a 50% chance to create an additional Fissure", + ["affix"] = "", + ["group"] = "AdditionalFissureChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 9894, + }, + ["tradeHashes"] = { + [2544540062] = { + "Skills which create Fissures have a 50% chance to create an additional Fissure", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { + "(200-300)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(200-300)% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["TwoHandCritMultiplierJewel"] = { + "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", + ["affix"] = "Rupturing", + ["group"] = "TwoHandCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1373, + }, + ["tradeHashes"] = { + [252507949] = { + "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "bow", + "one_handed_mod", + "shield_mod", + "dual_wielding_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["TwoHandedCritChanceJewel"] = { + "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", + ["affix"] = "Sundering", + ["group"] = "TwoHandedCritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1372, + }, + ["tradeHashes"] = { + [764295120] = { + "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "bow", + "one_handed_mod", + "shield_mod", + "dual_wielding_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["TwoHandedMeleeAttackSpeedJewel"] = { + "(4-6)% increased Attack Speed with Two Handed Melee Weapons", + ["affix"] = "Warrior's", + ["group"] = "TwoHandedMeleeAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1317, + }, + ["tradeHashes"] = { + [1917910910] = { + "(4-6)% increased Attack Speed with Two Handed Melee Weapons", + }, + }, + ["weightKey"] = { + "one_handed_mod", + "dual_wielding_mod", + "shield_mod", + "bow", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["TwoHandedMeleeDamageJewel"] = { + "(12-14)% increased Damage with Two Handed Weapons", + ["affix"] = "Champion's", + ["group"] = "IncreasedTwoHandedMeleeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3042, + }, + ["tradeHashes"] = { + [1836374041] = { + "(12-14)% increased Damage with Two Handed Weapons", + }, + }, + ["weightKey"] = { + "bow", + "wand", + "one_handed_mod", + "dual_wielding_mod", + "shield_mod", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 1, + 0, + }, + }, + ["UnaffectedByCursesUnique__1"] = { + "Unaffected by Curses", + ["affix"] = "", + ["group"] = "UnaffectedByCurses", + ["level"] = 85, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2259, + }, + ["tradeHashes"] = { + [3809896400] = { + "Unaffected by Curses", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnaffectedByShockUnique__1"] = { + "Unaffected by Shock", + ["affix"] = "", + ["group"] = "UnaffectedByShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 10371, + }, + ["tradeHashes"] = { + [1473289174] = { + "Unaffected by Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnaffectedByShockUnique__2"] = { + "Unaffected by Shock", + ["affix"] = "", + ["group"] = "UnaffectedByShock", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 10371, + }, + ["tradeHashes"] = { + [1473289174] = { + "Unaffected by Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnarmedAreaOfEffectUniqueJewel4"] = { + "(10-15)% increased Area of Effect while Unarmed", + ["affix"] = "", + ["group"] = "UnarmedAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2787, + }, + ["tradeHashes"] = { + [2216127021] = { + "(10-15)% increased Area of Effect while Unarmed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnarmedAttackSpeedJewel"] = { + "(6-8)% increased Unarmed Attack Speed with Melee Skills", + ["affix"] = "Furious", + ["group"] = "AttackSpeedWhileUnarmedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1329, + }, + ["tradeHashes"] = { + [1584440377] = { + "(6-8)% increased Unarmed Attack Speed with Melee Skills", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { + "100% increased Damage with Unarmed Attacks against Bleeding Enemies", + ["affix"] = "", + ["group"] = "UnarmedDamageVsBleedingEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3252, + }, + ["tradeHashes"] = { + [3919199754] = { + "100% increased Damage with Unarmed Attacks against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnarmedMeleeDamageJewel"] = { + "(14-16)% increased Melee Physical Damage with Unarmed Attacks", + ["affix"] = "Brawling", + ["group"] = "IncreasedUnarmedDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1232, + }, + ["tradeHashes"] = { + [515842015] = { + "(14-16)% increased Melee Physical Damage with Unarmed Attacks", + }, + }, + ["weightKey"] = { + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["UnarmedStrikeRangeUnique1"] = { + "+0.3 metres to Melee Strike Range while Unarmed", + ["affix"] = "", + ["group"] = "UnarmedRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2808, + }, + ["tradeHashes"] = { + [3273962791] = { + "+0.3 metres to Melee Strike Range while Unarmed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnarmedStrikeRangeUniqueJewel__1_"] = { + "+(0.3-0.4) metres to Melee Strike Range while Unarmed", + ["affix"] = "", + ["group"] = "UnarmedRange", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2808, + }, + ["tradeHashes"] = { + [3273962791] = { + "+(0.3-0.4) metres to Melee Strike Range while Unarmed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UndyingRageOnCritUniqueTwoHandMace6"] = { + "You gain Onslaught for 4 seconds on Critical Hit", + ["affix"] = "", + ["group"] = "UndyingRageOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2450, + }, + ["tradeHashes"] = { + [1055188639] = { + "You gain Onslaught for 4 seconds on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAccuracyOver100"] = { + "Chance to Hit with Attacks can exceed 100%", + "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", + ["affix"] = "", + ["group"] = "AccuracyOver100", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6735, + 6735.1, + }, + ["tradeHashes"] = { + [2800049475] = { + "Chance to Hit with Attacks can exceed 100%", + "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAccuracyUnaffectedDistance1"] = { + "You have no Accuracy Penalty at Distance", + ["affix"] = "", + ["group"] = "AccuracyUnaffectedDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6079, + }, + ["tradeHashes"] = { + [3070990531] = { + "You have no Accuracy Penalty at Distance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedChaosDamage1"] = { + "Adds (4-6) to (8-10) Chaos Damage to Attacks", + ["affix"] = "", + ["group"] = "ChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (4-6) to (8-10) Chaos Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedChaosDamage2"] = { + "Adds (13-19) to (20-30) Chaos Damage to Attacks", + ["affix"] = "", + ["group"] = "ChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (13-19) to (20-30) Chaos Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedChaosDamage3"] = { + "Adds (5-8) to (10-12) Chaos Damage to Attacks", + ["affix"] = "", + ["group"] = "ChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (5-8) to (10-12) Chaos Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedChaosDamage4"] = { + "Adds (35-44) to (50-62) Chaos Damage to Attacks", + ["affix"] = "", + ["group"] = "ChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (35-44) to (50-62) Chaos Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedChaosDamage5"] = { + "Adds (19-23) to (31-37) Chaos Damage to Attacks", + ["affix"] = "", + ["group"] = "ChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1288, + }, + ["tradeHashes"] = { + [674553446] = { + "Adds (19-23) to (31-37) Chaos Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedColdDamage1"] = { + "Adds (3-5) to (6-8) Cold damage to Attacks", + ["affix"] = "", + ["group"] = "ColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (3-5) to (6-8) Cold damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedColdDamage2"] = { + "Adds (3-4) to (5-8) Cold damage to Attacks", + ["affix"] = "", + ["group"] = "ColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (3-4) to (5-8) Cold damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedColdDamage3"] = { + "Adds (13-20) to (21-31) Cold damage to Attacks", + ["affix"] = "", + ["group"] = "ColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 860, + }, + ["tradeHashes"] = { + [4067062424] = { + "Adds (13-20) to (21-31) Cold damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedFireDamage1"] = { + "Adds (3-5) to (6-9) Fire damage to Attacks", + ["affix"] = "", + ["group"] = "FireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 859, + }, + ["tradeHashes"] = { + [1573130764] = { + "Adds (3-5) to (6-9) Fire damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedFireDamageToAttacksPer25Strength"] = { + "5 to 10 Added Attack Fire Damage per 25 Strength", + ["affix"] = "", + ["group"] = "AddedFireDamagePer25Strength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1821, + }, + ["tradeHashes"] = { + [4186798932] = { + "5 to 10 Added Attack Fire Damage per 25 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedLightningDamage1"] = { + "Adds 1 to (30-50) Lightning damage to Attacks", + ["affix"] = "", + ["group"] = "LightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (30-50) Lightning damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedLightningDamage2"] = { + "Adds 1 to (60-100) Lightning damage to Attacks", + ["affix"] = "", + ["group"] = "LightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (60-100) Lightning damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedLightningDamage3"] = { + "Adds 1 to (30-50) Lightning damage to Attacks", + ["affix"] = "", + ["group"] = "LightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 861, + }, + ["tradeHashes"] = { + [1754445556] = { + "Adds 1 to (30-50) Lightning damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage1"] = { + "Adds (1-4) to (8-12) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (1-4) to (8-12) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage1BigRange"] = { + "Adds (0-5) to (6-18) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (0-5) to (6-18) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage2"] = { + "Adds (3-5) to (8-10) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (3-5) to (8-10) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage3"] = { + "Adds (2-3) to (5-6) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (2-3) to (5-6) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage4"] = { + "Adds (6-10) to (12-16) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (6-10) to (12-16) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage5"] = { + "Adds (7-11) to (14-20) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (7-11) to (14-20) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage6"] = { + "Adds (6-10) to (13-17) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (6-10) to (13-17) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage7"] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage8"] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (5-7) to (9-13) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamage9"] = { + "Adds (20-28) to (34-42) Physical Damage to Attacks", + ["affix"] = "", + ["group"] = "PhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 858, + }, + ["tradeHashes"] = { + [3032590688] = { + "Adds (20-28) to (34-42) Physical Damage to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalDamagePerGlobalBlockChance1"] = { + "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", + ["affix"] = "", + ["group"] = "UniqueAddedPhysicalDamagePerGlobalBlockChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2676, + }, + ["tradeHashes"] = { + [2036307261] = { + "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedPhysicalToMinionAttacks1"] = { + "Minions deal (5-8) to (10-12) additional Attack Physical Damage", + ["affix"] = "", + ["group"] = "AddedPhysicalToMinionAttacks", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "physical_damage", + "damage", + "physical", + "minion", + }, + ["statOrder"] = { + 3442, + }, + ["tradeHashes"] = { + [797833282] = { + "Minions deal (5-8) to (10-12) additional Attack Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAddedThornsPerRune"] = { + "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", + ["affix"] = "", + ["group"] = "UniqueAddedThornsPerRune", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 6818, + }, + ["tradeHashes"] = { + [3926910174] = { + "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalAmmo1"] = { + "Loads an additional bolt", + ["affix"] = "", + ["group"] = "AdditionalAmmo", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 988, + }, + ["tradeHashes"] = { + [1967051901] = { + "Loads an additional bolt", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalArrow1"] = { + "Bow Attacks fire 3 additional Arrows", + ["affix"] = "", + ["group"] = "AdditionalArrows", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 990, + }, + ["tradeHashes"] = { + [3885405204] = { + "Bow Attacks fire 3 additional Arrows", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalArrowChance1"] = { + "+(250-330)% Surpassing chance to fire an additional Arrow", + ["affix"] = "", + ["group"] = "AdditionalArrowChanceCanExceed100%", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5513, + }, + ["tradeHashes"] = { + [2463230181] = { + "+(250-330)% Surpassing chance to fire an additional Arrow", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalAttackChain1"] = { + "Attacks Chain 2 additional times", + ["affix"] = "", + ["group"] = "AttackAdditionalChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3783, + }, + ["tradeHashes"] = { + [3868118796] = { + "Attacks Chain 2 additional times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalBlockChance1"] = { + "+25% to Block chance", + ["affix"] = "", + ["group"] = "AdditionalBlock", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+25% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalChargeGeneration1"] = { + "Gain an additional Charge when you gain a Charge", + ["affix"] = "", + ["group"] = "AdditionalChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5518, + }, + ["tradeHashes"] = { + [1555237944] = { + "Gain an additional Charge when you gain a Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalCharm1"] = { + "+(0-2) Charm Slot", + ["affix"] = "", + ["group"] = "AdditionalCharm", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 989, + }, + ["tradeHashes"] = { + [2582079000] = { + "+(0-2) Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalCharm2"] = { + "+(1-2) Charm Slot", + ["affix"] = "", + ["group"] = "AdditionalCharm", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 989, + }, + ["tradeHashes"] = { + [2582079000] = { + "+(1-2) Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalCharm3"] = { + "+2 Charm Slots", + ["affix"] = "", + ["group"] = "AdditionalCharm", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 989, + }, + ["tradeHashes"] = { + [2582079000] = { + "+2 Charm Slots", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalCurseOnEnemies1"] = { + "You can apply an additional Curse", + ["affix"] = "", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels1"] = { + "+1 to Level of all Fire Skills", + "+2 to Level of all Cold Skills", + "+3 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+2 to Level of all Cold Skills", + }, + [1147690586] = { + "+3 to Level of all Lightning Skills", + }, + [599749213] = { + "+1 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels2"] = { + "+1 to Level of all Fire Skills", + "+3 to Level of all Cold Skills", + "+2 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+3 to Level of all Cold Skills", + }, + [1147690586] = { + "+2 to Level of all Lightning Skills", + }, + [599749213] = { + "+1 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels3"] = { + "+2 to Level of all Fire Skills", + "+1 to Level of all Cold Skills", + "+3 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+1 to Level of all Cold Skills", + }, + [1147690586] = { + "+3 to Level of all Lightning Skills", + }, + [599749213] = { + "+2 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels4"] = { + "+2 to Level of all Fire Skills", + "+3 to Level of all Cold Skills", + "+1 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+3 to Level of all Cold Skills", + }, + [1147690586] = { + "+1 to Level of all Lightning Skills", + }, + [599749213] = { + "+2 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels5"] = { + "+3 to Level of all Fire Skills", + "+1 to Level of all Cold Skills", + "+2 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+1 to Level of all Cold Skills", + }, + [1147690586] = { + "+2 to Level of all Lightning Skills", + }, + [599749213] = { + "+3 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalElementalGemLevels6"] = { + "+3 to Level of all Fire Skills", + "+2 to Level of all Cold Skills", + "+1 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "UniqueAdditionalElementalGemLevels", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 958, + 960, + 962, + }, + ["tradeHashes"] = { + [1078455967] = { + "+2 to Level of all Cold Skills", + }, + [1147690586] = { + "+1 to Level of all Lightning Skills", + }, + [599749213] = { + "+3 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalGemQuality1"] = { + "+(2-5)% to Quality of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(2-5)% to Quality of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalGemQuality1BigRange"] = { + "+(0-7)% to Quality of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(0-7)% to Quality of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalPhysicalDamageReduction1"] = { + "15% additional Physical Damage Reduction", + ["affix"] = "", + ["group"] = "ReducedPhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1006, + }, + ["tradeHashes"] = { + [3771516363] = { + "15% additional Physical Damage Reduction", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAdditionalTotems1"] = { + "+1 to maximum number of Summoned Totems", + ["affix"] = "", + ["group"] = "AdditionalTotems", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1978, + }, + ["tradeHashes"] = { + [429867172] = { + "+1 to maximum number of Summoned Totems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAftershockChance1"] = { + "Slam Skills you use yourself cause an additional Aftershock", + ["affix"] = "", + ["group"] = "AftershockChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10626, + }, + ["tradeHashes"] = { + [2045949233] = { + "Slam Skills you use yourself cause an additional Aftershock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAggravateBleedOnCrit1"] = { + "Aggravate Bleeding on targets you Critically Hit with Attacks", + ["affix"] = "", + ["group"] = "AggravateBleedOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4239, + }, + ["tradeHashes"] = { + [2438634449] = { + "Aggravate Bleeding on targets you Critically Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAggravateBleedOnPresence1"] = { + "Aggravate Bleeding on Enemies when they Enter your Presence", + ["affix"] = "", + ["group"] = "AggravateBleedOnPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4242, + }, + ["tradeHashes"] = { + [874646180] = { + "Aggravate Bleeding on Enemies when they Enter your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAggravateIgnites1"] = { + "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + ["affix"] = "", + ["group"] = "AggravateIgnites", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4248, + }, + ["tradeHashes"] = { + [2312741059] = { + "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAilmentChanceRecieved1"] = { + "(80-100)% increased Chance to be afflicted by Ailments when Hit", + ["affix"] = "", + ["group"] = "AilmentChanceRecieved", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5487, + }, + ["tradeHashes"] = { + [892489594] = { + "(80-100)% increased Chance to be afflicted by Ailments when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAilmentThreshold1"] = { + "+(30-50) to Ailment Threshold", + ["affix"] = "", + ["group"] = "AilmentThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4264, + }, + ["tradeHashes"] = { + [1488650448] = { + "+(30-50) to Ailment Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAilmentThreshold2"] = { + "+(200-300) to Ailment Threshold", + ["affix"] = "", + ["group"] = "AilmentThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4264, + }, + ["tradeHashes"] = { + [1488650448] = { + "+(200-300) to Ailment Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { + "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + ["affix"] = "", + ["group"] = "AilmentThresholdUncappedChaosResistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4263, + }, + ["tradeHashes"] = { + [1000566389] = { + "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes1"] = { + "+(10-20) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-20) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes10"] = { + "+(10-20) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-20) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes11"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes12"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes13"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes14"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes15"] = { + "+(15-25) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(15-25) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes16"] = { + "+(5-10) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-10) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes17"] = { + "+(7-13) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(7-13) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes18"] = { + "+(7-13) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(7-13) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes19"] = { + "+(6-12) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 78, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(6-12) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes2"] = { + "+(5-10) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-10) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes3"] = { + "+(50-100) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(50-100) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes4"] = { + "+(10-20) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-20) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes5"] = { + "+(15-25) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(15-25) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes6"] = { + "+(5-10) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(5-10) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes7"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes8"] = { + "+(10-15) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-15) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributes9"] = { + "+(10-20) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(10-20) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributesPerLevel1"] = { + "-1 to all Attributes per Level", + ["affix"] = "", + ["group"] = "LocalAllAttributesPerLevel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7606, + }, + ["tradeHashes"] = { + [2333085568] = { + "-1 to all Attributes per Level", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllAttributesPerSocketable1"] = { + "+(5-7) to all Attributes per Socket filled", + ["affix"] = "", + ["group"] = "AllAttributesPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7605, + }, + ["tradeHashes"] = { + [3474271079] = { + "+(5-7) to all Attributes per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllDamage1"] = { + "25% reduced Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "25% reduced Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllDamage2"] = { + "(30-50)% increased Damage", + ["affix"] = "", + ["group"] = "AllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1150, + }, + ["tradeHashes"] = { + [2154246560] = { + "(30-50)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllDamageCanPoison1"] = { + "All Damage from Hits Contributes to Poison Magnitude", + ["affix"] = "", + ["group"] = "AllDamageCanPoison", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4272, + }, + ["tradeHashes"] = { + [4012215578] = { + "All Damage from Hits Contributes to Poison Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllDefences1"] = { + "30% reduced Global Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "AllDefences", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 2588, + }, + ["tradeHashes"] = { + [1177404658] = { + "30% reduced Global Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistancePerStackableJewel1"] = { + "+6% to all Elemental Resistances per socketed Grand Spectrum", + ["affix"] = "", + ["group"] = "AllResistancePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 3815, + }, + ["tradeHashes"] = { + [242161915] = { + "+6% to all Elemental Resistances per socketed Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances1"] = { + "+(25-35)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(25-35)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances10"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances11"] = { + "-30% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "-30% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances12"] = { + "-(20-5)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "-(20-5)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances13"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances14"] = { + "+(10-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances15"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances16"] = { + "+(5-40)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-40)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances17"] = { + "+10% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+10% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances18"] = { + "+(10-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances19"] = { + "+(10-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances2"] = { + "+(5-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances20"] = { + "+(30-40)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(30-40)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances21"] = { + "+10% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+10% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances22"] = { + "+(5-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances23"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances24"] = { + "+(10-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances25"] = { + "+(10-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances26"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances27"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances28"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances29"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances3"] = { + "-20% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "-20% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances4"] = { + "-10% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "-10% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances5"] = { + "+(5-15)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-15)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances6"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances7"] = { + "+(10-20)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(10-20)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances8"] = { + "+(5-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistances9"] = { + "+(5-10)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "AllResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1013, + }, + ["tradeHashes"] = { + [2901986750] = { + "+(5-10)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAllResistancesPerSocketable1"] = { + "+(8-10)% to all Elemental Resistances per Socket filled", + ["affix"] = "", + ["group"] = "AllResistancesPerSocketable", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 7820, + }, + ["tradeHashes"] = { + [2593651571] = { + "+(8-10)% to all Elemental Resistances per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlliesInPresenceGainedAsChaos1"] = { + "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 4288, + }, + ["tradeHashes"] = { + [4258251165] = { + "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlternatingDamageTaken1"] = { + "Alternating every 5 seconds:", + "Take 40% less Damage from Hits", + "Take 40% less Damage over time", + ["affix"] = "", + ["group"] = "AlternatingDamageTaken", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 6965, + 6965.1, + 6965.2, + }, + ["tradeHashes"] = { + [258955603] = { + "Alternating every 5 seconds:", + "Take 40% less Damage from Hits", + "Take 40% less Damage over time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlwaysCritHeavyStun1"] = { + "Always deals Critical Hits against Heavy Stunned Enemies", + ["affix"] = "", + ["group"] = "AlwaysCritHeavyStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7612, + }, + ["tradeHashes"] = { + [2214130968] = { + "Always deals Critical Hits against Heavy Stunned Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlwaysDrinkingFlask1"] = { + "This Flask cannot be Used but applies its Effect constantly", + ["affix"] = "", + ["group"] = "FlaskAlwaysDrinking", + ["level"] = 62, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 617, + }, + ["tradeHashes"] = { + [2980117882] = { + "This Flask cannot be Used but applies its Effect constantly", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlwaysHits1"] = { + "Always Hits", + ["affix"] = "", + ["group"] = "AlwaysHits", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1779, + }, + ["tradeHashes"] = { + [4126210832] = { + "Always Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAlwaysPierceBurningEnemies1"] = { + "Projectiles Pierce all Ignited enemies", + ["affix"] = "", + ["group"] = "AlwaysPierceBurningEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4296, + }, + ["tradeHashes"] = { + [2214228141] = { + "Projectiles Pierce all Ignited enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { + "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", + "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", + ["affix"] = "", + ["group"] = "AncestralBoostEveryXAttacksWhileShapeshifted", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2184, + 2184.1, + }, + ["tradeHashes"] = { + [2224139044] = { + "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", + "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAncientsChallengeOnOffHandDamage1"] = { + "Off-hand Hits inflict Runefather's Challenge", + ["affix"] = "", + ["group"] = "AncientsChallengeOnOffHandDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10566, + }, + ["tradeHashes"] = { + [3430033313] = { + "Off-hand Hits inflict Runefather's Challenge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { + "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", + "your maximum Life as Physical damage per second", + ["affix"] = "", + ["group"] = "ApplyCorruptedBloodOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "physical", + }, + ["statOrder"] = { + 10390, + 10390.1, + }, + ["tradeHashes"] = { + [1695767482] = { + "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", + "your maximum Life as Physical damage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAreaOfEffect1"] = { + "(10-20)% increased Area of Effect", + ["affix"] = "", + ["group"] = "AreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [280731498] = { + "(10-20)% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAreaOfEffect2"] = { + "(8-15)% increased Area of Effect", + ["affix"] = "", + ["group"] = "AreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [280731498] = { + "(8-15)% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArmourAppliesToChaosDamage1"] = { + "+(10-20)% of Armour also applies to Chaos Damage", + ["affix"] = "", + ["group"] = "ArmourPercentAppliesToChaosDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4645, + }, + ["tradeHashes"] = { + [3972229254] = { + "+(10-20)% of Armour also applies to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArmourAppliesToDeflection1"] = { + "Gain Deflection Rating equal to 20% of Armour", + ["affix"] = "", + ["group"] = "ArmourAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 1029, + }, + ["tradeHashes"] = { + [1752419596] = { + "Gain Deflection Rating equal to 20% of Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArmourAppliesToElementalDamage1"] = { + "+(100-150)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(100-150)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArmourAppliesToLightningDamage1"] = { + "+100% of Armour also applies to Lightning Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToLightningDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "elemental", + "lightning", + }, + ["statOrder"] = { + 4650, + }, + ["tradeHashes"] = { + [2134207902] = { + "+100% of Armour also applies to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArmourOvercappedFireResistance1"] = { + "Armour is increased by Uncapped Fire Resistance", + ["affix"] = "", + ["group"] = "ArmourUncappedFireResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 4419, + }, + ["tradeHashes"] = { + [713266390] = { + "Armour is increased by Uncapped Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArrowPierceChance1"] = { + "(15-25)% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(15-25)% chance to Pierce an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArrowSpeed1"] = { + "(50-100)% increased Arrow Speed", + ["affix"] = "", + ["group"] = "ArrowSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1552, + }, + ["tradeHashes"] = { + [1207554355] = { + "(50-100)% increased Arrow Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArrowsAlwaysPierceAfterForking1"] = { + "Arrows Pierce all targets after Forking", + ["affix"] = "", + ["group"] = "ArrowsAlwaysPierceAfterForking", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4439, + }, + ["tradeHashes"] = { + [2138799639] = { + "Arrows Pierce all targets after Forking", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArrowsFork1"] = { + "Arrows Fork", + ["affix"] = "", + ["group"] = "ArrowsFork", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 3265, + }, + ["tradeHashes"] = { + [2421436896] = { + "Arrows Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueArrowsReturnAfterPiercingXTimes1"] = { + "Attack Projectiles Return if they Pierced at least (2-4) times", + ["affix"] = "", + ["group"] = "ArrowsReturnAfterPiercingXTimes", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2580, + }, + ["tradeHashes"] = { + [2720781168] = { + "Attack Projectiles Return if they Pierced at least (2-4) times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackAndCastSpeed1"] = { + "(10-15)% reduced Attack and Cast Speed", + ["affix"] = "", + ["group"] = "AttackAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "attack", + "caster", + "speed", + }, + ["statOrder"] = { + 1781, + }, + ["tradeHashes"] = { + [2672805335] = { + "(10-15)% reduced Attack and Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackAreaOfEffectPerIntelligence1"] = { + "1% increased Area of Effect for Attacks per 10 Intelligence", + ["affix"] = "", + ["group"] = "AttackAreaOfEffectPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 4494, + }, + ["tradeHashes"] = { + [434750362] = { + "1% increased Area of Effect for Attacks per 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackCriticalStrikeChance1UNUSED"] = { + "(20-40)% increased Critical Hit Chance for Attacks", + ["affix"] = "", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(20-40)% increased Critical Hit Chance for Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { + "(20-40)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(20-40)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackDamageNotOnLowMana1"] = { + "100% increased Attack Damage while not on Low Mana", + ["affix"] = "", + ["group"] = "AttackDamageNotOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4534, + }, + ["tradeHashes"] = { + [2462683918] = { + "100% increased Attack Damage while not on Low Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackDamageOnLowLife1"] = { + "100% increased Attack Damage while on Low Life", + ["affix"] = "", + ["group"] = "AttackDamageOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4530, + }, + ["tradeHashes"] = { + [4246007234] = { + "100% increased Attack Damage while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackManaCost1"] = { + "Attacks cost an additional 6% of your maximum Mana", + ["affix"] = "", + ["group"] = "AttackManaCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 4582, + }, + ["tradeHashes"] = { + [2157692677] = { + "Attacks cost an additional 6% of your maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackMaxLightningDamage1"] = { + "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", + ["affix"] = "", + ["group"] = "AttackMaxLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 10663, + }, + ["tradeHashes"] = { + [3258071686] = { + "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackMinLightningDamage1"] = { + "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", + ["affix"] = "", + ["group"] = "AttackMinLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 10633, + }, + ["tradeHashes"] = { + [1835420624] = { + "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackSpeedPerDexterity1"] = { + "1% increased Attack Speed per 10 Dexterity", + ["affix"] = "", + ["group"] = "AttackSpeedPerDexterity", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4573, + }, + ["tradeHashes"] = { + [889691035] = { + "1% increased Attack Speed per 10 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackSpeedPerOvercappedBlock1"] = { + "1% increased Attack Speed per Overcapped Block chance", + ["affix"] = "", + ["group"] = "AttackSpeedPerOvercappedBlock", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4572, + }, + ["tradeHashes"] = { + [2958220558] = { + "1% increased Attack Speed per Overcapped Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesColdDamage1"] = { + "25 to 35 Cold Thorns damage", + ["affix"] = "", + ["group"] = "ThornsColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 10258, + }, + ["tradeHashes"] = { + [1515531208] = { + "25 to 35 Cold Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage1"] = { + "(4-5) to (8-10) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(4-5) to (8-10) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage2"] = { + "(3-5) to (6-10) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(3-5) to (6-10) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage3"] = { + "(15-20) to (25-30) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(15-20) to (25-30) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage4"] = { + "(10-15) to (20-25) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(10-15) to (20-25) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage5"] = { + "(10-15) to (20-25) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(10-15) to (20-25) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage6"] = { + "(25-30) to (35-40) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(25-30) to (35-40) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage7"] = { + "(24-35) to (36-53) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(24-35) to (36-53) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesDamage8"] = { + "(20-31) to (32-49) Physical Thorns damage", + ["affix"] = "", + ["group"] = "ThornsPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 10261, + }, + ["tradeHashes"] = { + [2881298780] = { + "(20-31) to (32-49) Physical Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesFireDamage1"] = { + "25 to 35 Fire Thorns damage", + ["affix"] = "", + ["group"] = "ThornsFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 10259, + }, + ["tradeHashes"] = { + [1993950627] = { + "25 to 35 Fire Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttackerTakesLightningDamage1"] = { + "Reflects 1 to 250 Lightning Damage to Melee Attackers", + ["affix"] = "", + ["group"] = "AttackerTakesLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 1933, + }, + ["tradeHashes"] = { + [1243237244] = { + "Reflects 1 to 250 Lightning Damage to Melee Attackers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttacksCountAsExerted1"] = { + "All Attacks count as Empowered Attacks", + ["affix"] = "", + ["group"] = "AttacksCountAsExerted", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4268, + }, + ["tradeHashes"] = { + [1952324525] = { + "All Attacks count as Empowered Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { + "(3-5)% increased Attack damage per Power of target", + ["affix"] = "", + ["group"] = "IncreasedAttackDamagePerTargetPower", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 4513, + }, + ["tradeHashes"] = { + [954571961] = { + "(3-5)% increased Attack damage per Power of target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourArmour1"] = { + "(200-300)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(200-300)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { + "(120-180)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(120-180)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourArmourAndEvasion1"] = { + "(120-180)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(120-180)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { + "(80-120)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(80-120)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourEnergyShield1"] = { + "(200-300)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(200-300)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { + "(120-180)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(120-180)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueAtziriSplendourEvasion1"] = { + "(200-300)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(200-300)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseBlockDamageTaken1"] = { + "You take (25-40)% of damage from Blocked Hits", + ["affix"] = "", + ["group"] = "BaseBlockDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4663, + }, + ["tradeHashes"] = { + [2905515354] = { + "You take (25-40)% of damage from Blocked Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseBlockDamageTaken2"] = { + "You take 50% of damage from Blocked Hits", + ["affix"] = "", + ["group"] = "BaseBlockDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4663, + }, + ["tradeHashes"] = { + [2905515354] = { + "You take 50% of damage from Blocked Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseBlockDamageTaken3"] = { + "You take (0-20)% of damage from Blocked Hits", + ["affix"] = "", + ["group"] = "BaseBlockDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4663, + }, + ["tradeHashes"] = { + [2905515354] = { + "You take (0-20)% of damage from Blocked Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseChanceToPoison1"] = { + "(20-30)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(20-30)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseChanceToPoison2"] = { + "(20-30)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(20-30)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseChanceToPoison3"] = { + "(10-20)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(10-20)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseChanceToPoison4"] = { + "(20-30)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(20-30)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseDamageOverrideForMaceAttacks1"] = { + "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", + ["affix"] = "", + ["group"] = "FacebreakerBaseUnarmedDamageOverride", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 829, + }, + ["tradeHashes"] = { + [1955786041] = { + "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseLifePerSocketable1"] = { + "+(45-60) to maximum Life per Socket filled", + ["affix"] = "", + ["group"] = "BaseLifePerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7632, + }, + ["tradeHashes"] = { + [150391334] = { + "+(45-60) to maximum Life per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseLifeRegenToAllies1"] = { + "50% of your Base Life Regeneration is granted to Allies in your Presence", + ["affix"] = "", + ["group"] = "BaseLifeRegenToAllies", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 924, + }, + ["tradeHashes"] = { + [4287671144] = { + "50% of your Base Life Regeneration is granted to Allies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseLimit1"] = { + "Skills have +1 to Limit", + ["affix"] = "", + ["group"] = "BaseLimit", + ["level"] = 30, + ["modTags"] = { + }, + ["statOrder"] = { + 4715, + }, + ["tradeHashes"] = { + [2942704390] = { + "Skills have +1 to Limit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBaseManaPerSocketable1"] = { + "+(50-60) to maximum Mana per Socket filled", + ["affix"] = "", + ["group"] = "BaseManaPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7633, + }, + ["tradeHashes"] = { + [1036267537] = { + "+(50-60) to maximum Mana per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBearSkillDamageConvertedToFire1"] = { + "Bear Skills Convert 80% of Physical Damage to Fire Damage", + ["affix"] = "", + ["group"] = "UniqueBearSkillDamageConvertedToFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 1703, + }, + ["tradeHashes"] = { + [4287372938] = { + "Bear Skills Convert 80% of Physical Damage to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBeltFlaskDuration1"] = { + "(30-40)% reduced Flask Effect Duration", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(30-40)% reduced Flask Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBeltFlaskRecoveryRate1"] = { + "(30-40)% increased Life and Mana Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 6644, + }, + ["tradeHashes"] = { + [2310741722] = { + "(30-40)% increased Life and Mana Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlasphemyHasNoReservation1"] = { + "DNT-UNUSED Blasphemy has no Reservation", + ["affix"] = "", + ["group"] = "BlasphemyHasNoReservation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4802, + }, + ["tradeHashes"] = { + [3289261284] = { + "DNT-UNUSED Blasphemy has no Reservation", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBleedEffect1"] = { + "(15-25)% increased Magnitude of Bleeding you inflict", + ["affix"] = "", + ["group"] = "BleedDotMultiplier", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(15-25)% increased Magnitude of Bleeding you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBleedingInflictedOnShockedEnemiesIsAggravated1"] = { + "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", + ["affix"] = "", + ["group"] = "BleedingInflictedOnShockedEnemiesIsAggravated", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4237, + }, + ["tradeHashes"] = { + [2293158400] = { + "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBleedsAlwaysAggravated1"] = { + "Bleeding you inflict is Aggravated", + ["affix"] = "", + ["group"] = "BleedsAlwaysAggravated", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4247, + }, + ["tradeHashes"] = { + [841429130] = { + "Bleeding you inflict is Aggravated", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlindEffectsReversed1"] = { + "The Effect of Blind on you is reversed", + ["affix"] = "", + ["group"] = "BlindEffectsReversed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10631, + }, + ["tradeHashes"] = { + [1010703902] = { + "The Effect of Blind on you is reversed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlindEnemiesInPresence1"] = { + "Enemies in your Presence are Blinded", + ["affix"] = "", + ["group"] = "UniqueBlindEnemiesInPresence", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 6355, + }, + ["tradeHashes"] = { + [2080373320] = { + "Enemies in your Presence are Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlindOnPoison1"] = { + "Blind Targets when you Poison them", + ["affix"] = "", + ["group"] = "BlindOnPoison", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4932, + }, + ["tradeHashes"] = { + [60826109] = { + "Blind Targets when you Poison them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlinded1"] = { + "You are Blind", + ["affix"] = "", + ["group"] = "Blinded", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10630, + }, + ["tradeHashes"] = { + [3774577097] = { + "You are Blind", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockChanceFromArmourOnEquipment1"] = { + "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", + ["affix"] = "", + ["group"] = "UniqueBlockChancePerBaseArmour", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1134, + }, + ["tradeHashes"] = { + [2531622767] = { + "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockChanceIncrease1"] = { + "25% increased Block chance", + ["affix"] = "", + ["group"] = "BlockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1133, + }, + ["tradeHashes"] = { + [4147897060] = { + "25% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockChanceIncrease2"] = { + "(10-15)% increased Block chance", + ["affix"] = "", + ["group"] = "BlockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1133, + }, + ["tradeHashes"] = { + [4147897060] = { + "(10-15)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockChanceProjectiles1"] = { + "100% increased Block chance against Projectiles", + ["affix"] = "", + ["group"] = "BlockChanceProjectiles", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4936, + }, + ["tradeHashes"] = { + [3583542124] = { + "100% increased Block chance against Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockChanceToAllies1"] = { + "Allies in your Presence have Block Chance equal to yours", + ["affix"] = "", + ["group"] = "BlockChanceToAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9375, + }, + ["tradeHashes"] = { + [1361645249] = { + "Allies in your Presence have Block Chance equal to yours", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockPercent1"] = { + "+10% to Block chance", + ["affix"] = "", + ["group"] = "BlockPercent", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+10% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockPercent2"] = { + "+(15-25)% to Block chance", + ["affix"] = "", + ["group"] = "BlockPercent", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+(15-25)% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockPercent3"] = { + "+12% to Block chance", + ["affix"] = "", + ["group"] = "BlockPercent", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+12% to Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBlockPercentWithFocus1"] = { + "+(15-25)% to Block Chance while holding a Focus", + ["affix"] = "", + ["group"] = "BlockPercentWithFocus", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 4177, + }, + ["tradeHashes"] = { + [3122852693] = { + "+(15-25)% to Block Chance while holding a Focus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBloodMagic1"] = { + "Blood Magic", + ["affix"] = "", + ["group"] = "BloodMagic", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 10685, + }, + ["tradeHashes"] = { + [2801937280] = { + "Blood Magic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { + "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", + ["affix"] = "", + ["group"] = "BowDamageFromLifeFlaskCharges", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 5765, + }, + ["tradeHashes"] = { + [3893788785] = { + "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBreakArmourWithPhysicalSpells1"] = { + "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", + ["affix"] = "", + ["group"] = "PhysicalSpellArmourBreak", + ["level"] = 1, + ["modTags"] = { + "physical", + "caster", + }, + ["statOrder"] = { + 4412, + }, + ["tradeHashes"] = { + [2795257911] = { + "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { + "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + ["affix"] = "", + ["group"] = "BuffSkillSpiritEfficiencyPerMaximumLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5239, + }, + ["tradeHashes"] = { + [3581035970] = { + "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBuildDamageAgainstRareAndUnique1"] = { + "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", + ["affix"] = "", + ["group"] = "BuildDamageAgainstRareAndUnique", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10396, + }, + ["tradeHashes"] = { + [4258409981] = { + "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueBurningGroundWhileMovingMaximumLife1"] = { + "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", + ["affix"] = "", + ["group"] = "BurningGroundWhileMovingMaximumLife", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 3980, + }, + ["tradeHashes"] = { + [2356156926] = { + "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCanActiveBlockAllDirections1"] = { + "Can Block from all Directions while Shield is Raised", + ["affix"] = "", + ["group"] = "CanActiveBlockAllDirections", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5248, + }, + ["tradeHashes"] = { + [4237042051] = { + "Can Block from all Directions while Shield is Raised", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCanBeInstilled"] = { + "Raven-Touched", + ["affix"] = "", + ["group"] = "CanBeInstilled", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10757, + }, + ["tradeHashes"] = { + [3198163869] = { + "Raven-Touched", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCanEvadeAllDamageNotHitRecently1"] = { + "Evasion Rating is doubled if you have not been Hit Recently", + ["affix"] = "", + ["group"] = "CanEvadeAllDamageNotHitRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6216, + }, + ["tradeHashes"] = { + [1272938854] = { + "Evasion Rating is doubled if you have not been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeChilledOrFrozen1"] = { + "You cannot be Chilled or Frozen", + ["affix"] = "", + ["group"] = "CannotBeChilledOrFrozen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1593, + }, + ["tradeHashes"] = { + [2996245527] = { + "You cannot be Chilled or Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeIgnited1"] = { + "Cannot be Ignited", + ["affix"] = "", + ["group"] = "CannotBeIgnited", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1595, + }, + ["tradeHashes"] = { + [331731406] = { + "Cannot be Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeLightStunned1"] = { + "Cannot be Light Stunned", + ["affix"] = "", + ["group"] = "CannotBeLightStunned", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5273, + }, + ["tradeHashes"] = { + [1000739259] = { + "Cannot be Light Stunned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { + "Cannot be Light Stunned by Deflected Hits", + ["affix"] = "", + ["group"] = "CannotBeLightStunnedByDeflectedHits", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5274, + }, + ["tradeHashes"] = { + [2252419505] = { + "Cannot be Light Stunned by Deflected Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBePoisoned1"] = { + "Cannot be Poisoned", + ["affix"] = "", + ["group"] = "CannotBePoisoned", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3073, + }, + ["tradeHashes"] = { + [3835551335] = { + "Cannot be Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeShocked1"] = { + "Cannot be Shocked", + ["affix"] = "", + ["group"] = "CannotBeShocked", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1597, + }, + ["tradeHashes"] = { + [491899612] = { + "Cannot be Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBeThrown1"] = { + "Cannot use Projectile Attacks", + ["affix"] = "", + ["group"] = "CannotBeThrown", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7637, + }, + ["tradeHashes"] = { + [1961849903] = { + "Cannot use Projectile Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotBlock1"] = { + "Cannot Block", + ["affix"] = "", + ["group"] = "CannotBlockAttacks", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 2977, + }, + ["tradeHashes"] = { + [1465760952] = { + "Cannot Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotDrinkFlaskManually1"] = { + "Cannot be Used manually", + ["affix"] = "", + ["group"] = "CannotDrinkFlask", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 684, + }, + ["tradeHashes"] = { + [1237409891] = { + "Cannot be Used manually", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotEvade1"] = { + "Cannot Evade Enemy Attacks", + ["affix"] = "", + ["group"] = "CannotEvade", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1657, + }, + ["tradeHashes"] = { + [474452755] = { + "Cannot Evade Enemy Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotGainEnergyShield1"] = { + "Cannot have Energy Shield", + ["affix"] = "", + ["group"] = "CannotGainEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "unmutatable", + "energy_shield", + }, + ["statOrder"] = { + 2844, + }, + ["tradeHashes"] = { + [410952253] = { + "Cannot have Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotHaveEnergyShield1"] = { + "Cannot have Energy Shield", + ["affix"] = "", + ["group"] = "CannotHaveEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2844, + }, + ["tradeHashes"] = { + [410952253] = { + "Cannot have Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotImmobilise1"] = { + "Cannot Immobilise enemies", + ["affix"] = "", + ["group"] = "CannotImmobilise", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5303, + }, + ["tradeHashes"] = { + [4062529591] = { + "Cannot Immobilise enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotInflictElementalAilments1"] = { + "Cannot inflict Elemental Ailments", + ["affix"] = "", + ["group"] = "CannotApplyElementalAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 1618, + }, + ["tradeHashes"] = { + [4056809290] = { + "Cannot inflict Elemental Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { + "Life Recovery other than Flasks cannot Recover Life to above Low Life", + ["affix"] = "", + ["group"] = "CannotRecoverAboveLowLifeExceptFlasks", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 5311, + }, + ["tradeHashes"] = { + [451403019] = { + "Life Recovery other than Flasks cannot Recover Life to above Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotRecoverManaExceptRegen1"] = { + "Mana Recovery other than Regeneration cannot Recover Mana", + ["affix"] = "", + ["group"] = "CannotRecoverManaExceptRegen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5313, + }, + ["tradeHashes"] = { + [3593063598] = { + "Mana Recovery other than Regeneration cannot Recover Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotSprint1"] = { + "You cannot Sprint", + ["affix"] = "", + ["group"] = "CannotSprint", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5315, + }, + ["tradeHashes"] = { + [1536107934] = { + "You cannot Sprint", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCannotUseWarcries1"] = { + "Cannot use Warcries", + ["affix"] = "", + ["group"] = "CannotUseWarcries", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5321, + }, + ["tradeHashes"] = { + [2598171606] = { + "Cannot use Warcries", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCausesBleeding1"] = { + "Causes Bleeding on Hit", + ["affix"] = "", + ["group"] = "CausesBleeding", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2261, + }, + ["tradeHashes"] = { + [2091621414] = { + "Causes Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { + "Skills which Empower an Attack have (10-20)% chance to not count that Attack", + ["affix"] = "", + ["group"] = "SkillsExertAttacksDoNotCountChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5404, + }, + ["tradeHashes"] = { + [2538411280] = { + "Skills which Empower an Attack have (10-20)% chance to not count that Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceForNoBoltReload1"] = { + "Bolts fired by Crossbow Attacks have 100% chance to not", + "expend Ammunition if you've Reloaded Recently", + ["affix"] = "", + ["group"] = "ChanceForNoBoltReload", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5904, + 5904.1, + }, + ["tradeHashes"] = { + [842299438] = { + "Bolts fired by Crossbow Attacks have 100% chance to not", + "expend Ammunition if you've Reloaded Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { + "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", + ["affix"] = "", + ["group"] = "ChanceForSpellCriticalHitDamageToBeLucky", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 9993, + }, + ["tradeHashes"] = { + [1133346493] = { + "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToAvoidDeath1"] = { + "50% chance to Avoid Death from Hits", + ["affix"] = "", + ["group"] = "ChanceToAvoidDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5485, + }, + ["tradeHashes"] = { + [1689729380] = { + "50% chance to Avoid Death from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToAvoidProjectiles1"] = { + "33% chance to avoid Projectiles", + ["affix"] = "", + ["group"] = "ChanceToAvoidProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4654, + }, + ["tradeHashes"] = { + [3452269808] = { + "33% chance to avoid Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToBePoisoned1"] = { + "+25% chance to be Poisoned", + ["affix"] = "", + ["group"] = "ChanceToBePoisoned", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 3074, + }, + ["tradeHashes"] = { + [4250009622] = { + "+25% chance to be Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToDealThornsDamageOnHit1"] = { + "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["affix"] = "", + ["group"] = "ChanceToDealThornsDamageOnHit", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 10265, + }, + ["tradeHashes"] = { + [2880019685] = { + "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToIntimidateOnHit1"] = { + "25% chance to Intimidate Enemies for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "ChanceToIntimidateOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5559, + }, + ["tradeHashes"] = { + [78985352] = { + "25% chance to Intimidate Enemies for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToNotConsumeCorpse1"] = { + "25% chance to not destroy Corpses when Consuming Corpses", + ["affix"] = "", + ["group"] = "ChanceToNotConsumeCorpse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5562, + }, + ["tradeHashes"] = { + [965913123] = { + "25% chance to not destroy Corpses when Consuming Corpses", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChanceToPoisonOnSpellHit1"] = { + "100% chance to Poison on Hit with Spell Damage", + ["affix"] = "", + ["group"] = "ChanceToPoisonWithSpells", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "chaos_damage", + "damage", + "chaos", + "caster", + }, + ["statOrder"] = { + 10037, + }, + ["tradeHashes"] = { + [1493211587] = { + "100% chance to Poison on Hit with Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamageAvoidance1"] = { + "(10-30)% chance to Avoid Chaos Damage from Hits", + ["affix"] = "", + ["group"] = "ChaosDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 3080, + }, + ["tradeHashes"] = { + [1563503803] = { + "(10-30)% chance to Avoid Chaos Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamageCanElectrocute1"] = { + "Chaos Damage from Hits also Contributes to Electrocute Buildup", + ["affix"] = "", + ["group"] = "ChaosDamageCanElectrocute", + ["level"] = 1, + ["modTags"] = { + "poison", + "elemental", + "lightning", + "chaos", + "ailment", + }, + ["statOrder"] = { + 4673, + }, + ["tradeHashes"] = { + [2315177528] = { + "Chaos Damage from Hits also Contributes to Electrocute Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamageCanFreeze1"] = { + "Chaos Damage from Hits also Contributes to Freeze Buildup", + ["affix"] = "", + ["group"] = "ChaosDamageCanFreeze", + ["level"] = 1, + ["modTags"] = { + "poison", + "elemental", + "cold", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2622, + }, + ["tradeHashes"] = { + [2973498992] = { + "Chaos Damage from Hits also Contributes to Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamageCanShock1"] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + ["affix"] = "", + ["group"] = "ChaosDamageCanShock", + ["level"] = 1, + ["modTags"] = { + "poison", + "elemental", + "lightning", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2623, + }, + ["tradeHashes"] = { + [2418601510] = { + "Chaos Damage from Hits also Contributes to Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamageMaximumLife1"] = { + "Attacks have added Chaos damage equal to 3% of maximum Life", + ["affix"] = "", + ["group"] = "ChaosDamageMaximumLife", + ["level"] = 75, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 4463, + }, + ["tradeHashes"] = { + [1141563002] = { + "Attacks have added Chaos damage equal to 3% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosDamagePerEnduranceCharge1"] = { + "Take 100 Chaos damage per second per Endurance Charge", + ["affix"] = "", + ["group"] = "ChaosDamagePerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 9805, + }, + ["tradeHashes"] = { + [3164544692] = { + "Take 100 Chaos damage per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosInfusionFromCharge1"] = { + "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", + ["affix"] = "", + ["group"] = "ChaosInfusionFromCharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6719, + }, + ["tradeHashes"] = { + [447757144] = { + "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist1"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist10"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist11"] = { + "+(13-19)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-19)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist12"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist13"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist14"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist15"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist16"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist17"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist18"] = { + "-(23-3)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "-(23-3)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist19"] = { + "-17% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "-17% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist2"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist20"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist21"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist22"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist23"] = { + "+13% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+13% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist24"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist25"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist26"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist27"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist28"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist29"] = { + "+(7-13)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-13)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist3"] = { + "+(13-19)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-19)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist30"] = { + "+(23-29)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(23-29)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist31"] = { + "+(13-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist32"] = { + "+(23-29)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(23-29)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist33"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist34"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist35"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist4"] = { + "+(29-37)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(29-37)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist5"] = { + "+(13-19)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(13-19)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist6"] = { + "+(7-17)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(7-17)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist7"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist8"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResist9"] = { + "+(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResistanceIsZero1"] = { + "Chaos Resistance is zero", + ["affix"] = "", + ["group"] = "ChaosResistanceIsZero", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 10650, + }, + ["tradeHashes"] = { + [2439129490] = { + "Chaos Resistance is zero", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResistanceIsZero2"] = { + "Chaos Resistance is zero", + ["affix"] = "", + ["group"] = "ChaosResistanceIsZero", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 10650, + }, + ["tradeHashes"] = { + [2439129490] = { + "Chaos Resistance is zero", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosResistancePerSocketable1"] = { + "+(10-13)% to Chaos Resistance per Socket filled", + ["affix"] = "", + ["group"] = "ChaosResistancePerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7630, + }, + ["tradeHashes"] = { + [1123023256] = { + "+(10-13)% to Chaos Resistance per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChaosShrine1"] = { + "Grants effect of Dreaming Gloom Shrine", + ["affix"] = "", + ["group"] = "UniqueChaosShrine", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 6967, + }, + ["tradeHashes"] = { + [3742268652] = { + "Grants effect of Dreaming Gloom Shrine", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmBearPossess1"] = { + "Possessed by Spirit Of The Bear for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmBearPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5620, + }, + ["tradeHashes"] = { + [3403424702] = { + "Possessed by Spirit Of The Bear for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmBoarPossess1"] = { + "Possessed by Spirit Of The Boar for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmBoarPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5621, + }, + ["tradeHashes"] = { + [1685559578] = { + "Possessed by Spirit Of The Boar for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmCatPossess1"] = { + "Possessed by Spirit Of The Cat for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmCatPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5622, + }, + ["tradeHashes"] = { + [2839557359] = { + "Possessed by Spirit Of The Cat for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmChargeGeneration1"] = { + "Charms gain 1 charge per Second", + ["affix"] = "", + ["group"] = "CharmChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain 1 charge per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmChargesToLifeFlasks1"] = { + "50% of Charges consumed by used Charms are granted to your Life Flasks", + ["affix"] = "", + ["group"] = "CharmChargesToLifeFlasks", + ["level"] = 70, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 903, + }, + ["tradeHashes"] = { + [2369960685] = { + "50% of Charges consumed by used Charms are granted to your Life Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmCreateConsecratedGround1"] = { + "Creates Consecrated Ground on use", + ["affix"] = "", + ["group"] = "CharmCreateConsecratedGround", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5607, + }, + ["tradeHashes"] = { + [3849649145] = { + "Creates Consecrated Ground on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmDoubleArmourEffect1"] = { + "Defend with 200% of Armour during effect", + ["affix"] = "", + ["group"] = "CharmDoubleArmourEffect", + ["level"] = 1, + ["modTags"] = { + "charm", + "defences", + }, + ["statOrder"] = { + 5608, + }, + ["tradeHashes"] = { + [3138344128] = { + "Defend with 200% of Armour during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { + "Lightning Damage of Enemies Hitting you is Unlucky during effect", + ["affix"] = "", + ["group"] = "CharmEnemyExtraLightningDamageRoll", + ["level"] = 1, + ["modTags"] = { + "charm", + "elemental", + "lightning", + }, + ["statOrder"] = { + 5613, + }, + ["tradeHashes"] = { + [3246948616] = { + "Lightning Damage of Enemies Hitting you is Unlucky during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmGrantsFrenzyCharge1"] = { + "Grants a Frenzy Charge on use", + ["affix"] = "", + ["group"] = "CharmGrantsFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "charm", + "frenzy_charge", + }, + ["statOrder"] = { + 5616, + }, + ["tradeHashes"] = { + [280890192] = { + "Grants a Frenzy Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmGrantsMaximumRage1"] = { + "Grants up to your maximum Rage on use", + ["affix"] = "", + ["group"] = "CharmGrantsMaximumRage", + ["level"] = 1, + ["modTags"] = { + "charm", + "attack", + }, + ["statOrder"] = { + 5618, + }, + ["tradeHashes"] = { + [1509210032] = { + "Grants up to your maximum Rage on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmGrantsPowerCharge1"] = { + "Grants a Power Charge on use", + ["affix"] = "", + ["group"] = "CharmGrantsPowerCharge", + ["level"] = 1, + ["modTags"] = { + "charm", + "power_charge", + }, + ["statOrder"] = { + 5617, + }, + ["tradeHashes"] = { + [2566921799] = { + "Grants a Power Charge on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmIgniteEnemiesInPresence1"] = { + "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", + ["affix"] = "", + ["group"] = "CharmIgniteEnemiesInPresence", + ["level"] = 1, + ["modTags"] = { + "charm", + "ailment", + }, + ["statOrder"] = { + 5619, + }, + ["tradeHashes"] = { + [39209842] = { + "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmIncreasedDuration1"] = { + "(15-25)% increased Duration", + ["affix"] = "", + ["group"] = "CharmIncreasedDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(15-25)% increased Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmIncreasedDuration2"] = { + "(10-20)% increased Duration", + ["affix"] = "", + ["group"] = "CharmIncreasedDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 928, + }, + ["tradeHashes"] = { + [2541588185] = { + "(10-20)% increased Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmOnslaughtDuringEffect1"] = { + "Grants Onslaught during effect", + ["affix"] = "", + ["group"] = "CharmOnslaughtDuringEffect", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5615, + }, + ["tradeHashes"] = { + [618665892] = { + "Grants Onslaught during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmOwlPossess1"] = { + "Possessed by Spirit Of The Owl for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmOwlPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5623, + }, + ["tradeHashes"] = { + [300107724] = { + "Possessed by Spirit Of The Owl for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmOxPossess1"] = { + "Possessed by Spirit Of The Ox for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmOxPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5624, + }, + ["tradeHashes"] = { + [3463873033] = { + "Possessed by Spirit Of The Ox for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmPrimatePossess1"] = { + "Possessed by Spirit Of The Primate for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmPrimatePossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5625, + }, + ["tradeHashes"] = { + [3763491818] = { + "Possessed by Spirit Of The Primate for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmRandomPossess1"] = { + "Possessed by a random Spirit for 20 seconds on use", + ["affix"] = "", + ["group"] = "CharmRandomPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5626, + }, + ["tradeHashes"] = { + [1280492469] = { + "Possessed by a random Spirit for 20 seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmRecoupChaosDamagePrevented1"] = { + "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + ["affix"] = "", + ["group"] = "CharmRecoupChaosDamagePrevented", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "life", + "mana", + "chaos", + }, + ["statOrder"] = { + 5632, + }, + ["tradeHashes"] = { + [2678930256] = { + "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { + "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", + ["affix"] = "", + ["group"] = "CharmRecoverLifeBasedOnManaFlask", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "life", + }, + ["statOrder"] = { + 5630, + }, + ["tradeHashes"] = { + [2716923832] = { + "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { + "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", + ["affix"] = "", + ["group"] = "CharmRecoverManaBasedOnLifeFlask", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "mana", + }, + ["statOrder"] = { + 5631, + }, + ["tradeHashes"] = { + [3891350097] = { + "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmSerpentPossess1"] = { + "Possessed by Spirit Of The Serpent for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmSerpentPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5627, + }, + ["tradeHashes"] = { + [3181677174] = { + "Possessed by Spirit Of The Serpent for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmStagPossess1"] = { + "Possessed by Spirit Of The Stag for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmStagPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5628, + }, + ["tradeHashes"] = { + [3685424517] = { + "Possessed by Spirit Of The Stag for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmStartEnergyShieldRecharge1"] = { + "Energy Shield Recharge starts on use", + ["affix"] = "", + ["group"] = "CharmStartEnergyShieldRecharge", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5614, + }, + ["tradeHashes"] = { + [1056492907] = { + "Energy Shield Recharge starts on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmWolfPossess1"] = { + "Possessed by Spirit Of The Wolf for (10-20) seconds on use", + ["affix"] = "", + ["group"] = "CharmWolfPossess", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5629, + }, + ["tradeHashes"] = { + [3504441212] = { + "Possessed by Spirit Of The Wolf for (10-20) seconds on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCharmsNoCharges1"] = { + "Charms use no Charges", + ["affix"] = "", + ["group"] = "CharmsNoCharges", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5635, + }, + ["tradeHashes"] = { + [2620375641] = { + "Charms use no Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChillDuration1"] = { + "30% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "30% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChillDuration2"] = { + "25% increased Chill Duration on Enemies", + ["affix"] = "", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "25% increased Chill Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChillEffect1"] = { + "(20-30)% increased Magnitude of Chill you inflict", + ["affix"] = "", + ["group"] = "ChillEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5647, + }, + ["tradeHashes"] = { + [828179689] = { + "(20-30)% increased Magnitude of Chill you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChillHitsCauseShattering1"] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["affix"] = "", + ["group"] = "ChillHitsCauseShattering", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5657, + }, + ["tradeHashes"] = { + [3119292058] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChillImmunityWhenChilled1"] = { + "You cannot be Chilled for 6 seconds after being Chilled", + ["affix"] = "", + ["group"] = "ChillImmunityWhenChilled", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2651, + }, + ["tradeHashes"] = { + [2306924373] = { + "You cannot be Chilled for 6 seconds after being Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChilledWhileBleeding1"] = { + "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + ["affix"] = "", + ["group"] = "ChilledWhileBleeding", + ["level"] = 45, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4278, + }, + ["tradeHashes"] = { + [2420248029] = { + "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueChilledWhilePoisoned1"] = { + "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + ["affix"] = "", + ["group"] = "ChilledWhilePoisoned", + ["level"] = 45, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4279, + }, + ["tradeHashes"] = { + [1291285202] = { + "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdAddedAsFireChilledEnemy1"] = { + "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + ["affix"] = "", + ["group"] = "ColdAddedAsFireChilledEnemy", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9283, + }, + ["tradeHashes"] = { + [2469544361] = { + "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdAndLightningResPerFireResItem1"] = { + "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaFireRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1022, + }, + ["tradeHashes"] = { + [2381897042] = { + "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdDamageAvoidance1"] = { + "(10-30)% chance to Avoid Cold Damage from Hits", + ["affix"] = "", + ["group"] = "ColdDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 3078, + }, + ["tradeHashes"] = { + [3743375737] = { + "(10-30)% chance to Avoid Cold Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdDamageConvertToLightning1"] = { + "100% of Cold Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ColdDamageConvertToLightning", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1716, + }, + ["tradeHashes"] = { + [1686824704] = { + "100% of Cold Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdDamageOnWeapon1"] = { + "(80-120)% increased Cold Damage", + ["affix"] = "", + ["group"] = "ColdDamageWeaponPrefix", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3291658075] = { + "(80-120)% increased Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdDamagePercent1"] = { + "(20-30)% increased Cold Damage", + ["affix"] = "", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(20-30)% increased Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdDamagePercent2"] = { + "(10-20)% reduced Cold Damage", + ["affix"] = "", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(10-20)% reduced Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdExposureMagnitude1UNUSED"] = { + "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", + ["affix"] = "", + ["group"] = "ColdExposureAdditionalResistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5696, + }, + ["tradeHashes"] = { + [2243456805] = { + "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdExposureOnHitWithMagnitude1"] = { + "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", + ["affix"] = "", + ["group"] = "ElementalExposureEffectOnHitWithMagnitude", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4282, + }, + ["tradeHashes"] = { + [533542952] = { + "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdExposureOnIgnite1"] = { + "Inflict Cold Exposure on Igniting an Enemy", + ["affix"] = "", + ["group"] = "ColdExposureOnIgnite", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7343, + }, + ["tradeHashes"] = { + [3314536008] = { + "Inflict Cold Exposure on Igniting an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdFireSurgeOnReload"] = { + "When you reload, triggers Gemini Surge to alternately", + "gain (2-6) Cold Surges or (2-6) Fire Surges", + ["affix"] = "", + ["group"] = "ColdFireSurgeOnReload", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + }, + ["statOrder"] = { + 6720, + 6720.1, + }, + ["tradeHashes"] = { + [331648983] = { + "When you reload, triggers Gemini Surge to alternately", + "gain (2-6) Cold Surges or (2-6) Fire Surges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdIgnites1"] = { + "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + ["affix"] = "", + ["group"] = "ColdIgnites", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "ailment", + }, + ["statOrder"] = { + 2611, + }, + ["tradeHashes"] = { + [1261612903] = { + "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdLightningResistance1"] = { + "+(10-20)% to Cold and Lightning Resistances", + ["affix"] = "", + ["group"] = "ColdLightningResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "lightning_resistance", + "elemental", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1021, + }, + ["tradeHashes"] = { + [4277795662] = { + "+(10-20)% to Cold and Lightning Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist1"] = { + "-(20-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "-(20-10)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist10"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist11"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist12"] = { + "+(10-15)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(10-15)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist13"] = { + "+(0-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(0-10)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist14"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist15"] = { + "+40% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+40% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist16"] = { + "+(50-75)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(50-75)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist17"] = { + "+(25-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(25-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist18"] = { + "+(5-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(5-10)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist19"] = { + "+(-30-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(-30-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist2"] = { + "+50% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+50% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist20"] = { + "+(-40-40)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(-40-40)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist21"] = { + "+(50-100)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(50-100)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist22"] = { + "-(15-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "-(15-10)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist23"] = { + "-10% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "-10% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist24"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist25"] = { + "+(10-15)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(10-15)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist26"] = { + "+(10-20)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(10-20)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist27"] = { + "-15% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "-15% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist28"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist29"] = { + "+(25-35)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(25-35)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist3"] = { + "+(10-20)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(10-20)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist30"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist31"] = { + "+(25-35)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(25-35)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist32"] = { + "+(30-40)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(30-40)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist33"] = { + "+(5-15)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(5-15)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist34"] = { + "+(20-30)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(20-30)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist35"] = { + "+(30-40)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(30-40)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist36"] = { + "+(40-50)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(40-50)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist4"] = { + "+(5-10)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(5-10)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist5"] = { + "+(15-25)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(15-25)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist6"] = { + "+(10-20)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(10-20)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist7"] = { + "+(30-40)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(30-40)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist8"] = { + "+(30-50)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(30-50)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResist9"] = { + "+(5-15)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [4220027924] = { + "+(5-15)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResistanceNoPenalty1"] = { + "Cold Resistance is unaffected by Area Penalties", + ["affix"] = "", + ["group"] = "ColdResistanceNoPenalty", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5704, + }, + ["tradeHashes"] = { + [4207433208] = { + "Cold Resistance is unaffected by Area Penalties", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdResistancePenetration1"] = { + "Damage Penetrates 75% Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistancePenetration", + ["level"] = 66, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates 75% Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueColdShrine1"] = { + "Grants effect of Guided Freezing Shrine", + ["affix"] = "", + ["group"] = "UniqueColdShrine", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 6968, + }, + ["tradeHashes"] = { + [234657505] = { + "Grants effect of Guided Freezing Shrine", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCompanionDamageAgainstMarkedTargets1"] = { + "Companions deal (50-100)% increased damage to your Marked targets", + ["affix"] = "", + ["group"] = "CompanionDamageAgainstMarkedEnemies", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 1724, + }, + ["tradeHashes"] = { + [1067622524] = { + "Companions deal (50-100)% increased damage to your Marked targets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCompanionLife1"] = { + "Companions have (30-50)% increased maximum Life", + ["affix"] = "", + ["group"] = "CompanionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 5726, + }, + ["tradeHashes"] = { + [1805182458] = { + "Companions have (30-50)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConductivityGemLevel1"] = { + "+4 to Level of Elemental Weakness Skills", + ["affix"] = "", + ["group"] = "ElementalWeaknessGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1983, + }, + ["tradeHashes"] = { + [3709513762] = { + "+4 to Level of Elemental Weakness Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConsecratedGroundStationaryRing1"] = { + "You have Consecrated Ground around you while stationary", + ["affix"] = "", + ["group"] = "ConsecratedGroundStationaryRing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6895, + }, + ["tradeHashes"] = { + [1736538865] = { + "You have Consecrated Ground around you while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConsumeCorpseRecoverLife1"] = { + "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", + ["affix"] = "", + ["group"] = "ConsumeCorpseRecoverLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5764, + }, + ["tradeHashes"] = { + [3764198549] = { + "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { + "Attacks consume an Endurance Charge to Critically Hit", + ["affix"] = "", + ["group"] = "ConsumeEnduranceChargeAlwaysCrit", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 4501, + }, + ["tradeHashes"] = { + [3550545679] = { + "Attacks consume an Endurance Charge to Critically Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { + "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "ConsumeFrenzyChargeAdditionalProjectile", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9967, + }, + ["tradeHashes"] = { + [1980858462] = { + "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueConvertAllArmourToEvasion1"] = { + "Convert All Armour to Evasion Rating", + ["affix"] = "", + ["group"] = "ConvertArmourToEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 10669, + }, + ["tradeHashes"] = { + [3351912431] = { + "Convert All Armour to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCorruptedBloodImmunity1"] = { + "Corrupted Blood cannot be inflicted on you", + ["affix"] = "", + ["group"] = "CorruptedBloodImmunity", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 5272, + }, + ["tradeHashes"] = { + [1658498488] = { + "Corrupted Blood cannot be inflicted on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCorruptedCharmDuration1"] = { + "(25-50)% increased Corrupted Charms effect duration", + ["affix"] = "", + ["group"] = "CorruptedCharmDuration", + ["level"] = 70, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 901, + }, + ["tradeHashes"] = { + [1571268546] = { + "(25-50)% increased Corrupted Charms effect duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCorruptedSkillCostEfficiencyDuringFlaskEffect1"] = { + "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", + ["affix"] = "", + ["group"] = "CorruptedSkillCostEfficiencyDuringFlaskEffect", + ["level"] = 70, + ["modTags"] = { + }, + ["statOrder"] = { + 3006, + }, + ["tradeHashes"] = { + [2638381947] = { + "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { + "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", + ["affix"] = "", + ["group"] = "CorruptedSkillGemLifeCostConvertedToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 9922, + }, + ["tradeHashes"] = { + [2035336006] = { + "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalDamageBonusWhileShocked1"] = { + "(15-25)% increased Critical Damage Bonus while Shocked", + ["affix"] = "", + ["group"] = "CriticalDamageBonusWhileShocked", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5808, + }, + ["tradeHashes"] = { + [2408983956] = { + "(15-25)% increased Critical Damage Bonus while Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalMultiplier1"] = { + "(10-15)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(10-15)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalMultiplier2"] = { + "(20-30)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(20-30)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalMultiplier3"] = { + "(20-30)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(20-30)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalMultiplierPerPowerCharge1"] = { + "12% increased Critical Damage Bonus per Power Charge", + ["affix"] = "", + ["group"] = "CriticalMultiplierPerPowerCharge", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 2990, + }, + ["tradeHashes"] = { + [4164870816] = { + "12% increased Critical Damage Bonus per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance1"] = { + "(20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance10"] = { + "(20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance11"] = { + "(30-50)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-50)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance12"] = { + "(20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance13"] = { + "(15-25)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(15-25)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance14"] = { + "(30-50)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-50)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance15"] = { + "100% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "100% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance16"] = { + "(30-50)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 69, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-50)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance2"] = { + "(30-50)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-50)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance3"] = { + "(30-40)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(30-40)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance4"] = { + "(0-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(0-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance5"] = { + "(20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance6"] = { + "(15-25)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(15-25)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance7"] = { + "(25-35)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(25-35)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance8"] = { + "(20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeChance9"] = { + "(100-200)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(100-200)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikeMultiplierOverride1"] = { + "Your Critical Damage Bonus is 250%", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplierIs250", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 5870, + }, + ["tradeHashes"] = { + [2516303866] = { + "Your Critical Damage Bonus is 250%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikesCannotBeRerolled1"] = { + "Your Critical Hit Chance cannot be Rerolled", + ["affix"] = "", + ["group"] = "CriticalStrikesCannotBeRerolled", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5838, + }, + ["tradeHashes"] = { + [4159551976] = { + "Your Critical Hit Chance cannot be Rerolled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { + "Critical Hits Ignore Enemy Monster Lightning Resistance", + ["affix"] = "", + ["group"] = "CriticalStrikesIgnoreLightningResistance", + ["level"] = 69, + ["modTags"] = { + "elemental", + "lightning", + "critical", + }, + ["statOrder"] = { + 5899, + }, + ["tradeHashes"] = { + [1289045485] = { + "Critical Hits Ignore Enemy Monster Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikesIgnoreResistances1"] = { + "Critical Hits ignore Enemy Monster Elemental Resistances", + ["affix"] = "", + ["group"] = "CriticalStrikesIgnoreResistances", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3144, + }, + ["tradeHashes"] = { + [1094937621] = { + "Critical Hits ignore Enemy Monster Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalStrikesLeechIsInstant1"] = { + "Leech from Critical Hits is instant", + ["affix"] = "", + ["group"] = "CriticalStrikesLeechIsInstant", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2319, + }, + ["tradeHashes"] = { + [3389184522] = { + "Leech from Critical Hits is instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalWeaknessOnParry1"] = { + "Parrying applies 10 Stacks of Critical Weakness", + ["affix"] = "", + ["group"] = "CriticalWeaknessOnParry", + ["level"] = 1, + ["modTags"] = { + "block", + "curse", + }, + ["statOrder"] = { + 4323, + }, + ["tradeHashes"] = { + [2104138899] = { + "Parrying applies 10 Stacks of Critical Weakness", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalWeaknessOnSpellCrit1"] = { + "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", + ["affix"] = "", + ["group"] = "CriticalWeaknessOnSpellCrit", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 4321, + }, + ["tradeHashes"] = { + [1550131834] = { + "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCriticalsCannotConsumeImpale1"] = { + "Critical Hits cannot Extract Impale", + ["affix"] = "", + ["group"] = "CriticalsCannotConsumeImpale", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 5823, + }, + ["tradeHashes"] = { + [3414998042] = { + "Critical Hits cannot Extract Impale", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCrystalLifePerColdResistance"] = { + "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", + ["affix"] = "", + ["group"] = "IceCrystalMaximumLifePerColdResistance", + ["level"] = 69, + ["modTags"] = { + }, + ["statOrder"] = { + 7239, + }, + ["tradeHashes"] = { + [740421489] = { + "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCullingStrike1"] = { + "Culling Strike", + ["affix"] = "", + ["group"] = "CullingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1775, + }, + ["tradeHashes"] = { + [2524254339] = { + "Culling Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCullingStrikeOnBlock1"] = { + "Enemies are Culled on Block", + ["affix"] = "", + ["group"] = "CullingStrikeOnBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5910, + }, + ["tradeHashes"] = { + [381470861] = { + "Enemies are Culled on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCullingStrikeThreshold1"] = { + "100% increased Culling Strike Threshold", + ["affix"] = "", + ["group"] = "CullingStrikeThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5914, + }, + ["tradeHashes"] = { + [3563080185] = { + "100% increased Culling Strike Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCurseAreaOfEffect1"] = { + "(20-30)% increased Area of Effect of Curses", + ["affix"] = "", + ["group"] = "CurseAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(20-30)% increased Area of Effect of Curses", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCurseCastSpeed1"] = { + "Curse Skills have (10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "CurseCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + "curse", + }, + ["statOrder"] = { + 1944, + }, + ["tradeHashes"] = { + [2378065031] = { + "Curse Skills have (10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCurseMagnitudeIsZero1"] = { + "Magnitudes of Curses you inflict are zero", + ["affix"] = "", + ["group"] = "UniqueCurseMagnitudeMultiplier", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5670, + }, + ["tradeHashes"] = { + [2939415499] = { + "Magnitudes of Curses you inflict are zero", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCurseNoActivationDelay1"] = { + "Curses have no Activation Delay", + ["affix"] = "", + ["group"] = "CurseNoActivationDelay", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10420, + }, + ["tradeHashes"] = { + [3751072557] = { + "Curses have no Activation Delay", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCursesIgnoreLimit1"] = { + "Curses you inflict ignore Curse limit", + ["affix"] = "", + ["group"] = "CurseIgnoresCurseLimit", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 5931, + }, + ["tradeHashes"] = { + [1793470535] = { + "Curses you inflict ignore Curse limit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCursesNeverExpire1"] = { + "Curses you inflict have infinite Duration", + ["affix"] = "", + ["group"] = "CursesNeverExpire", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1903, + }, + ["tradeHashes"] = { + [2609822974] = { + "Curses you inflict have infinite Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueCursesSpreadOnKill1"] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["affix"] = "", + ["group"] = "CursesSpreadOnKill", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2684, + }, + ["tradeHashes"] = { + [986616727] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageAddedAsChaos1"] = { + "Gain (30-40)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageAddedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (30-40)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageAddedAsColdAttacks1"] = { + "Attacks Gain (5-10)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageAddedAsColdAttacks", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 867, + }, + ["tradeHashes"] = { + [1484500028] = { + "Attacks Gain (5-10)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageAddedAsFireAttacks1"] = { + "Attacks Gain (5-10)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageAddedAsFireAttacks", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 865, + }, + ["tradeHashes"] = { + [1049080093] = { + "Attacks Gain (5-10)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageBlockedRecoupedAsMana1"] = { + "Damage Blocked is Recouped as Mana", + ["affix"] = "", + ["group"] = "DamageBlockedRecoupedAsMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5964, + }, + ["tradeHashes"] = { + [2875218423] = { + "Damage Blocked is Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageBypassEnergyShieldPercent1"] = { + "10% of Damage taken bypasses Energy Shield", + ["affix"] = "", + ["group"] = "DamageBypassEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1456, + }, + ["tradeHashes"] = { + [2448633171] = { + "10% of Damage taken bypasses Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageCannotBypassEnergyShield1"] = { + "Damage cannot bypass Energy Shield", + ["affix"] = "", + ["group"] = "DamageCannotBypassEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1460, + }, + ["tradeHashes"] = { + [93764325] = { + "Damage cannot bypass Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { + "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", + ["affix"] = "", + ["group"] = "DeflectedDamageRemovedFromCompanion", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5732, + }, + ["tradeHashes"] = { + [3918757604] = { + "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsChaos1"] = { + "Gain 27% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain 27% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsChaosPerCost1"] = { + "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", + ["affix"] = "", + ["group"] = "DamageGainedAsChaosPerCost", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9233, + }, + ["tradeHashes"] = { + [4117005593] = { + "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsCold1"] = { + "Gain 25% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain 25% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsCold2"] = { + "Gain (10-20)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (10-20)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsFire1"] = { + "Gain (40-60)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 69, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (40-60)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsFire2"] = { + "Gain 25% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain 25% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsFire3"] = { + "Gain (30-50)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (30-50)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsFirePerBlock1"] = { + "Gain 1% of damage as Fire damage per 1% Chance to Block", + ["affix"] = "", + ["group"] = "DamageGainedAsFirePerBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9234, + }, + ["tradeHashes"] = { + [3170380905] = { + "Gain 1% of damage as Fire damage per 1% Chance to Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageGainedAsLightning1"] = { + "Gain 25% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain 25% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { + "Damage over Time cannot bypass your Energy Shield", + ["affix"] = "", + ["group"] = "UniqueDamageOvertimeDoesNotBypassEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 10393, + }, + ["tradeHashes"] = { + [2886108529] = { + "Damage over Time cannot bypass your Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamagePerElementalAilment1"] = { + "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", + ["affix"] = "", + ["group"] = "DamagePerElementalAilmentOnEnemy", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 5954, + }, + ["tradeHashes"] = { + [3388405805] = { + "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamagePerMinion1"] = { + "(5-8)% increased Damage per Minion", + ["affix"] = "", + ["group"] = "DamagePerMinion", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 5952, + }, + ["tradeHashes"] = { + [3399499561] = { + "(5-8)% increased Damage per Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageRemovedFromCompanion1"] = { + "15% of Damage from Hits is taken from your Damageable Companion's Life before you", + ["affix"] = "", + ["group"] = "DamageRemovedFromCompanion", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5730, + }, + ["tradeHashes"] = { + [1150343007] = { + "15% of Damage from Hits is taken from your Damageable Companion's Life before you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageRemovedFromManaBeforeLife1"] = { + "50% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "50% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageRemovedFromManaBeforeLife2"] = { + "(10-20)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(10-20)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageRemovedFromManaBeforeLife3"] = { + "100% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "100% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageTakenGainedAsLife1"] = { + "(5-30)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(5-30)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageTakenGainedAsLife2"] = { + "(10-20)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-20)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageTakenGoesToMana1"] = { + "50% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "50% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDamageTakenGoesToMana2"] = { + "(5-30)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(5-30)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDecimatingStrike1"] = { + "Decimating Strike", + ["affix"] = "", + ["group"] = "DecimatingStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6100, + }, + ["tradeHashes"] = { + [3872034802] = { + "Decimating Strike", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDefendWithArmourPerEnergyShield1"] = { + "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", + ["affix"] = "", + ["group"] = "DefendWithArmourPerEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 4424, + }, + ["tradeHashes"] = { + [679087890] = { + "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { + "Defend with (150-200)% of Armour while you have Energy Shield", + ["affix"] = "", + ["group"] = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 6112, + }, + ["tradeHashes"] = { + [1539671749] = { + "Defend with (150-200)% of Armour while you have Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDeflectChanceLuckyOnLowLife1"] = { + "Chance to Deflect is Lucky while on Low Life", + ["affix"] = "", + ["group"] = "DeflectChanceLuckyOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1031, + }, + ["tradeHashes"] = { + [1675120891] = { + "Chance to Deflect is Lucky while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDeflectDamagePrevented1"] = { + "-(12-6)% to amount of Damage Prevented by Deflection", + ["affix"] = "", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "-(12-6)% to amount of Damage Prevented by Deflection", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDeflectionRatingPerMissingEnergyShield1"] = { + "+(70-100) to Deflection Rating per 50 missing Energy Shield", + ["affix"] = "", + ["group"] = "FlatDeflectionRatingPer50MissingEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 10, + }, + ["tradeHashes"] = { + [1207006772] = { + "+(70-100) to Deflection Rating per 50 missing Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDesecratedModEffect1"] = { + "(60-80)% increased Desecrated Modifier magnitudes", + ["affix"] = "", + ["group"] = "UniqueDesecratedModEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 50, + }, + ["tradeHashes"] = { + [586037801] = { + "(60-80)% increased Desecrated Modifier magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDespairGemLevel1"] = { + "+4 to Level of Despair Skills", + ["affix"] = "", + ["group"] = "DespairGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1982, + }, + ["tradeHashes"] = { + [2157870819] = { + "+4 to Level of Despair Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity1"] = { + "+(30-50) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(30-50) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity10"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity11"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity12"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity13"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity14"] = { + "+(0-10) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(0-10) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity15"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity16"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity17"] = { + "+10 to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+10 to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity18"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity19"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity2"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity20"] = { + "+(10-15) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-15) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity21"] = { + "+5 to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+5 to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity22"] = { + "+(30-40) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(30-40) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity23"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity24"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity25"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity26"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity27"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity28"] = { + "+(5-15) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(5-15) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity29"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity3"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity30"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity31"] = { + "+(15-25) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(15-25) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity32"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity33"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity34"] = { + "+(15-25) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(15-25) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity35"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity36"] = { + "+(30-40) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(30-40) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity37"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity38"] = { + "+(30-40) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(30-40) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity39"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity4"] = { + "+10 to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+10 to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity40"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity41"] = { + "+(15-25) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(15-25) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity42"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity43"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity44"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity45"] = { + "+(13-23) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(13-23) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity46"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity47"] = { + "+(25-35) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(25-35) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity48"] = { + "+(30-50) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(30-50) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity5"] = { + "+(20-40) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-40) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity6"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity7"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity8"] = { + "+(20-30) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(20-30) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterity9"] = { + "+(10-20) to Dexterity", + ["affix"] = "", + ["group"] = "Dexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 993, + }, + ["tradeHashes"] = { + [3261801346] = { + "+(10-20) to Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterityAndIntelligence1"] = { + "+(10-20) to Dexterity and Intelligence", + ["affix"] = "", + ["group"] = "DexterityAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 997, + }, + ["tradeHashes"] = { + [2300185227] = { + "+(10-20) to Dexterity and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterityInherentBonusChange1"] = { + "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", + ["affix"] = "", + ["group"] = "DexterityInherentBonusChange", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1759, + }, + ["tradeHashes"] = { + [597008938] = { + "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDexterityRequirements1"] = { + "+50 Dexterity Requirement", + ["affix"] = "", + ["group"] = "DexterityRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 818, + }, + ["tradeHashes"] = { + [1133453872] = { + "+50 Dexterity Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDisableChestSlot1"] = { + "Can't use Body Armour", + ["affix"] = "", + ["group"] = "DisableChestSlot", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2364, + }, + ["tradeHashes"] = { + [4007482102] = { + "Can't use Body Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDisableShieldSkills1"] = { + "Cannot use Shield Skills", + ["affix"] = "", + ["group"] = "DisableShieldSkills", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10625, + }, + ["tradeHashes"] = { + [65135897] = { + "Cannot use Shield Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDisablesOtherRingSlot1"] = { + "Can't use other Rings", + ["affix"] = "", + ["group"] = "DisablesOtherRingSlot", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1473, + }, + ["tradeHashes"] = { + [64726306] = { + "Can't use other Rings", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDivineFlight1"] = { + "Divine Flight", + ["affix"] = "", + ["group"] = "DivineFlight", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10754, + }, + ["tradeHashes"] = { + [2971398565] = { + "Divine Flight", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDivineFragments1"] = { + "Create a Fragment of Divinity in your Presence every 4 seconds", + ["affix"] = "", + ["group"] = "DivineFragments", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8033, + }, + ["tradeHashes"] = { + [891466814] = { + "Create a Fragment of Divinity in your Presence every 4 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDodgeRollAvoidAllDamage1"] = { + "Dodge Roll avoids all Hits", + ["affix"] = "", + ["group"] = "DodgeRollAvoidAllDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6201, + }, + ["tradeHashes"] = { + [3518087336] = { + "Dodge Roll avoids all Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDodgeRollDistance1"] = { + "+1 metre to Dodge Roll distance", + ["affix"] = "", + ["group"] = "DodgeRollDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6200, + }, + ["tradeHashes"] = { + [258119672] = { + "+1 metre to Dodge Roll distance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDodgeRollPhasing1"] = { + "Dodge Roll passes through Enemies", + ["affix"] = "", + ["group"] = "DodgeRollPhasing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6202, + }, + ["tradeHashes"] = { + [1298316550] = { + "Dodge Roll passes through Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDodgeRollSpeed1"] = { + "(20-30)% faster Dodge Roll", + ["affix"] = "", + ["group"] = "DodgeRollSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6203, + }, + ["tradeHashes"] = { + [504054855] = { + "(20-30)% faster Dodge Roll", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleAccuracyRating1"] = { + "Accuracy Rating is Doubled", + ["affix"] = "", + ["group"] = "AccuracyRatingIsDoubled", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4141, + }, + ["tradeHashes"] = { + [2161347476] = { + "Accuracy Rating is Doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleArmourEffect1"] = { + "Defend with 200% of Armour", + ["affix"] = "", + ["group"] = "DoubleArmourEffect", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 6211, + }, + ["tradeHashes"] = { + [3387008487] = { + "Defend with 200% of Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleEnergyGain1"] = { + "Energy Generation is doubled", + ["affix"] = "", + ["group"] = "DoubleEnergyGain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6415, + }, + ["tradeHashes"] = { + [793801176] = { + "Energy Generation is doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleIgniteChance1"] = { + "Flammability Magnitude is doubled", + ["affix"] = "", + ["group"] = "DoubleIgniteChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5546, + }, + ["tradeHashes"] = { + [1540254896] = { + "Flammability Magnitude is doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleOnKillEffects1"] = { + "On-Kill Effects happen twice", + ["affix"] = "", + ["group"] = "DoubleOnKillEffects", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9361, + }, + ["tradeHashes"] = { + [259470957] = { + "On-Kill Effects happen twice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoublePresenceRadius1"] = { + "Presence Radius is doubled", + ["affix"] = "", + ["group"] = "DoublePresenceRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10397, + }, + ["tradeHashes"] = { + [1810907437] = { + "Presence Radius is doubled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { + "Double Stun Threshold while Shield is Raised", + ["affix"] = "", + ["group"] = "DoubleStunThresholdWhileActiveBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7828, + }, + ["tradeHashes"] = { + [3686997387] = { + "Double Stun Threshold while Shield is Raised", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDrainManaHealLife1"] = { + "Damage over Time bypasses your Energy Shield", + "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", + ["affix"] = "", + ["group"] = "DrainManaHealLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10668, + 10668.1, + }, + ["tradeHashes"] = { + [2894895028] = { + "Damage over Time bypasses your Energy Shield", + "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDuplicatesRingStats1"] = { + "Reflects opposite Ring", + ["affix"] = "", + ["group"] = "DuplicatesRingStats", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2607, + }, + ["tradeHashes"] = { + [746505085] = { + "Reflects opposite Ring", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueDuringRageFlaskEffects__1"] = { + "(15-30)% of Damage taken during effect Recouped as Life", + "Gain (3-5) Rage when Hit by an Enemy during effect", + "No Inherent loss of Rage during effect", + ["affix"] = "", + ["group"] = "DoubleMaximumRageFlask", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 744, + 747, + 758, + }, + ["tradeHashes"] = { + [3464644319] = { + "No Inherent loss of Rage during effect", + }, + [3598623697] = { + "(15-30)% of Damage taken during effect Recouped as Life", + }, + [555311715] = { + "Gain (3-5) Rage when Hit by an Enemy during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEldritchBattery1"] = { + "Eldritch Battery", + ["affix"] = "", + ["group"] = "EldritchBattery", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 10697, + }, + ["tradeHashes"] = { + [2262736444] = { + "Eldritch Battery", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalAilmentDuration1"] = { + "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", + ["affix"] = "", + ["group"] = "ElementalAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7266, + }, + ["tradeHashes"] = { + [1062710370] = { + "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageConvertToChaos1"] = { + "100% of Elemental Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ElementalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9272, + }, + ["tradeHashes"] = { + [2295988214] = { + "100% of Elemental Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageConvertToCold1"] = { + "33% of Elemental Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "ElementalDamageConvertToCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9273, + }, + ["tradeHashes"] = { + [210092264] = { + "33% of Elemental Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageConvertToFire1"] = { + "33% of Elemental Damage Converted to Fire Damage", + ["affix"] = "", + ["group"] = "ElementalDamageConvertToFire", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9274, + }, + ["tradeHashes"] = { + [40154188] = { + "33% of Elemental Damage Converted to Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageConvertToLightning1"] = { + "33% of Elemental Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ElementalDamageConvertToLightning", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9275, + }, + ["tradeHashes"] = { + [289540902] = { + "33% of Elemental Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageFromBlockedHits1"] = { + "You take 100% of Elemental damage from Blocked Hits", + ["affix"] = "", + ["group"] = "ElementalDamageFromBlockedHits", + ["level"] = 1, + ["modTags"] = { + "block", + "elemental", + }, + ["statOrder"] = { + 4942, + }, + ["tradeHashes"] = { + [2393355605] = { + "You take 100% of Elemental damage from Blocked Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageFromHitsContributesToCoreEleAilments1"] = { + "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", + ["affix"] = "", + ["group"] = "ElementalDamageContributesToCoreEleAilments", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 2626, + }, + ["tradeHashes"] = { + [2678924815] = { + "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageGainedAsCold1"] = { + "Gain (5-10)% of Elemental Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "ElementalDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 9266, + }, + ["tradeHashes"] = { + [1158842087] = { + "Gain (5-10)% of Elemental Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageGainedAsFire1"] = { + "Gain (5-10)% of Elemental Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "ElementalDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 9268, + }, + ["tradeHashes"] = { + [701564564] = { + "Gain (5-10)% of Elemental Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageGainedAsLightning1"] = { + "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "ElementalDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 9270, + }, + ["tradeHashes"] = { + [3550887155] = { + "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamagePercent1"] = { + "(15-30)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(15-30)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageTakenAsChaos1"] = { + "20% of Elemental damage from Hits taken as Chaos damage", + ["affix"] = "", + ["group"] = "ElementalDamageTakenAsChaos", + ["level"] = 1, + ["modTags"] = { + "elemental", + "chaos", + }, + ["statOrder"] = { + 2215, + }, + ["tradeHashes"] = { + [1175213674] = { + "20% of Elemental damage from Hits taken as Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalDamageTakenAsPhysical1"] = { + "(20-30)% of Elemental damage from Hits taken as Physical damage", + ["affix"] = "", + ["group"] = "ElementalDamageTakenAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + }, + ["statOrder"] = { + 2214, + }, + ["tradeHashes"] = { + [2340750293] = { + "(20-30)% of Elemental damage from Hits taken as Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalPenetration1"] = { + "Damage Penetrates 10% Elemental Resistances", + ["affix"] = "", + ["group"] = "ElementalPenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 2723, + }, + ["tradeHashes"] = { + [2101383955] = { + "Damage Penetrates 10% Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalPenetrationBelowZero1"] = { + "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + ["affix"] = "", + ["group"] = "ElementalPenetrationBelowZero", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 6299, + }, + ["tradeHashes"] = { + [2890792988] = { + "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalResistancesPerPowerCharge1"] = { + "-10% to all Elemental Resistances per Power Charge", + ["affix"] = "", + ["group"] = "ElementalResistancesPerPowerCharge", + ["level"] = 82, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 1481, + }, + ["tradeHashes"] = { + [2593644209] = { + "-10% to all Elemental Resistances per Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueElementalWeaknessGemLevel1"] = { + "+4 to Level of Elemental Weakness Skills", + ["affix"] = "", + ["group"] = "ElementalWeaknessGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1983, + }, + ["tradeHashes"] = { + [3709513762] = { + "+4 to Level of Elemental Weakness Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnduranceChargeDuration1"] = { + "25% reduced Endurance Charge Duration", + ["affix"] = "", + ["group"] = "EnduranceChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1864, + }, + ["tradeHashes"] = { + [1170174456] = { + "25% reduced Endurance Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesBlockedAreIntimidated1"] = { + "Permanently Intimidate enemies on Block", + ["affix"] = "", + ["group"] = "EnemiesBlockedAreIntimidated", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9428, + }, + ["tradeHashes"] = { + [2930706364] = { + "Permanently Intimidate enemies on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { + "Intimidate Enemies on Block for 8 seconds", + ["affix"] = "", + ["group"] = "EnemiesBlockedAreIntimidatedDuration", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 7379, + }, + ["tradeHashes"] = { + [3703496511] = { + "Intimidate Enemies on Block for 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { + "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + ["affix"] = "", + ["group"] = "EnemiesChilledIncreasedDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6338, + }, + ["tradeHashes"] = { + [1816894864] = { + "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesIgniteChaosDamage1"] = { + "Ignite you inflict deals Chaos Damage instead of Fire Damage", + ["affix"] = "", + ["group"] = "EnemiesIgniteChaosDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1076, + }, + ["tradeHashes"] = { + [983582600] = { + "Ignite you inflict deals Chaos Damage instead of Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceBlinded1"] = { + "Enemies in your Presence are Blinded", + ["affix"] = "", + ["group"] = "EnemiesInPresenceBlinded", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6354, + }, + ["tradeHashes"] = { + [1464727508] = { + "Enemies in your Presence are Blinded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceFireExposure1"] = { + "Enemies in your Presence have -25% to Fire Resistance", + ["affix"] = "", + ["group"] = "EnemiesInPresenceElementalExposure", + ["level"] = 66, + ["modTags"] = { + }, + ["statOrder"] = { + 6363, + }, + ["tradeHashes"] = { + [990363519] = { + "Enemies in your Presence have -25% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceGainCritWeakness1"] = { + "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", + ["affix"] = "", + ["group"] = "EnemiesInPresenceGainCritWeakness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6361, + }, + ["tradeHashes"] = { + [1052498387] = { + "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { + "Enemies in your Presence gain 1 Gruelling Madness each second", + ["affix"] = "", + ["group"] = "EnemiesInPresenceGainGruelingMadnessEachSecond", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6360, + }, + ["tradeHashes"] = { + [3628041050] = { + "Enemies in your Presence gain 1 Gruelling Madness each second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { + "Enemies in your Presence have additional Power equal to their Gruelling Madness", + ["affix"] = "", + ["group"] = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9132, + }, + ["tradeHashes"] = { + [1827379101] = { + "Enemies in your Presence have additional Power equal to their Gruelling Madness", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceGainedAsChaos1"] = { + "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "EnemiesInPresenceGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 6367, + }, + ["tradeHashes"] = { + [1224838456] = { + "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { + "Enemies in your Presence have Exposure", + ["affix"] = "", + ["group"] = "EnemiesInPresenceHaveExposure", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "aura", + }, + ["statOrder"] = { + 6362, + }, + ["tradeHashes"] = { + [724806967] = { + "Enemies in your Presence have Exposure", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceIntimidate1"] = { + "Enemies in your Presence are Intimidated", + ["affix"] = "", + ["group"] = "EnemiesInPresenceIntimidate", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 6356, + }, + ["tradeHashes"] = { + [3491722585] = { + "Enemies in your Presence are Intimidated", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceLowLife1"] = { + "Enemies in your Presence count as being on Low Life", + ["affix"] = "", + ["group"] = "EnemiesInPresenceLowLife", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 6358, + }, + ["tradeHashes"] = { + [1285684287] = { + "Enemies in your Presence count as being on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceLowestResistance1"] = { + "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + ["affix"] = "", + ["group"] = "EnemiesInPresenceLowestResistance", + ["level"] = 69, + ["modTags"] = { + "elemental", + "aura", + }, + ["statOrder"] = { + 6359, + }, + ["tradeHashes"] = { + [2786852525] = { + "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceMonsterPower1"] = { + "Enemies in your Presence count as having double Power", + ["affix"] = "", + ["group"] = "EnemiesInPresenceMonsterPower", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 10423, + }, + ["tradeHashes"] = { + [2836928993] = { + "Enemies in your Presence count as having double Power", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceNoElementalResist1"] = { + "Enemies in your Presence have no Elemental Resistances", + ["affix"] = "", + ["group"] = "EnemiesInPresenceNoElementalResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + "aura", + }, + ["statOrder"] = { + 6364, + }, + ["tradeHashes"] = { + [83011992] = { + "Enemies in your Presence have no Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesInPresenceReservesLife1"] = { + "Enemies in your Presence have at least 10% of Life Reserved", + ["affix"] = "", + ["group"] = "EnemiesInPresenceReservesLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10391, + }, + ["tradeHashes"] = { + [1953536251] = { + "Enemies in your Presence have at least 10% of Life Reserved", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesKilledCountAsYours1"] = { + "20% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + "Enemies in your Presence killed by anyone count as being killed by you instead", + ["affix"] = "", + ["group"] = "EnemiesKilledCountAsYours", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 943, + 943.1, + 6095, + }, + ["tradeHashes"] = { + [1576794517] = { + "Enemies in your Presence killed by anyone count as being killed by you instead", + }, + [1602191394] = { + "20% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { + "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + ["affix"] = "", + ["group"] = "EnemiesTakeIncreasedDamagePerAilmentType", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6260, + 6260.1, + }, + ["tradeHashes"] = { + [1509533589] = { + "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", + "your Ailments on them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemyAccuracyDistanceFalloff1"] = { + "Enemies have an Accuracy Penalty against you based on Distance", + ["affix"] = "", + ["group"] = "EnemyAccuracyDistanceFalloff", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6407, + }, + ["tradeHashes"] = { + [3868746097] = { + "Enemies have an Accuracy Penalty against you based on Distance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { + "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2338, + }, + ["tradeHashes"] = { + [3753748365] = { + "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { + "Lightning Damage of Enemies Hitting you is Unlucky", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsWithLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 6345, + }, + ["tradeHashes"] = { + [4224965099] = { + "Lightning Damage of Enemies Hitting you is Unlucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { + "Physical Damage of Enemies Hitting you is Unlucky", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsWithPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 6347, + }, + ["tradeHashes"] = { + [2424163939] = { + "Physical Damage of Enemies Hitting you is Unlucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnemyKnockbackDirectionReversed1"] = { + "Knockback direction is reversed", + ["affix"] = "", + ["group"] = "EnemyKnockbackDirectionReversed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2752, + }, + ["tradeHashes"] = { + [281201999] = { + "Knockback direction is reversed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldAppliesElementalReduction1"] = { + "Current Energy Shield also grants Elemental Damage reduction", + ["affix"] = "", + ["group"] = "EnergyShieldAppliesElementalReduction", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5919, + }, + ["tradeHashes"] = { + [2342939473] = { + "Current Energy Shield also grants Elemental Damage reduction", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldAsPercentOfLife1"] = { + "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldAsPercentageOfLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1435, + }, + ["tradeHashes"] = { + [1228337241] = { + "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldCannotBeConverted1"] = { + "Maximum Energy Shield cannot be Converted", + ["affix"] = "", + ["group"] = "EnergyShieldCannotBeConverted", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6420, + }, + ["tradeHashes"] = { + [2104359366] = { + "Maximum Energy Shield cannot be Converted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldConvertedToDivinity1"] = { + "Convert 100% of maximum Energy Shield to maximum Divinity", + ["affix"] = "", + ["group"] = "EnergyShieldConvertedToDivinity", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 5770, + }, + ["tradeHashes"] = { + [2896801635] = { + "Convert 100% of maximum Energy Shield to maximum Divinity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldDelay1"] = { + "(30-50)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(30-50)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldDelay2"] = { + "30% slower start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "30% slower start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldDelay3"] = { + "100% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "100% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldDelay4"] = { + "80% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "80% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldDelay5"] = { + "(30-50)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(30-50)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { + "Recover Energy Shield equal to 2% of Armour when you Block", + ["affix"] = "", + ["group"] = "EnergyShieldGainedOnBlockBasedOnArmour", + ["level"] = 1, + ["modTags"] = { + "block", + "defences", + "energy_shield", + }, + ["statOrder"] = { + 2249, + }, + ["tradeHashes"] = { + [3681057026] = { + "Recover Energy Shield equal to 2% of Armour when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldOvercappedColdResistance1"] = { + "Energy Shield is increased by Uncapped Cold Resistance", + ["affix"] = "", + ["group"] = "EnergyShieldUncappedColdResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6431, + }, + ["tradeHashes"] = { + [2147773348] = { + "Energy Shield is increased by Uncapped Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeOnKill1"] = { + "20% chance for Energy Shield Recharge to start when you Kill an Enemy", + ["affix"] = "", + ["group"] = "EnergyShieldRechargeOnKill", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6449, + }, + ["tradeHashes"] = { + [1618482990] = { + "20% chance for Energy Shield Recharge to start when you Kill an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeOverride1"] = { + "Your base Energy Shield Recharge Delay is 10 seconds", + ["affix"] = "", + ["group"] = "EnergyShieldRechargeOverride", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6437, + }, + ["tradeHashes"] = { + [3091132047] = { + "Your base Energy Shield Recharge Delay is 10 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate1"] = { + "(20-30)% reduced Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(20-30)% reduced Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate2"] = { + "50% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "50% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate3"] = { + "40% reduced Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "40% reduced Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate4"] = { + "(30-50)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(30-50)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate5"] = { + "(50-100)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(50-100)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate6"] = { + "1000% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "1000% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate7"] = { + "(30-50)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(30-50)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRechargeRate8"] = { + "(15-30)% increased Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(15-30)% increased Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnergyShieldRegenerationFromLife1"] = { + "Life Regeneration is applied to Energy Shield instead", + ["affix"] = "", + ["group"] = "EnergyShieldRegenerationFromLife", + ["level"] = 44, + ["modTags"] = { + }, + ["statOrder"] = { + 9727, + }, + ["tradeHashes"] = { + [632761194] = { + "Life Regeneration is applied to Energy Shield instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnfeebleGemLevel1"] = { + "+4 to Level of Enfeeble Skills", + ["affix"] = "", + ["group"] = "EnfeebleGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1984, + }, + ["tradeHashes"] = { + [3948285912] = { + "+4 to Level of Enfeeble Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEnfeebleOnBlockChance1"] = { + "Curse Enemies with Enfeeble on Block", + ["affix"] = "", + ["group"] = "EnfeebleOnBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + "curse", + }, + ["statOrder"] = { + 5933, + }, + ["tradeHashes"] = { + [3830953767] = { + "Curse Enemies with Enfeeble on Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionAppliesToDeflection1"] = { + "Gain Deflection Rating equal to (20-30)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (20-30)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionAppliesToDeflection2"] = { + "Gain Deflection Rating equal to (40-60)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (40-60)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionAppliesToDeflection3"] = { + "Gain Deflection Rating equal to (20-30)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (20-30)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionAppliesToDeflection4"] = { + "Gain Deflection Rating equal to (40-60)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (40-60)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionAppliesToDeflection5"] = { + "Gain Deflection Rating equal to (24-32)% of Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionAppliesToDeflection", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 1028, + }, + ["tradeHashes"] = { + [3033371881] = { + "Gain Deflection Rating equal to (24-32)% of Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionOvercappedLightningResistance1"] = { + "Evasion Rating is increased by Uncapped Lightning Resistance", + ["affix"] = "", + ["group"] = "EvasionUncappedLightningResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6499, + }, + ["tradeHashes"] = { + [419098854] = { + "Evasion Rating is increased by Uncapped Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionRatingDodgeRoll1"] = { + "50% increased Evasion Rating if you've Dodge Rolled Recently", + ["affix"] = "", + ["group"] = "EvasionRatingDodgeRoll", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6506, + }, + ["tradeHashes"] = { + [1040569494] = { + "50% increased Evasion Rating if you've Dodge Rolled Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEvasionRatingPercentOnLowLife1"] = { + "150% increased Global Evasion Rating when on Low Life", + ["affix"] = "", + ["group"] = "EvasionRatingPercentOnLowLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 2315, + }, + ["tradeHashes"] = { + [2695354435] = { + "150% increased Global Evasion Rating when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueEverlastingSacrifice1"] = { + "Everlasting Sacrifice", + ["affix"] = "", + ["group"] = "EverlastingSacrifice", + ["level"] = 1, + ["modTags"] = { + "defences", + "resistance", + }, + ["statOrder"] = { + 10702, + }, + ["tradeHashes"] = { + [145598447] = { + "Everlasting Sacrifice", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueExperienceIncrease1"] = { + "5% increased Experience gain", + ["affix"] = "", + ["group"] = "ExperienceIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1471, + }, + ["tradeHashes"] = { + [3666934677] = { + "5% increased Experience gain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueExtraChaosDamagePerUndeadMinion1"] = { + "Gain 5% of Damage as Chaos Damage per Undead Minion", + ["affix"] = "", + ["group"] = "ExtraChaosDamagePerUndeadMinion", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9239, + }, + ["tradeHashes"] = { + [997343726] = { + "Gain 5% of Damage as Chaos Damage per Undead Minion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireAndColdResPerLightningResItem1"] = { + "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaLightningRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1017, + }, + ["tradeHashes"] = { + [4032948616] = { + "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireAndLightningRestPerColdResItem1"] = { + "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaColdRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1019, + }, + ["tradeHashes"] = { + [3753008264] = { + "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireColdResistance1"] = { + "+(10-20)% to Fire and Cold Resistances", + ["affix"] = "", + ["group"] = "FireColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "cold", + "resistance", + }, + ["statOrder"] = { + 1016, + }, + ["tradeHashes"] = { + [2915988346] = { + "+(10-20)% to Fire and Cold Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageAlsoContributesToBleed1"] = { + "Fire Damage also Contributes to Bleeding Magnitude", + ["affix"] = "", + ["group"] = "FireDamageAlsoContributesToBleed", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2633, + }, + ["tradeHashes"] = { + [1221641885] = { + "Fire Damage also Contributes to Bleeding Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageAvoidance1"] = { + "(10-30)% chance to Avoid Fire Damage from Hits", + ["affix"] = "", + ["group"] = "FireDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 3077, + }, + ["tradeHashes"] = { + [42242677] = { + "(10-30)% chance to Avoid Fire Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageConvertToCold1"] = { + "100% of Fire Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "FireDamageConvertToCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9276, + }, + ["tradeHashes"] = { + [3503160529] = { + "100% of Fire Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageConvertToLightning1"] = { + "100% of Fire damage Converted to Lightning damage", + ["affix"] = "", + ["group"] = "FireDamageConvertToLightning", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9277, + }, + ["tradeHashes"] = { + [2772033465] = { + "100% of Fire damage Converted to Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageOnWeapon1"] = { + "(80-120)% increased Fire Damage", + ["affix"] = "", + ["group"] = "FireDamageWeaponPrefix", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [3962278098] = { + "(80-120)% increased Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamagePercent1"] = { + "(20-30)% increased Fire Damage", + ["affix"] = "", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(20-30)% increased Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamagePercent2"] = { + "(20-40)% increased Fire Damage", + ["affix"] = "", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(20-40)% increased Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageTakenAsCold1"] = { + "(10-20)% of Fire damage taken as Cold damage", + ["affix"] = "", + ["group"] = "FireHitAndDoTDamageTakenAsCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2224, + }, + ["tradeHashes"] = { + [4108426433] = { + "(10-20)% of Fire damage taken as Cold damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireDamageTakenAsPhysical1"] = { + "100% of Fire Damage from Hits taken as Physical Damage", + ["affix"] = "", + ["group"] = "FireDamageTakenAsPhysical", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "fire", + }, + ["statOrder"] = { + 2217, + }, + ["tradeHashes"] = { + [3205239847] = { + "100% of Fire Damage from Hits taken as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireExposureOnShock1"] = { + "Inflict Fire Exposure on Shocking an Enemy", + ["affix"] = "", + ["group"] = "FireExposureOnShock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7347, + }, + ["tradeHashes"] = { + [1538879632] = { + "Inflict Fire Exposure on Shocking an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireLightningResistance1"] = { + "+(10-20)% to Fire and Lightning Resistances", + ["affix"] = "", + ["group"] = "FireLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1018, + }, + ["tradeHashes"] = { + [3441501978] = { + "+(10-20)% to Fire and Lightning Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist1"] = { + "+(30-50)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(30-50)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist10"] = { + "+(15-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist11"] = { + "+(0-10)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(0-10)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist12"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist13"] = { + "+20% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+20% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist14"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist15"] = { + "+(15-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist16"] = { + "+(20-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist17"] = { + "-(15-10)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "-(15-10)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist18"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist19"] = { + "-10% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "-10% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist2"] = { + "+(20-40)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-40)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist20"] = { + "+(15-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist21"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist22"] = { + "+(-30-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(-30-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist23"] = { + "+(10-20)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(10-20)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist24"] = { + "+(-40-40)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(-40-40)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist25"] = { + "+(50-100)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(50-100)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist26"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist27"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist28"] = { + "+(20-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist29"] = { + "+(10-20)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(10-20)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist3"] = { + "+(30-50)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(30-50)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist30"] = { + "+(25-35)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(25-35)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist31"] = { + "+(30-40)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(30-40)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist32"] = { + "+(5-15)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(5-15)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist33"] = { + "+(20-30)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(20-30)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist34"] = { + "+(10-15)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(10-15)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist35"] = { + "+(15-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist4"] = { + "-(20-10)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "-(20-10)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist5"] = { + "+(5-10)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(5-10)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist6"] = { + "+(15-25)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(15-25)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist7"] = { + "+(5-15)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(5-15)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist8"] = { + "+(30-40)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "+(30-40)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResist9"] = { + "-10% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [3372524247] = { + "-10% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResistOnLowLife1"] = { + "+25% to Fire Resistance while on Low Life", + ["affix"] = "", + ["group"] = "FireResistOnLowLife", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1015, + }, + ["tradeHashes"] = { + [38301299] = { + "+25% to Fire Resistance while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireResistanceNoPenalty1"] = { + "Fire Resistance is unaffected by Area Penalties", + ["affix"] = "", + ["group"] = "FireResistanceNoPenalty", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6587, + }, + ["tradeHashes"] = { + [3247805335] = { + "Fire Resistance is unaffected by Area Penalties", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireShocks1"] = { + "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + ["affix"] = "", + ["group"] = "FireShocks", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2610, + }, + ["tradeHashes"] = { + [2949096603] = { + "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFireShrine1"] = { + "Grants effect of Guided Meteoric Shrine", + ["affix"] = "", + ["group"] = "UniqueFireShrine", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 6969, + }, + ["tradeHashes"] = { + [3917429943] = { + "Grants effect of Guided Meteoric Shrine", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlammabilityGemLevel1"] = { + "+4 to Level of Elemental Weakness Skills", + ["affix"] = "", + ["group"] = "ElementalWeaknessGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1983, + }, + ["tradeHashes"] = { + [3709513762] = { + "+4 to Level of Elemental Weakness Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChanceRechargeOnKill1"] = { + "(20-25)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(20-25)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChanceRechargeOnKill2"] = { + "(20-25)% Chance to gain a Charge when you kill an enemy", + ["affix"] = "", + ["group"] = "FlaskChanceRechargeOnKill", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1071, + }, + ["tradeHashes"] = { + [828533480] = { + "(20-25)% Chance to gain a Charge when you kill an enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChanceToNotConsume1"] = { + "50% less Flask Charges used", + ["affix"] = "", + ["group"] = "HuskOfDreamsFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 7231, + }, + ["tradeHashes"] = { + [3749630567] = { + "50% less Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChargesAddedPercent1"] = { + "(30-40)% increased Charges gained", + ["affix"] = "", + ["group"] = "FlaskIncreasedChargesAdded", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1072, + }, + ["tradeHashes"] = { + [3196823591] = { + "(30-40)% increased Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChargesUsed1"] = { + "(100-150)% increased Charges per use", + ["affix"] = "", + ["group"] = "FlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(100-150)% increased Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChargesUsed2"] = { + "(10-15)% reduced Charges per use", + ["affix"] = "", + ["group"] = "FlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(10-15)% reduced Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskChargesUsed3"] = { + "(50-75)% reduced Charges per use", + ["affix"] = "", + ["group"] = "FlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1073, + }, + ["tradeHashes"] = { + [388617051] = { + "(50-75)% reduced Charges per use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskDealChaosDamageNova1"] = { + "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", + ["affix"] = "", + ["group"] = "FlaskDealChaosDamageNova", + ["level"] = 1, + ["modTags"] = { + "flask", + "chaos", + }, + ["statOrder"] = { + 7843, + }, + ["tradeHashes"] = { + [1910039112] = { + "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskDuration__1"] = { + "(25-50)% increased Duration", + ["affix"] = "", + ["group"] = "FlaskUtilityIncreasedDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 932, + }, + ["tradeHashes"] = { + [1256719186] = { + "(25-50)% increased Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { + "Effect is not removed when Unreserved Life is Filled", + ["affix"] = "", + ["group"] = "FlaskEffectNotRemovedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 638, + }, + ["tradeHashes"] = { + [2932359713] = { + "Effect is not removed when Unreserved Life is Filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskEffectNotRemovedOnFullLife__2"] = { + "Effect is not removed when Unreserved Life is Filled", + ["affix"] = "", + ["group"] = "FlaskEffectNotRemovedOnFullLife", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 638, + }, + ["tradeHashes"] = { + [2932359713] = { + "Effect is not removed when Unreserved Life is Filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { + "Effect is not removed when Unreserved Mana is Filled", + "(200-250)% increased Duration", + ["affix"] = "", + ["group"] = "FlaskEffectNotRemovedOnFullMana", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 639, + 932, + }, + ["tradeHashes"] = { + [1256719186] = { + "(200-250)% increased Duration", + }, + [3969608626] = { + "Effect is not removed when Unreserved Mana is Filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskExtraCharges1"] = { + "(30-40)% increased Charges", + ["affix"] = "", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(30-40)% increased Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskExtraCharges2"] = { + "(50-60)% reduced Charges", + ["affix"] = "", + ["group"] = "FlaskIncreasedMaxCharges", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1075, + }, + ["tradeHashes"] = { + [1366840608] = { + "(50-60)% reduced Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskFillChargesPerMinute1"] = { + "Gains (0.15-0.2) Charges per Second", + ["affix"] = "", + ["group"] = "FlaskGainChargePerMinute", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 618, + }, + ["tradeHashes"] = { + [1873752457] = { + "Gains (0.15-0.2) Charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskFullInstantRecovery1"] = { + "Instant Recovery", + ["affix"] = "", + ["group"] = "FlaskFullInstantRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 936, + }, + ["tradeHashes"] = { + [1526933524] = { + "Instant Recovery", + }, + [700317374] = { + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskIncreasedRecoverySpeed1"] = { + "50% reduced Recovery rate", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "50% reduced Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskIncreasedRecoverySpeed2"] = { + "(25-50)% reduced Recovery rate", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "(25-50)% reduced Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskIncreasedRecoverySpeed3"] = { + "70% reduced Recovery rate", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoverySpeed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 938, + }, + ["tradeHashes"] = { + [173226756] = { + "70% reduced Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryEnergyShield1"] = { + "Life Recovery from Flasks also applies to Energy Shield", + ["affix"] = "", + ["group"] = "FlaskLifeRecoveryEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7473, + }, + ["tradeHashes"] = { + [2812872407] = { + "Life Recovery from Flasks also applies to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate1"] = { + "(30-50)% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(30-50)% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate2"] = { + "(40-60)% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(40-60)% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate3"] = { + "(20-30)% reduced Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(20-30)% reduced Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate4"] = { + "(-25-25)% reduced Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(-25-25)% reduced Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate5"] = { + "(20-30)% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(20-30)% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate6"] = { + "(20-30)% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(20-30)% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskLifeRecoveryRate7"] = { + "(15-35)% increased Flask Life Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 898, + }, + ["tradeHashes"] = { + [51994685] = { + "(15-35)% increased Flask Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskManaRecoveryRate1"] = { + "(40-60)% increased Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(40-60)% increased Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskManaRecoveryRate2"] = { + "(-25-25)% reduced Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(-25-25)% reduced Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskManaRecoveryRate3"] = { + "(20-30)% increased Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(20-30)% increased Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskManaRecoveryRate4"] = { + "(20-30)% increased Flask Mana Recovery rate", + ["affix"] = "", + ["group"] = "BeltFlaskManaRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 899, + }, + ["tradeHashes"] = { + [1412217137] = { + "(20-30)% increased Flask Mana Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskMoreLife__1"] = { + "90% less Life Recovered", + ["affix"] = "", + ["group"] = "FlaskMoreLife", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 629, + }, + ["tradeHashes"] = { + [1726753705] = { + "90% less Life Recovered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskOverhealToGuard1"] = { + "Excess Life Recovery added as Guard for 20 seconds", + ["affix"] = "", + ["group"] = "FlaskOverhealToGuard", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7840, + }, + ["tradeHashes"] = { + [636464211] = { + "Excess Life Recovery added as Guard for 20 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskRecoverAllMana1"] = { + "Recover all Mana when Used", + ["affix"] = "", + ["group"] = "FlaskRecoverAllMana", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 7844, + }, + ["tradeHashes"] = { + [1002973905] = { + "Recover all Mana when Used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskRecoveryAmount1"] = { + "(70-80)% reduced Amount Recovered", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(70-80)% reduced Amount Recovered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskRecoveryAmount2"] = { + "(100-150)% increased Amount Recovered", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(100-150)% increased Amount Recovered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskRecoveryAmount3"] = { + "(200-300)% increased Amount Recovered", + ["affix"] = "", + ["group"] = "FlaskIncreasedRecoveryAmount", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 930, + }, + ["tradeHashes"] = { + [700317374] = { + "(200-300)% increased Amount Recovered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskTakeDamageWhenEnds1"] = { + "Deals 25% of current Mana as Chaos Damage to you when Effect ends", + ["affix"] = "", + ["group"] = "FlaskTakeDamageWhenEnds", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 7845, + }, + ["tradeHashes"] = { + [3311259821] = { + "Deals 25% of current Mana as Chaos Damage to you when Effect ends", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskUsedOnPerfectTiming1"] = { + "Used when you release a skill with Perfect Timing", + ["affix"] = "", + ["group"] = "FlaskUseOnPerfectTiming", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 705, + }, + ["tradeHashes"] = { + [3832076641] = { + "Used when you release a skill with Perfect Timing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlaskWardGainedAsGuard1"] = { + "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", + "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", + ["affix"] = "", + ["group"] = "FlaskWardGainedAsGuard", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7702, + 7838, + }, + ["tradeHashes"] = { + [1106321864] = { + "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", + }, + [3069759106] = { + "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlatCooldownRecovery1"] = { + "Skills have -(2-1) seconds to Cooldown", + ["affix"] = "", + ["group"] = "FlatCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10394, + }, + ["tradeHashes"] = { + [396200591] = { + "Skills have -(2-1) seconds to Cooldown", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFlatPhysicalDamageTaken1"] = { + "-30 Physical Damage taken from Hits", + ["affix"] = "", + ["group"] = "FlatPhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1960, + }, + ["tradeHashes"] = { + [321765853] = { + "-30 Physical Damage taken from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFragileRegrowth1"] = { + "Maximum 10 Fragile Regrowth", + "0.5% of maximum Life Regenerated per second per Fragile Regrowth", + "10% increased Mana Regeneration Rate per Fragile Regrowth", + "Lose all Fragile Regrowth when Hit", + "Gain 1 Fragile Regrowth each second", + ["affix"] = "", + ["group"] = "FragileRegrowth", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 4059, + 4060, + 4061, + 4062, + 6870, + }, + ["tradeHashes"] = { + [1173537953] = { + "Maximum 10 Fragile Regrowth", + }, + [1306791873] = { + "Lose all Fragile Regrowth when Hit", + }, + [3175722882] = { + "0.5% of maximum Life Regenerated per second per Fragile Regrowth", + }, + [344174146] = { + "10% increased Mana Regeneration Rate per Fragile Regrowth", + }, + [3841984913] = { + "Gain 1 Fragile Regrowth each second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageIncrease1"] = { + "30% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "30% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageIncrease2"] = { + "(40-50)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(40-50)% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageIncrease3"] = { + "(30-50)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(30-50)% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageIncrease4"] = { + "(20-30)% increased Freeze Buildup", + ["affix"] = "", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(20-30)% increased Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { + "(60-80)% increased Freeze Buildup against Ignited enemies", + ["affix"] = "", + ["group"] = "FreezeDamageIncreaseAgainstIgnited", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 7191, + }, + ["tradeHashes"] = { + [3751467747] = { + "(60-80)% increased Freeze Buildup against Ignited enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeDamageMaximumMana1"] = { + "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", + ["affix"] = "", + ["group"] = "FreezeDamageMaximumMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4169, + }, + ["tradeHashes"] = { + [1435496528] = { + "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFreezeImmunityWhenFrozen1"] = { + "You cannot be Frozen for 6 seconds after being Frozen", + ["affix"] = "", + ["group"] = "FreezeImmunityWhenFrozen", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2653, + }, + ["tradeHashes"] = { + [3612464552] = { + "You cannot be Frozen for 6 seconds after being Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { + "Enemies Frozen by you take 100% increased Damage", + ["affix"] = "", + ["group"] = "FrozenMonstersTakeIncreasedDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2244, + }, + ["tradeHashes"] = { + [849085925] = { + "Enemies Frozen by you take 100% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFullManaThreshold1"] = { + "You count as on Full Mana while at 90% of maximum Mana or above", + ["affix"] = "", + ["group"] = "FullManaThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6698, + }, + ["tradeHashes"] = { + [423304126] = { + "You count as on Full Mana while at 90% of maximum Mana or above", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueFullyArmourBrokenShatterOnKill1"] = { + "Fully Armour Broken enemies you kill with Hits Shatter", + ["affix"] = "", + ["group"] = "FullyArmourBrokenShatterOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9826, + }, + ["tradeHashes"] = { + [3278008231] = { + "Fully Armour Broken enemies you kill with Hits Shatter", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { + "Copy a random Modifier from each enemy in your Presence when", + "you Shapeshift to an Animal form", + "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", + ["affix"] = "", + ["group"] = "ShapeshiftCopyModsInPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6729, + 6729.1, + 6729.2, + }, + ["tradeHashes"] = { + [885925163] = { + "Copy a random Modifier from each enemy in your Presence when", + "you Shapeshift to an Animal form", + "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainArmourEqualToStrength1"] = { + "+1 to Armour per Strength", + ["affix"] = "", + ["group"] = "FacebreakerGainArmourFromStrength", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 6764, + }, + ["tradeHashes"] = { + [1291132817] = { + "+1 to Armour per Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainChargesOnMaximumRage1"] = { + "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", + ["affix"] = "", + ["group"] = "GainChargesOnMaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6709, + }, + ["tradeHashes"] = { + [2284588585] = { + "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainDarkWhispers1"] = { + "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + ["affix"] = "", + ["group"] = "UniqueDarkWhispers", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6773, + }, + ["tradeHashes"] = { + [2482970488] = { + "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { + "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", + " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", + ["affix"] = "", + ["group"] = "UniqueGainDisorderlyConductBuff", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6863, + 6863.1, + }, + ["tradeHashes"] = { + [4128965096] = { + "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", + " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainDruidicProwessOnSpendingXRage1"] = { + "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["affix"] = "", + ["group"] = "GainDruidicProwessOnSpendingXRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6774, + }, + ["tradeHashes"] = { + [1273508088] = { + "Gain 1 Druidic Prowess for every 20 total Rage spent", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainFearIncarnateOnCulling1"] = { + "Gain 1 Fear Incarnate when you Cull a target", + ["affix"] = "", + ["group"] = "GainFearIncarnate", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6932, + }, + ["tradeHashes"] = { + [3775736880] = { + "Gain 1 Fear Incarnate when you Cull a target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { + "Gain Finality for 0.5 seconds per Combo expended when using Skills", + ["affix"] = "", + ["group"] = "GainFinalityForXSecondsPerComboLostBySkills", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6785, + }, + ["tradeHashes"] = { + [4010198893] = { + "Gain Finality for 0.5 seconds per Combo expended when using Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainManaAsExtraArmour1"] = { + "Gain (30-50)% of Maximum Mana as Armour", + ["affix"] = "", + ["group"] = "GainManaAsExtraArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mana", + }, + ["statOrder"] = { + 7968, + }, + ["tradeHashes"] = { + [514290151] = { + "Gain (30-50)% of Maximum Mana as Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainManaAsExtraEnergyShield1"] = { + "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "GainManaAsExtraEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1431, + }, + ["tradeHashes"] = { + [3027830452] = { + "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainMissingLifeBeforeHit1"] = { + "Recover (20-30)% of Missing Life before being Hit by an Enemy", + ["affix"] = "", + ["group"] = "GainMissingLifeBeforeHit", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 9117, + }, + ["tradeHashes"] = { + [1990472846] = { + "Recover (20-30)% of Missing Life before being Hit by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainPercentLifeAsThorns1"] = { + "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", + ["affix"] = "", + ["group"] = "PercentOfMaximumLifeAsPhysicalThorns", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 6819, + }, + ["tradeHashes"] = { + [2163764037] = { + "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainRageOnManaSpent1"] = { + "Gain (5-10) Rage after Spending a total of 200 Mana", + ["affix"] = "", + ["group"] = "GainRageOnManaSpent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6874, + }, + ["tradeHashes"] = { + [3199910734] = { + "Gain (5-10) Rage after Spending a total of 200 Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainRageWhenCrit1"] = { + "Gain 10 Rage when Critically Hit by an Enemy", + ["affix"] = "", + ["group"] = "GainRageWhenCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6876, + }, + ["tradeHashes"] = { + [1466716929] = { + "Gain 10 Rage when Critically Hit by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainRageWhenHit1"] = { + "Gain 5 Rage when Hit by an Enemy", + ["affix"] = "", + ["group"] = "GainRageWhenHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [3292710273] = { + "Gain 5 Rage when Hit by an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainRareMonsterModsOnKill1"] = { + "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + ["affix"] = "", + ["group"] = "GainRareMonsterModsOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2572, + }, + ["tradeHashes"] = { + [2913235441] = { + "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGainXGuardPerComboLostUsingSkills1"] = { + "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", + ["affix"] = "", + ["group"] = "GainXGuardPerComboLostUsingSkills1", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10400, + }, + ["tradeHashes"] = { + [2443032293] = { + "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGiantsBlood1"] = { + "Giant's Blood", + ["affix"] = "", + ["group"] = "GiantsBlood", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10704, + }, + ["tradeHashes"] = { + [1875158664] = { + "Giant's Blood", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalAddedChaosDamage1UNUSED"] = { + "Adds (17-19) to (23-29) Chaos Damage", + ["affix"] = "", + ["group"] = "GlobalAddedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 1287, + }, + ["tradeHashes"] = { + [3531280422] = { + "Adds (17-19) to (23-29) Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalAdditionalCharm1"] = { + "+(1-2) Charm Slot", + ["affix"] = "", + ["group"] = "GlobalAdditionalCharm", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 9316, + }, + ["tradeHashes"] = { + [554899692] = { + "+(1-2) Charm Slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalChanceToBleed1"] = { + "50% chance to inflict Bleeding on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "50% chance to inflict Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalChanceToBleed2"] = { + "(10-20)% chance to inflict Bleeding on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "(10-20)% chance to inflict Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalChanceToBleed3"] = { + "25% chance to inflict Bleeding on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "25% chance to inflict Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalCharmIncreasedDuration1"] = { + "(10-50)% reduced Charm Effect Duration", + ["affix"] = "", + ["group"] = "CharmDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(10-50)% reduced Charm Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalColdSpellGemsLevel1"] = { + "+(5-7) to Level of all Cold Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseColdSpellSkillGemLevelWeapon", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "caster", + "gem", + }, + ["statOrder"] = { + 961, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2254480358] = { + "+(5-7) to Level of all Cold Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalCooldownRecovery1"] = { + "(30-50)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(30-50)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalCooldownRecovery2"] = { + "(20-40)% reduced Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(20-40)% reduced Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalCorruptedSpellSkillLevel1"] = { + "+(3-5) to Level of all Corrupted Spell Skill Gems", + ["affix"] = "", + ["group"] = "GlobalCorruptedSpellSkillLevel1", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 952, + }, + ["tradeHashes"] = { + [2061237517] = { + "+(3-5) to Level of all Corrupted Spell Skill Gems", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalCurseGemLevel1"] = { + "+(1-2) to Level of all Curse Skills", + ["affix"] = "", + ["group"] = "GlobalCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 971, + }, + ["tradeHashes"] = { + [805298720] = { + "+(1-2) to Level of all Curse Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalDefencesPerSocketable1"] = { + "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", + ["affix"] = "", + ["group"] = "GlobalDefencesPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7708, + }, + ["tradeHashes"] = { + [933768533] = { + "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalElementalGemLevel1"] = { + "+(2-4) to Level of all Elemental Skills", + ["affix"] = "", + ["group"] = "GlobalElementalGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 957, + }, + ["tradeHashes"] = { + [2901213448] = { + "+(2-4) to Level of all Elemental Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalEquipmentAttributeRequirements1"] = { + "Equipment has no Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalNoEquipmentAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2331, + }, + ["tradeHashes"] = { + [2480151124] = { + "Equipment has no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalEvasionOnFullLife1"] = { + "100% increased Evasion Rating when on Full Life", + ["affix"] = "", + ["group"] = "GlobalEvasionRatingPercentOnFullLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 6509, + }, + ["tradeHashes"] = { + [88817332] = { + "100% increased Evasion Rating when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalFireGemLevel1"] = { + "+(1-4) to Level of all Fire Skills", + ["affix"] = "", + ["group"] = "GlobalFireGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "gem", + }, + ["statOrder"] = { + 958, + }, + ["tradeHashes"] = { + [599749213] = { + "+(1-4) to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalGemAttributeRequirements1"] = { + "Skill Gems have no Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalNoGemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2332, + }, + ["tradeHashes"] = { + [4245256219] = { + "Skill Gems have no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { + "+(2-3) to Level of all Melee Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMeleeSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+(2-3) to Level of all Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalItemAttributeRequirements1"] = { + "Equipment and Skill Gems have 50% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 50% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalItemAttributeRequirements2"] = { + "Equipment and Skill Gems have 25% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have 25% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalLightningGemLevel1"] = { + "+1 to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "GlobalLightningGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "gem", + }, + ["statOrder"] = { + 962, + }, + ["tradeHashes"] = { + [1147690586] = { + "+1 to Level of all Lightning Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalLightningGemLevel2"] = { + "+(2-4) to Level of all Lightning Skills", + ["affix"] = "", + ["group"] = "GlobalLightningGemLevel", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "gem", + }, + ["statOrder"] = { + 962, + }, + ["tradeHashes"] = { + [1147690586] = { + "+(2-4) to Level of all Lightning Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalMeleeGemLevel1"] = { + "+(1-2) to Level of all Melee Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMeleeSkillGemLevelWeapon", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 966, + }, + ["tradeHashes"] = { + [9187492] = { + "+(1-2) to Level of all Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalMinionSpellSkillGemLevel1"] = { + "+(1-2) to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+(1-2) to Level of all Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalMinionSpellSkillGemLevel2"] = { + "+1 to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+1 to Level of all Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalMinionSpellSkillGemLevel3"] = { + "+(2-3) to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+(2-3) to Level of all Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalProjectileGemLevel1"] = { + "+(1-2) to Level of all Projectile Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseProjectileSkillGemLevelWeapon", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 968, + }, + ["tradeHashes"] = { + [1202301673] = { + "+(1-2) to Level of all Projectile Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalSkillGemLevel1"] = { + "+1 to Level of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 949, + }, + ["tradeHashes"] = { + [4283407333] = { + "+1 to Level of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalSpellGemsLevel1"] = { + "+(1-3) to Level of all Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+(1-3) to Level of all Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGlobalSpellGemsLevel2"] = { + "+3 to Level of all Spell Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseSpellSkillGemLevel", + ["level"] = 82, + ["modTags"] = { + "caster", + "gem", + }, + ["statOrder"] = { + 950, + }, + ["tradeHashes"] = { + [124131830] = { + "+3 to Level of all Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGoldFoundIncrease1"] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGuardFromManaFlask1"] = { + "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", + ["affix"] = "", + ["group"] = "GuardOnManaFlaskUse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10436, + }, + ["tradeHashes"] = { + [2777675751] = { + "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { + "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", + ["affix"] = "", + ["group"] = "GuardOnDodgeFromMissingEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6805, + }, + ["tradeHashes"] = { + [469006068] = { + "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHalvedSpiritReservation1"] = { + "Skills reserve 50% less Spirit", + ["affix"] = "", + ["group"] = "HalvedSpiritReservation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10428, + }, + ["tradeHashes"] = { + [2838161567] = { + "Skills reserve 50% less Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHasOnslaught1"] = { + "Onslaught", + ["affix"] = "", + ["group"] = "HasOnslaught", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3278, + }, + ["tradeHashes"] = { + [1520059289] = { + "Onslaught", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHasSoulEater1"] = { + "Soul Eater", + ["affix"] = "", + ["group"] = "HasSoulEater", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10399, + }, + ["tradeHashes"] = { + [1404607671] = { + "Soul Eater", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHauntedByTheWendigo1"] = { + "The Bodach haunts your Presence", + ["affix"] = "", + ["group"] = "UniqueHauntedByTheWendigo", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10670, + }, + ["tradeHashes"] = { + [3783473032] = { + "The Bodach haunts your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHeraldDamage1"] = { + "Herald Skills deal (50-100)% increased Damage", + ["affix"] = "", + ["group"] = "HeraldDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6028, + }, + ["tradeHashes"] = { + [21071013] = { + "Herald Skills deal (50-100)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHinderEnemiesInPresence1"] = { + "Enemies in your Presence are Hindered", + ["affix"] = "", + ["group"] = "HinderEnemiesInPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4695, + }, + ["tradeHashes"] = { + [2890401248] = { + "Enemies in your Presence are Hindered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHitDamageAgainstEnemiesInPresence1"] = { + "(20-40)% increased Damage with Hits against targets in your Presence", + ["affix"] = "", + ["group"] = "HitDamageAgainstEnemiesInPresence", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7186, + }, + ["tradeHashes"] = { + [4015438188] = { + "(20-40)% increased Damage with Hits against targets in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHitDamageBypassesEnergyShieldWhileBelowHalfEnergyShield1"] = { + "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + ["affix"] = "", + ["group"] = "ESBypassWhileBelowHalfES", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1459, + }, + ["tradeHashes"] = { + [1311130924] = { + "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHitsTreatColdResistance1"] = { + "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", + ["affix"] = "", + ["group"] = "HitsTreatColdResistance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 7222, + }, + ["tradeHashes"] = { + [3455898738] = { + "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHitsTreatFireResistance1"] = { + "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", + ["affix"] = "", + ["group"] = "HitsTreatFireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 7223, + }, + ["tradeHashes"] = { + [3924583393] = { + "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHitsTreatLightningResistance1"] = { + "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", + ["affix"] = "", + ["group"] = "HitsTreatLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7224, + }, + ["tradeHashes"] = { + [3144953722] = { + "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueHypothermiaGemLevel1"] = { + "+4 to Level of Elemental Weakness Skills", + ["affix"] = "", + ["group"] = "ElementalWeaknessGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 1983, + }, + ["tradeHashes"] = { + [3709513762] = { + "+4 to Level of Elemental Weakness Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteChanceIncrease1"] = { + "100% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "100% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteChanceIncrease2"] = { + "100% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "100% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteChanceIncrease3"] = { + "50% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "50% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteChanceIncrease4"] = { + "(30-50)% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(30-50)% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteDuration1"] = { + "(60-75)% reduced Ignite Duration on Enemies", + ["affix"] = "", + ["group"] = "IgniteDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1615, + }, + ["tradeHashes"] = { + [1086147743] = { + "(60-75)% reduced Ignite Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteEffect1"] = { + "(80-100)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(80-100)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteEffect2"] = { + "100% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "100% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteEffect3"] = { + "(10-20)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(10-20)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteEffectAgainstFrozen1"] = { + "(80-100)% increased Magnitude of Ignite against Frozen enemies", + ["affix"] = "", + ["group"] = "IgniteEffectAgainstFrozen", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 7262, + }, + ["tradeHashes"] = { + [3618434982] = { + "(80-100)% increased Magnitude of Ignite against Frozen enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteEnemiesInPresence1"] = { + "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", + ["affix"] = "", + ["group"] = "IgniteEnemiesInPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7259, + }, + ["tradeHashes"] = { + [1433051415] = { + "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgniteImmunityWhenIgnited1"] = { + "You cannot be Ignited for 6 seconds after being Ignited", + ["affix"] = "", + ["group"] = "IgniteImmunityWhenIgnited", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2654, + }, + ["tradeHashes"] = { + [947072590] = { + "You cannot be Ignited for 6 seconds after being Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgnoreHexproof1"] = { + "Curses you inflict can affect Hexproof Enemies", + ["affix"] = "", + ["group"] = "IgnoreHexproof", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2379, + }, + ["tradeHashes"] = { + [1367119630] = { + "Curses you inflict can affect Hexproof Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgnoreHexproof2"] = { + "Curses you inflict can affect Hexproof Enemies", + ["affix"] = "", + ["group"] = "IgnoreHexproof", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2379, + }, + ["tradeHashes"] = { + [1367119630] = { + "Curses you inflict can affect Hexproof Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIgnoreStrengthRequirementsWeapons1"] = { + "Ignore Strength Requirement of Melee Weapons and Melee Skills", + ["affix"] = "", + ["group"] = "IgnoreStrengthRequirementsWeapons", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7271, + }, + ["tradeHashes"] = { + [2583483800] = { + "Ignore Strength Requirement of Melee Weapons and Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueImmobiliseDamageTaken1"] = { + "Enemies Immobilised by you take 20% more Damage", + ["affix"] = "", + ["group"] = "ImmobiliseDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10395, + }, + ["tradeHashes"] = { + [1613322341] = { + "Enemies Immobilised by you take 20% more Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueImmobiliseIncreasedDamageTaken1"] = { + "(30-50)% increased Damage against Immobilised Enemies", + ["affix"] = "", + ["group"] = "ImmobiliseIncreasedDamageTaken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5959, + }, + ["tradeHashes"] = { + [3120508478] = { + "(30-50)% increased Damage against Immobilised Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueImmobiliseThreshold1"] = { + "Immobilise enemies at 50% buildup instead of 100%", + ["affix"] = "", + ["group"] = "ImmobiliseThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5906, + }, + ["tradeHashes"] = { + [4238331303] = { + "Immobilise enemies at 50% buildup instead of 100%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueImpaleOnCriticalHit1"] = { + "Critical Hits inflict Impale", + ["affix"] = "", + ["group"] = "ImpaleOnCriticalHit", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 5821, + }, + ["tradeHashes"] = { + [3058238353] = { + "Critical Hits inflict Impale", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy1"] = { + "+(200-300) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(200-300) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy10"] = { + "+(200-400) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(200-400) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy11"] = { + "+(200-300) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(200-300) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy12"] = { + "+(100-150) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(100-150) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy13"] = { + "+(300-600) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(300-600) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy14"] = { + "-(300-200) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "-(300-200) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy1BigRange"] = { + "+(-200-400) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(-200-400) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy2"] = { + "+(50-100) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(50-100) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy3"] = { + "+(0-60) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(0-60) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy4"] = { + "+(60-100) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(60-100) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy5"] = { + "+(100-150) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(100-150) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy6"] = { + "+(100-150) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(100-150) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy7"] = { + "+(75-125) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(75-125) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy8"] = { + "+(75-125) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(75-125) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracy9"] = { + "+(150-200) to Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracy", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 880, + }, + ["tradeHashes"] = { + [803737631] = { + "+(150-200) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAccuracyPercent1"] = { + "20% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "20% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedArmourPerRage1"] = { + "Every Rage also grants 1% increased Armour", + ["affix"] = "", + ["group"] = "IncreasedArmourPerRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10644, + }, + ["tradeHashes"] = { + [2995914769] = { + "Every Rage also grants 1% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed1"] = { + "(4-6)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(4-6)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed10"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed11"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed12"] = { + "(10-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 65, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed13"] = { + "(1-11)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(1-11)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed14"] = { + "35% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "35% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed15"] = { + "(8-12)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(8-12)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed16"] = { + "(7-17)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(7-17)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed2"] = { + "(4-8)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(4-8)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed3"] = { + "5% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "5% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed4"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed5"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed6"] = { + "(10-15)% reduced Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(10-15)% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed7"] = { + "5% reduced Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "5% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed8"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeed9"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeedFullMana1"] = { + "25% increased Attack Speed while on Full Mana", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedFullMana", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 4559, + }, + ["tradeHashes"] = { + [4145314483] = { + "25% increased Attack Speed while on Full Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedAttackSpeedPerDexterity1"] = { + "1% increased Attack Speed per 20 Dexterity", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeedPerDexterity", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 2324, + }, + ["tradeHashes"] = { + [720908147] = { + "1% increased Attack Speed per 20 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed1"] = { + "(5-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(5-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed10"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed11"] = { + "(20-30)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 71, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(20-30)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed12"] = { + "15% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "15% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed13"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed14"] = { + "(6-8)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(6-8)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed15"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed16"] = { + "(10-20)% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed17"] = { + "(15-30)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 82, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(15-30)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed18"] = { + "(10-20)% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 82, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed19"] = { + "(5-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 82, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(5-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed2"] = { + "(7-10)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(7-10)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed20"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed21"] = { + "(7-13)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(7-13)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed22"] = { + "(8-16)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(8-16)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed2BigRange"] = { + "(-15-15)% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(-15-15)% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed3"] = { + "(15-25)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(15-25)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed4"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed5"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed6"] = { + "(15-25)% reduced Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(15-25)% reduced Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed7"] = { + "(6-12)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(6-12)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed8"] = { + "(10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCastSpeed9"] = { + "(10-15)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(10-15)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCharmChargesGained1"] = { + "(-20-20)% reduced Charm Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(-20-20)% reduced Charm Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedCharmChargesGained2"] = { + "(20-30)% increased Charm Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(20-30)% increased Charm Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { + "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", + ["affix"] = "", + ["group"] = "EnergyGainPercentPerCritRecently", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 6414, + }, + ["tradeHashes"] = { + [1049590848] = { + "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEnergyShield1"] = { + "+(50-100) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "EnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(50-100) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEnergyShield2"] = { + "+(40-60) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "EnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(40-60) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEnergyShield3"] = { + "+(30-40) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "EnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(30-40) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionIfHitRecently1"] = { + "100% increased Evasion Rating if you have been Hit Recently", + ["affix"] = "", + ["group"] = "IncreasedEvasionIfHitRecently", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 3840, + }, + ["tradeHashes"] = { + [1073310669] = { + "100% increased Evasion Rating if you have been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionRating1"] = { + "+(75-125) to Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(75-125) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionRating2"] = { + "+(40-50) to Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(40-50) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionRating3"] = { + "+(100-150) to Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(100-150) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionRating4"] = { + "+100 to Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+100 to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedEvasionRating5"] = { + "+(300-600) to Evasion Rating", + ["affix"] = "", + ["group"] = "EvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 883, + }, + ["tradeHashes"] = { + [2144192055] = { + "+(300-600) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedFlaskChargesGained1"] = { + "100% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "100% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedFlaskChargesGained2"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedFlaskChargesGained3"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedFlaskChargesGained4"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLeftRingBonuses1"] = { + "(20-30)% increased bonuses gained from left Equipped Ring", + ["affix"] = "", + ["group"] = "IncreasedLeftRingBonuses", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6469, + }, + ["tradeHashes"] = { + [513747733] = { + "(20-30)% increased bonuses gained from left Equipped Ring", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife1"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife10"] = { + "+(30-50) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-50) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife11"] = { + "+(50-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(50-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife12"] = { + "+100 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+100 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife13"] = { + "+(40-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife14"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife15"] = { + "+(80-120) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-120) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife16"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife17"] = { + "+(60-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife18"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife19"] = { + "+(80-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife2"] = { + "+1500 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+1500 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife20"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife21"] = { + "+(0-30) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(0-30) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife22"] = { + "+(60-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife23"] = { + "+(80-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife24"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife25"] = { + "+(100-150) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(100-150) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife26"] = { + "+300 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+300 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife27"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife28"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife29"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife3"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife30"] = { + "+(80-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife31"] = { + "+(100-150) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(100-150) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife32"] = { + "+(30-50) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-50) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife33"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife34"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife35"] = { + "+100 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+100 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife36"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife37"] = { + "+(50-150) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(50-150) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife38"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife39"] = { + "+(0-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 81, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(0-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife4"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife40"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife41"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife42"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife43"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife44"] = { + "+(30-50) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-50) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife45"] = { + "+(50-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(50-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife46"] = { + "+(70-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife47"] = { + "+(70-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife48"] = { + "+(100-150) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(100-150) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife49"] = { + "+(80-120) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-120) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife5"] = { + "+(30-50) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-50) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife50"] = { + "+(60-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife51"] = { + "+(120-200) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(120-200) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife52"] = { + "+(25-35) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(25-35) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife53"] = { + "+(80-120) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-120) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife54"] = { + "+100 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+100 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife55"] = { + "+(70-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife56"] = { + "+(60-90) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-90) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife57"] = { + "+(70-120) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-120) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife58"] = { + "+(100-150) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(100-150) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife59"] = { + "+(80-120) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-120) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife6"] = { + "+(30-50) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(30-50) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife62"] = { + "+(75-125) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(75-125) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife7"] = { + "+(80-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(80-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife8"] = { + "+(20-40) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(20-40) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedLife9"] = { + "+(40-60) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(40-60) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { + "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", + ["affix"] = "", + ["group"] = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7921, + }, + ["tradeHashes"] = { + [3874491706] = { + "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana1"] = { + "+(10-20) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(10-20) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana10"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana11"] = { + "+(0-20) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(0-20) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana12"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana13"] = { + "+(50-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana14"] = { + "+(20-30) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-30) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana15"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana16"] = { + "+(50-70) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-70) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana17"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana18"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana19"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana2"] = { + "+(20-30) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-30) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana20"] = { + "+(100-150) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(100-150) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana21"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana22"] = { + "+(80-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana23"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana24"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana25"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana26"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana27"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana28"] = { + "+(80-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana29"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana2BigRange"] = { + "+(-10-40) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(-10-40) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana3"] = { + "+(50-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana30"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana31"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana32"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana33"] = { + "+(50-150) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-150) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana34"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana35"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana36"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana37"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana38"] = { + "+(50-80) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-80) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana39"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana4"] = { + "+(50-70) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-70) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana40"] = { + "+(80-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana41"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana42"] = { + "+(60-90) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-90) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana43"] = { + "+(70-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(70-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana44"] = { + "+(60-80) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-80) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana45"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana46"] = { + "+(35-45) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(35-45) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana47"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana48"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana49"] = { + "+(80-120) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(80-120) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana5"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana50"] = { + "+(50-80) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-80) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana51"] = { + "+(50-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(50-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana52"] = { + "+(100-150) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 82, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(100-150) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana53"] = { + "+(300-400) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(300-400) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana54"] = { + "+(60-100) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(60-100) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana6"] = { + "+(20-40) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(20-40) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana7"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana8"] = { + "+(30-50) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(30-50) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMana9"] = { + "+(40-60) to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1050105434] = { + "+(40-60) to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMaximumDivinity1"] = { + "(0-100)% increased maximum Divinity", + ["affix"] = "", + ["group"] = "IncreasedMaximumDivinity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8856, + }, + ["tradeHashes"] = { + [878697053] = { + "(0-100)% increased maximum Divinity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedMaximumSpiritPercent1"] = { + "(10-15)% increased Spirit", + ["affix"] = "", + ["group"] = "MaximumSpiritPercentage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1417, + }, + ["tradeHashes"] = { + [1416406066] = { + "(10-15)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamagePercent1"] = { + "(10-20)% increased Global Physical Damage", + ["affix"] = "", + ["group"] = "PhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1310194496] = { + "(10-20)% increased Global Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRating1"] = { + "+(100-150) to Armour", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(100-150) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRating2"] = { + "+(100-150) to Armour", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(100-150) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRating3"] = { + "+(100-150) to Armour", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(100-150) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRating4"] = { + "+(150-200) to Armour", + ["affix"] = "", + ["group"] = "PhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 881, + }, + ["tradeHashes"] = { + [809229260] = { + "+(150-200) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(25-50)% increased Armour", + ["affix"] = "", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(25-50)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedPhysicalDamageReductionRatingPercent2"] = { + "(30-50)% increased Armour", + ["affix"] = "", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(30-50)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedRightRingBonuses1"] = { + "(20-30)% increased bonuses gained from right Equipped Ring", + ["affix"] = "", + ["group"] = "IncreasedRightRingBonuses", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6470, + }, + ["tradeHashes"] = { + [3885501357] = { + "(20-30)% increased bonuses gained from right Equipped Ring", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedRingBonuses1"] = { + "(40-80)% increased bonuses gained from Equipped Rings", + ["affix"] = "", + ["group"] = "IncreasedRingBonuses", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6471, + }, + ["tradeHashes"] = { + [2793222406] = { + "(40-80)% increased bonuses gained from Equipped Rings", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSkillSpeed1"] = { + "(10-15)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(10-15)% increased Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSkillSpeed2"] = { + "10% reduced Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "10% reduced Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSkillSpeed3"] = { + "(5-10)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(5-10)% increased Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSkillSpeed4"] = { + "(15-30)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(15-30)% increased Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSkillSpeed5"] = { + "(10-15)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(10-15)% increased Skill Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit1"] = { + "+100 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+100 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit10"] = { + "+(30-40) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(30-40) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit11"] = { + "+(30-50) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(30-50) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit12"] = { + "+(10-30) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(10-30) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit13"] = { + "+(100-150) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(100-150) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit14"] = { + "+50 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+50 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit15"] = { + "+75 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+75 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit2"] = { + "+50 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+50 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit3"] = { + "+50 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+50 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit4"] = { + "+100 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+100 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit5"] = { + "+30 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+30 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit6"] = { + "+(25-35) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(25-35) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit7"] = { + "+(0-20) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(0-20) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit8"] = { + "+50 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+50 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedSpirit9"] = { + "+(20-40) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(20-40) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedStrengthRequirements1"] = { + "50% increased Strength Requirement", + ["affix"] = "", + ["group"] = "IncreasedStrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 828, + }, + ["tradeHashes"] = { + [295075366] = { + "50% increased Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedStunThreshold1"] = { + "20% reduced Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "20% reduced Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedStunThresholdPerRage1"] = { + "Every Rage also grants 1% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThresholdPerRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10656, + }, + ["tradeHashes"] = { + [352044736] = { + "Every Rage also grants 1% increased Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIncreasedTotemLife1"] = { + "(20-30)% reduced Totem Life", + ["affix"] = "", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(20-30)% reduced Totem Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueInflictBleedFireDamage1"] = { + "Bleeding you inflict deals Fire Damage instead of Physical Damage", + ["affix"] = "", + ["group"] = "InflictBleedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 4807, + }, + ["tradeHashes"] = { + [1016759424] = { + "Bleeding you inflict deals Fire Damage instead of Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueInflictGruelingMadnessOnHit1"] = { + "Hits with this Weapon inflict (2-5) Gruelling Madness", + ["affix"] = "", + ["group"] = "InflictGruelingMadnessOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7738, + }, + ["tradeHashes"] = { + [2526112819] = { + "Hits with this Weapon inflict (2-5) Gruelling Madness", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueInstantLifeFlaskOnLowLife1"] = { + "Life Flasks used while on Low Life apply Recovery Instantly", + ["affix"] = "", + ["group"] = "InstantLifeFlaskOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7438, + }, + ["tradeHashes"] = { + [1200347828] = { + "Life Flasks used while on Low Life apply Recovery Instantly", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueInstantLifeFlaskRecovery1"] = { + "Life Recovery from Flasks is instant", + ["affix"] = "", + ["group"] = "InstantLifeFlaskRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7437, + }, + ["tradeHashes"] = { + [720388959] = { + "Life Recovery from Flasks is instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueInstantManaFlaskOnLowMana1"] = { + "Mana Flasks used while on Low Mana apply Recovery Instantly", + ["affix"] = "", + ["group"] = "InstantManaFlaskOnLowMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7980, + }, + ["tradeHashes"] = { + [1839832419] = { + "Mana Flasks used while on Low Mana apply Recovery Instantly", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence1"] = { + "+(30-50) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(30-50) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence10"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence11"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence12"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence13"] = { + "+(10-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence14"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence15"] = { + "+(5-10) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-10) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence16"] = { + "+(40-50) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(40-50) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence17"] = { + "+(0-10) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(0-10) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence18"] = { + "+(10-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence19"] = { + "+(5-10) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-10) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence2"] = { + "+(10-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence20"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence21"] = { + "+(30-40) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(30-40) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence22"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence23"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence24"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence25"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence26"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence27"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence28"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence29"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence3"] = { + "+(5-10) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-10) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence30"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence31"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence32"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence33"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence34"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence35"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence36"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence37"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence38"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence39"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence4"] = { + "+(5-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence40"] = { + "+15 to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+15 to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence41"] = { + "+10 to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+10 to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence42"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence43"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence44"] = { + "+(8-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(8-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence45"] = { + "+(8-15) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(8-15) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence46"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence47"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence48"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence49"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence5"] = { + "+(5-10) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(5-10) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence50"] = { + "+(25-35) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 69, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(25-35) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence51"] = { + "+(15-25) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 69, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(15-25) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence6"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence7"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence8"] = { + "+(10-20) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(10-20) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligence9"] = { + "+(20-30) to Intelligence", + ["affix"] = "", + ["group"] = "Intelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 994, + }, + ["tradeHashes"] = { + [328541901] = { + "+(20-30) to Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligenceInherentBonusChange1"] = { + "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", + ["affix"] = "", + ["group"] = "IntelligenceInherentBonusChange", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1760, + }, + ["tradeHashes"] = { + [1405948943] = { + "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligenceRequirements1"] = { + "+100 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+100 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntelligenceRequirements2"] = { + "+200 Intelligence Requirement", + ["affix"] = "", + ["group"] = "IntelligenceRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 820, + }, + ["tradeHashes"] = { + [2153364323] = { + "+200 Intelligence Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIntimidateOnCurse1"] = { + "Enemies you Curse are Intimidated", + ["affix"] = "", + ["group"] = "IntimidateOnCurse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6389, + }, + ["tradeHashes"] = { + [147006673] = { + "Enemies you Curse are Intimidated", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIronGrip1"] = { + "Iron Grip", + ["affix"] = "", + ["group"] = "IronGrip", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 10710, + }, + ["tradeHashes"] = { + [3528245713] = { + "Iron Grip", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIronReflexes1"] = { + "Iron Reflexes", + ["affix"] = "", + ["group"] = "IronReflexes", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 10711, + }, + ["tradeHashes"] = { + [326965591] = { + "Iron Reflexes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueIronWill1"] = { + "Iron Will", + ["affix"] = "", + ["group"] = "IronWill", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10712, + }, + ["tradeHashes"] = { + [281311123] = { + "Iron Will", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease1"] = { + "(40-50)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(40-50)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease10"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease11"] = { + "(0-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(0-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease12"] = { + "(30-50)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(30-50)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease13"] = { + "(30-50)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(30-50)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease14"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease15"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 50, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease16"] = { + "(30-40)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(30-40)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease17"] = { + "(-25-25)% reduced Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(-25-25)% reduced Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease18"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease19"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease2"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease20"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease21"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease22"] = { + "(15-25)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(15-25)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease23"] = { + "(10-20)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-20)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease3"] = { + "10% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "10% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease4"] = { + "(5-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(5-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease5"] = { + "(50-70)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(50-70)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease6"] = { + "(6-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(6-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease6BigRange"] = { + "(-20-20)% reduced Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(-20-20)% reduced Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease7"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease8"] = { + "(10-15)% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "(10-15)% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemFoundRarityIncrease9"] = { + "10% increased Rarity of Items found", + ["affix"] = "", + ["group"] = "ItemFoundRarityIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 941, + }, + ["tradeHashes"] = { + [3917489142] = { + "10% increased Rarity of Items found", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemRarityOnLowLife1"] = { + "50% increased Rarity of Items found when on Low Life", + ["affix"] = "", + ["group"] = "ItemRarityOnLowLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1467, + }, + ["tradeHashes"] = { + [2929867083] = { + "50% increased Rarity of Items found when on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueItemRarityPerSocketable1"] = { + "10% increased Rarity of Items found per Socket filled", + ["affix"] = "", + ["group"] = "ItemRarityPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7746, + }, + ["tradeHashes"] = { + [313223231] = { + "10% increased Rarity of Items found per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { + "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", + "Passives in radius are Conquered by the Abyssals", + "Desecration makes this item unstable", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 13.2, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", + "Passives in radius are Conquered by the Abyssals", + "Desecration makes this item unstable", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { + "Commissioned (2000-160000) coins to commemorate Cadiro", + "Passives in radius are Conquered by the Eternal Empire", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Commissioned (2000-160000) coins to commemorate Cadiro", + "Passives in radius are Conquered by the Eternal Empire", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { + "Remembrancing (100-8000) songworthy deeds by the line of Vorana", + "Passives in radius are Conquered by the Kalguur", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Remembrancing (100-8000) songworthy deeds by the line of Vorana", + "Passives in radius are Conquered by the Kalguur", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { + "Commanded leadership over (10000-18000) warriors under Kaom", + "Passives in radius are Conquered by the Karui", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Commanded leadership over (10000-18000) warriors under Kaom", + "Passives in radius are Conquered by the Karui", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { + "Denoted service of (500-8000) dekhara in the akhara of Balbala", + "Passives in radius are Conquered by the Maraketh", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Denoted service of (500-8000) dekhara in the akhara of Balbala", + "Passives in radius are Conquered by the Maraketh", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { + "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", + "Passives in radius are Conquered by the Templars", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", + "Passives in radius are Conquered by the Templars", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { + "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", + "Passives in radius are Conquered by the Vaal", + "Historic", + ["affix"] = "", + ["group"] = "UniqueJewelAlternateTreeInRadius", + ["level"] = 1, + ["modTags"] = { + "red_herring", + }, + ["statOrder"] = { + 13, + 13.1, + 10640, + }, + ["tradeHashes"] = { + [3418580811] = { + "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", + "Passives in radius are Conquered by the Vaal", + }, + [3787436548] = { + "Historic", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelGrantsVoicesJewelSockets1"] = { + "Allocates 2 Sinister Jewel sockets", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsVoicesJewelSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10410, + }, + ["tradeHashes"] = { + [3929993388] = { + "Allocates 2 Sinister Jewel sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelGrantsVoicesJewelSockets2"] = { + "Allocates 3 Sinister Jewel sockets", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsVoicesJewelSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10410, + }, + ["tradeHashes"] = { + [3929993388] = { + "Allocates 3 Sinister Jewel sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelGrantsVoicesJewelSockets3"] = { + "Allocates 4 Sinister Jewel sockets", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsVoicesJewelSockets", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10410, + }, + ["tradeHashes"] = { + [3929993388] = { + "Allocates 4 Sinister Jewel sockets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelMeleeToBow"] = { + "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", + ["affix"] = "", + ["group"] = "UniqueJewelMeleeToBow", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 2797, + }, + ["tradeHashes"] = { + [854030602] = { + "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { + "Allocated Small Passive Skills in Radius grant nothing", + ["affix"] = "", + ["group"] = "AllocatedNonNotablesGrantNothing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7750, + }, + ["tradeHashes"] = { + [325204898] = { + "Allocated Small Passive Skills in Radius grant nothing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusChaosResistance"] = { + "+(2-3)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2264240911] = { + "Small Passive Skills in Radius also grant +(2-3)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusColdResistance"] = { + "+(2-4)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [2884937919] = { + "Small Passive Skills in Radius also grant +(2-4)% to Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusDamageAsChaos"] = { + "Gain (2-4)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [2603051299] = { + "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusDamageAsCold"] = { + "Gain (2-4)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [833138896] = { + "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusDamageAsFire"] = { + "Gain (2-4)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [338620903] = { + "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusDamageAsLightning"] = { + "Gain (2-4)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [852470634] = { + "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusFireResistance"] = { + "+(2-4)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [2948688907] = { + "Small Passive Skills in Radius also grant +(2-4)% to Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusFreezeDurationOnSelf"] = { + "(4-6)% reduced Freeze Duration on you", + ["affix"] = "", + ["group"] = "ReducedFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [860443350] = { + "Small Passive Skills in Radius also grant (4-6)% reduced Freeze Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { + "Grants all bonuses of Unallocated Small Passive Skills in Radius", + ["affix"] = "", + ["group"] = "GrantsStatsFromNonNotablesInRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7757, + }, + ["tradeHashes"] = { + [737702863] = { + "Grants all bonuses of Unallocated Small Passive Skills in Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusIgniteDurationOnSelf"] = { + "(4-6)% reduced Ignite Duration on you", + ["affix"] = "", + ["group"] = "ReducedIgniteDurationOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [3474941090] = { + "Small Passive Skills in Radius also grant (4-6)% reduced Ignite Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusIncreasedLife"] = { + "+8 to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [1316656343] = { + "Small Passive Skills in Radius also grant +8 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusIncreasedMana"] = { + "+8 to maximum Mana", + ["affix"] = "", + ["group"] = "IncreasedMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 892, + }, + ["tradeHashes"] = { + [1294464552] = { + "Small Passive Skills in Radius also grant +8 to maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusLife"] = { + "1% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [1809641701] = { + "Small Passive Skills in Radius also grant 1% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusLightningResistance"] = { + "+(2-4)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [3994876825] = { + "Small Passive Skills in Radius also grant +(2-4)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusMana"] = { + "1% increased maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [1247628870] = { + "Small Passive Skills in Radius also grant 1% increased maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusMaxChaosResistance"] = { + "+1% to Maximum Chaos Resistance", + ["affix"] = "", + ["group"] = "MaximumChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1731760476] = { + "Notable Passive Skills in Radius also grant +1% to Maximum Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusMaxColdResistance"] = { + "+1% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [1862508014] = { + "Notable Passive Skills in Radius also grant +1% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusMaxFireResistance"] = { + "+1% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4151994709] = { + "Notable Passive Skills in Radius also grant +1% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusMaxLightningResistance"] = { + "+1% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [2217513089] = { + "Notable Passive Skills in Radius also grant +1% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusPercentDexterity"] = { + "(2-3)% increased Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [2717786748] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusPercentIntelligence"] = { + "(2-3)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [40618390] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusPercentStrenth"] = { + "(2-3)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [1842384813] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusShockDurationOnSelf"] = { + "(4-6)% reduced Shock duration on you", + ["affix"] = "", + ["group"] = "ReducedShockDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [1627878766] = { + "Small Passive Skills in Radius also grant (4-6)% reduced Shock duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelRadiusSpirit"] = { + "+(8-12) to Spirit", + ["affix"] = "", + ["group"] = "JewelSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 895, + }, + ["tradeHashes"] = { + [3991877392] = { + "Notable Passive Skills in Radius also grant +(8-12) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { + "+(1-3) to Level of all 0 Skills", + ["affix"] = "", + ["group"] = "UniqueJewelSpecificSkillLevelBonus", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10412, + }, + ["tradeHashes"] = { + [448592698] = { + "+(1-3) to Level of all 0 Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSpecificSkillLevelBonus2"] = { + "+(1-2) to Level of all 0 Skills", + ["affix"] = "", + ["group"] = "UniqueJewelSpecificSkillLevelBonus", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10412, + }, + ["tradeHashes"] = { + [448592698] = { + "+(1-2) to Level of all 0 Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart1"] = { + "Can Allocate Passive Skills from the Warrior's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartStr", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7754, + }, + ["tradeHashes"] = { + [1359862146] = { + "Can Allocate Passive Skills from the Warrior's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart2"] = { + "Can Allocate Passive Skills from the Ranger's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartDex", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7751, + }, + ["tradeHashes"] = { + [3116298775] = { + "Can Allocate Passive Skills from the Ranger's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart3"] = { + "Can Allocate Passive Skills from the Sorceress's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartInt", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7753, + }, + ["tradeHashes"] = { + [3359496001] = { + "Can Allocate Passive Skills from the Sorceress's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart4"] = { + "Can Allocate Passive Skills from the Mercenary's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartStrDex", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7755, + }, + ["tradeHashes"] = { + [738592688] = { + "Can Allocate Passive Skills from the Mercenary's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart5"] = { + "Can Allocate Passive Skills from the Templar's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartStrInt", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7756, + }, + ["tradeHashes"] = { + [1688294122] = { + "Can Allocate Passive Skills from the Templar's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueJewelSplitPersonalityClassStart6"] = { + "Can Allocate Passive Skills from the Shadow's starting point", + ["affix"] = "", + ["group"] = "UniqueJewelGrantsAlternateClassStartDexInt", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7752, + }, + ["tradeHashes"] = { + [2218479786] = { + "Can Allocate Passive Skills from the Shadow's starting point", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueKilledMonsterItemRarityOnCrit1"] = { + "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + ["affix"] = "", + ["group"] = "KilledMonsterItemRarityOnCrit", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 2416, + }, + ["tradeHashes"] = { + [21824003] = { + "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLeechEnergyShieldInsteadofLife1"] = { + "Life Leech is Converted to Energy Shield Leech", + ["affix"] = "", + ["group"] = "LeechEnergyShieldInsteadofLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 5771, + }, + ["tradeHashes"] = { + [3314050176] = { + "Life Leech is Converted to Energy Shield Leech", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLeechLifeOnSpellCast1"] = { + "Leeches 1% of maximum Life when you Cast a Spell", + ["affix"] = "", + ["group"] = "LeechLifeOnSpellCast", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7459, + }, + ["tradeHashes"] = { + [335699483] = { + "Leeches 1% of maximum Life when you Cast a Spell", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLeftRingSpellProjectilesCannotChain1"] = { + "Left ring slot: Projectiles from Spells cannot Chain", + ["affix"] = "", + ["group"] = "LeftRingSpellProjectilesCannotChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7792, + }, + ["tradeHashes"] = { + [3647242059] = { + "Left ring slot: Projectiles from Spells cannot Chain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLeftRingSpellProjectilesFork1"] = { + "Left ring slot: Projectiles from Spells Fork", + ["affix"] = "", + ["group"] = "LeftRingSpellProjectilesFork", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7793, + }, + ["tradeHashes"] = { + [2437476305] = { + "Left ring slot: Projectiles from Spells Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLessEnemiesToBeSurrounded1"] = { + "Require (2-4) fewer enemies to be Surrounded", + ["affix"] = "", + ["group"] = "LessEnemiesToBeSurrounded1", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9763, + }, + ["tradeHashes"] = { + [2267564181] = { + "Require (2-4) fewer enemies to be Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeConvertedToEnergyShield1"] = { + "35% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "35% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeCost1"] = { + "Skill Mana Costs Converted to Life Costs", + ["affix"] = "", + ["group"] = "LifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "Skill Mana Costs Converted to Life Costs", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeCost2"] = { + "10% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "", + ["group"] = "LifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "10% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeCostAsManaCost1"] = { + "Skills Gain 100% of Mana Cost as Extra Life Cost", + ["affix"] = "", + ["group"] = "LifeCostAsManaCost", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4746, + }, + ["tradeHashes"] = { + [3605834869] = { + "Skills Gain 100% of Mana Cost as Extra Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeCostAsManaCost2"] = { + "Skills Gain 10% of Mana Cost as Extra Life Cost", + ["affix"] = "", + ["group"] = "LifeCostAsManaCost", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4746, + }, + ["tradeHashes"] = { + [3605834869] = { + "Skills Gain 10% of Mana Cost as Extra Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeDegenerationPercentGracePeriod1"] = { + "Lose 5% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeDegenerationPercentGracePeriod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1690, + }, + ["tradeHashes"] = { + [1661347488] = { + "Lose 5% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeDegenerationPercentGracePeriod2"] = { + "Lose 5% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeDegenerationPercentGracePeriod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1690, + }, + ["tradeHashes"] = { + [1661347488] = { + "Lose 5% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeDegenerationPercentGracePeriod3"] = { + "Lose 5% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeDegenerationPercentGracePeriod", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1690, + }, + ["tradeHashes"] = { + [1661347488] = { + "Lose 5% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlaskChargeGeneration1"] = { + "Life Flasks gain 0.25 charges per Second", + ["affix"] = "", + ["group"] = "LifeFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain 0.25 charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlaskChargeGeneration2"] = { + "Life Flasks gain (0.17-0.25) charges per Second", + ["affix"] = "", + ["group"] = "LifeFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain (0.17-0.25) charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlaskChargesToCharms1"] = { + "50% of Charges consumed by used Life Flasks are granted to your Charms", + ["affix"] = "", + ["group"] = "LifeFlaskChargesToCharms", + ["level"] = 70, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 904, + }, + ["tradeHashes"] = { + [2020463573] = { + "50% of Charges consumed by used Life Flasks are granted to your Charms", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlaskNoRecovery1"] = { + "Flasks do not recover Life", + ["affix"] = "", + ["group"] = "LifeFlaskNoRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4710, + }, + ["tradeHashes"] = { + [265717301] = { + "Flasks do not recover Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlaskRecoveryAmount1"] = { + "(40-60)% less Life Flask Recovery", + ["affix"] = "", + ["group"] = "HuskOfDreamsLifeFlaskRecoveryAmount", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10392, + }, + ["tradeHashes"] = { + [1972661424] = { + "(40-60)% less Life Flask Recovery", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlasksApplyToMinions1"] = { + "Your Life Flask also applies to your Minions", + ["affix"] = "", + ["group"] = "LifeFlasksApplyToMinions", + ["level"] = 30, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1920, + }, + ["tradeHashes"] = { + [2397460217] = { + "Your Life Flask also applies to your Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeFlasksOvercapLife1"] = { + "Life Recovery from Flasks can Overflow Maximum Life", + ["affix"] = "", + ["group"] = "LifeFlasksOvercapLife", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 7436, + }, + ["tradeHashes"] = { + [1245896889] = { + "Life Recovery from Flasks can Overflow Maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainPerTarget1"] = { + "Gain 25 Life per Enemy Hit with Attacks", + ["affix"] = "", + ["group"] = "LifeGainPerTarget", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 25 Life per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainPerTarget2"] = { + "Gain 5 Life per Enemy Hit with Attacks", + ["affix"] = "", + ["group"] = "LifeGainPerTarget", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "attack", + }, + ["statOrder"] = { + 1040, + }, + ["tradeHashes"] = { + [2797971005] = { + "Gain 5 Life per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath1"] = { + "Gain 3 Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain 3 Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath10"] = { + "Lose 10 Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Lose 10 Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath11"] = { + "Gain (30-50) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (30-50) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath2"] = { + "Gain 10 Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain 10 Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath3"] = { + "Gain (7-10) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (7-10) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath4"] = { + "Gain (20-30) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (20-30) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath5"] = { + "Gain (20-30) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (20-30) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath6"] = { + "Gain (10-20) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (10-20) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath7"] = { + "Gain (10-15) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (10-15) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath8"] = { + "Gain 30 Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain 30 Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedFromEnemyDeath9"] = { + "Gain (5-10) Life per enemy killed", + ["affix"] = "", + ["group"] = "LifeGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1042, + }, + ["tradeHashes"] = { + [3695891184] = { + "Gain (5-10) Life per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { + "Recover 5% of maximum Life for each Endurance Charge consumed", + ["affix"] = "", + ["group"] = "LifeGainedOnEnduranceChargeConsumed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9666, + }, + ["tradeHashes"] = { + [939832726] = { + "Recover 5% of maximum Life for each Endurance Charge consumed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeech1"] = { + "Leech 5% of Physical Attack Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech 5% of Physical Attack Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeech2"] = { + "Leech 10% of Physical Attack Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1038, + }, + ["tradeHashes"] = { + [2557965901] = { + "Leech 10% of Physical Attack Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { + "Life Leech recovers based on your Lightning damage as well as Physical damage", + ["affix"] = "", + ["group"] = "LifeLeechAlsoBasedOnLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7451, + }, + ["tradeHashes"] = { + [1092555766] = { + "Life Leech recovers based on your Lightning damage as well as Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechAmount1"] = { + "(100-200)% increased amount of Life Leeched", + ["affix"] = "", + ["group"] = "LifeLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(100-200)% increased amount of Life Leeched", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechChaosDamage1"] = { + "Life Leech recovers based on your Chaos damage instead of Physical damage", + ["affix"] = "", + ["group"] = "LifeLeechChaosDamage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7461, + }, + ["tradeHashes"] = { + [825825364] = { + "Life Leech recovers based on your Chaos damage instead of Physical damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechExcessToEnergyShield1"] = { + "Excess Life Recovery from Leech is applied to Energy Shield", + ["affix"] = "", + ["group"] = "LifeLeechExcessToEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7455, + }, + ["tradeHashes"] = { + [999436592] = { + "Excess Life Recovery from Leech is applied to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechLocal1"] = { + "Leeches (5-8)% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (5-8)% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechLocal2"] = { + "Leeches 10% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches 10% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechLocal3"] = { + "Leeches (10-20)% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (10-20)% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechLocal4"] = { + "Leeches (5-10)% of Physical Damage as Life", + ["affix"] = "", + ["group"] = "LifeLeechLocalPermyriad", + ["level"] = 65, + ["modTags"] = { + "resource", + "life", + "physical", + "attack", + }, + ["statOrder"] = { + 1039, + }, + ["tradeHashes"] = { + [55876295] = { + "Leeches (5-10)% of Physical Damage as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechOvercapLife1"] = { + "Life Leech can Overflow Maximum Life", + ["affix"] = "", + ["group"] = "LifeLeechOvercapLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7454, + }, + ["tradeHashes"] = { + [2714890129] = { + "Life Leech can Overflow Maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLeechToAllies1"] = { + "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", + ["affix"] = "", + ["group"] = "LifeLeechToAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7462, + }, + ["tradeHashes"] = { + [3605721598] = { + "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeLossReservesLife1"] = { + "Life that would be lost by taking Damage is instead Reserved", + "until you take no Damage to Life for 3 seconds", + ["affix"] = "", + ["group"] = "LifeLossReservesLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9772, + 9772.1, + }, + ["tradeHashes"] = { + [1777740627] = { + "Life that would be lost by taking Damage is instead Reserved", + "until you take no Damage to Life for 3 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeManaFlaskAnySlot1"] = { + "Life and Mana Flasks can be equipped in either slot", + ["affix"] = "", + ["group"] = "LifeManaFlaskAnySlot", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 7431, + }, + ["tradeHashes"] = { + [932866937] = { + "Life and Mana Flasks can be equipped in either slot", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecharge1"] = { + "Life Recharges", + ["affix"] = "", + ["group"] = "LifeRecharge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4713, + }, + ["tradeHashes"] = { + [3971919056] = { + "Life Recharges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecoupAppliesToEnergyShield1"] = { + "Damage taken Recouped as Life is also Recouped as Energy Shield", + ["affix"] = "", + ["group"] = "LifeRecoupAppliesToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + }, + ["statOrder"] = { + 7471, + }, + ["tradeHashes"] = { + [2432200638] = { + "Damage taken Recouped as Life is also Recouped as Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecoupPerRage1"] = { + "Every 5 Rage also grants 5% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "LifeRecoupPerRage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 10562, + }, + ["tradeHashes"] = { + [1895552497] = { + "Every 5 Rage also grants 5% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecoveryRate1"] = { + "(25-50)% increased Life Recovery rate", + ["affix"] = "", + ["group"] = "LifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1445, + }, + ["tradeHashes"] = { + [3240073117] = { + "(25-50)% increased Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecoveryRate2"] = { + "30% reduced Life Recovery rate", + ["affix"] = "", + ["group"] = "LifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1445, + }, + ["tradeHashes"] = { + [3240073117] = { + "30% reduced Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRecoveryRate3"] = { + "30% reduced Life Recovery rate", + ["affix"] = "", + ["group"] = "LifeRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1445, + }, + ["tradeHashes"] = { + [3240073117] = { + "30% reduced Life Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenPerEnergyShield1"] = { + "Regenerate 0.05 Life per second per Maximum Energy Shield", + ["affix"] = "", + ["group"] = "LifeRegenPerEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7491, + }, + ["tradeHashes"] = { + [3276271783] = { + "Regenerate 0.05 Life per second per Maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration1"] = { + "(10-20) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-20) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration10"] = { + "(15-25) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(15-25) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration11"] = { + "(3-5) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3-5) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration12"] = { + "(6-10) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(6-10) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration13"] = { + "(3-6) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3-6) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration14"] = { + "(10-15) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-15) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration15"] = { + "(3-5) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3-5) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration16"] = { + "(30-60) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(30-60) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration17"] = { + "(10-20) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-20) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration18"] = { + "(10-15) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-15) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration19"] = { + "(8-12) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(8-12) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration2"] = { + "(7-12) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(7-12) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration20"] = { + "(8-12) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(8-12) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration21"] = { + "(5-10) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(5-10) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration22"] = { + "(25-35) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(25-35) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration23"] = { + "(15-30) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(15-30) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration24"] = { + "5 Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "5 Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration3"] = { + "(10-15) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-15) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration4"] = { + "(3-6) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3-6) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration5"] = { + "(0-6) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(0-6) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration6"] = { + "(10-15) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-15) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration7"] = { + "(10-15) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(10-15) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration8"] = { + "(20-25) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(20-25) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegeneration9"] = { + "(3.1-6) Life Regeneration per second", + ["affix"] = "", + ["group"] = "LifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + "resource", + "life", + }, + ["statOrder"] = { + 1034, + }, + ["tradeHashes"] = { + [3325883026] = { + "(3.1-6) Life Regeneration per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { + "Cannot use Life Flasks", + "Non-Unique Life Flasks apply their Effects constantly", + "Recovery from Life Flasks cannot be Instant", + "Recovery from your Life Flasks cannot be applied to anything other than you", + ["affix"] = "", + ["group"] = "HuskOfDreamsLifeRegenFromFlaskRecovery", + ["level"] = 1, + ["modTags"] = { + "flat_life_regen", + }, + ["statOrder"] = { + 9310, + 9310.1, + 9310.2, + 9310.3, + }, + ["tradeHashes"] = { + [1580426064] = { + "Cannot use Life Flasks", + "Non-Unique Life Flasks apply their Effects constantly", + "Recovery from Life Flasks cannot be Instant", + "Recovery from your Life Flasks cannot be applied to anything other than you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationNotApplied1"] = { + "Life Recovery from Regeneration is not applied", + ["affix"] = "", + ["group"] = "LifeRegenerationNotApplied", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7478, + }, + ["tradeHashes"] = { + [3947672598] = { + "Life Recovery from Regeneration is not applied", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationPer10Intelligence1"] = { + "Regenerate 2 Life per second for every 10 Intelligence", + ["affix"] = "", + ["group"] = "LifeRegenerationPer10Intelligence", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7511, + }, + ["tradeHashes"] = { + [1312381104] = { + "Regenerate 2 Life per second for every 10 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationPerSocketable1"] = { + "(8-12) Life Regeneration per second per Socket filled", + ["affix"] = "", + ["group"] = "LifeRegenerationPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7631, + }, + ["tradeHashes"] = { + [332337290] = { + "(8-12) Life Regeneration per second per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationPercent1"] = { + "Regenerate 3% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate 3% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationPercentOnLowLife1"] = { + "Regenerate 3% of maximum Life per second while on Low Life", + ["affix"] = "", + ["group"] = "LifeRegenerationOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1692, + }, + ["tradeHashes"] = { + [3942946753] = { + "Regenerate 3% of maximum Life per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { + "Regenerate 0.5% of maximum Life per second per Endurance Charge", + ["affix"] = "", + ["group"] = "LifeRegenerationPercentPerEnduranceCharge", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1444, + }, + ["tradeHashes"] = { + [989800292] = { + "Regenerate 0.5% of maximum Life per second per Endurance Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationRate1"] = { + "50% increased Life Regeneration rate", + ["affix"] = "", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "50% increased Life Regeneration rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationRate2"] = { + "(-30-30)% reduced Life Regeneration rate", + ["affix"] = "", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "(-30-30)% reduced Life Regeneration rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationWhileIgnited1"] = { + "Regenerate (1-2)% of maximum Life per second while Ignited", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7488, + }, + ["tradeHashes"] = { + [302024054] = { + "Regenerate (1-2)% of maximum Life per second while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLifeRegenerationWhileSurrounded1"] = { + "Regenerate 5% of maximum Life per second while Surrounded", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 7510, + }, + ["tradeHashes"] = { + [2002533190] = { + "Regenerate 5% of maximum Life per second while Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius1"] = { + "25% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius10"] = { + "30% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "30% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius11"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius12"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius13"] = { + "30% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "30% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius14"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius15"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius16"] = { + "(20-30)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(20-30)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius17"] = { + "(15-25)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(15-25)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius18"] = { + "20% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius19"] = { + "10% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "10% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius2"] = { + "20% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius20"] = { + "23% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "23% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius21"] = { + "(30-50)% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 69, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "(30-50)% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius3"] = { + "25% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius4"] = { + "20% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "20% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius5"] = { + "40% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "40% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius6"] = { + "25% reduced Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% reduced Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius7"] = { + "30% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "30% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius8"] = { + "30% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "30% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightRadius9"] = { + "25% increased Light Radius", + ["affix"] = "", + ["group"] = "LightRadius", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 1070, + }, + ["tradeHashes"] = { + [1263695895] = { + "25% increased Light Radius", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageAvoidance1"] = { + "(10-30)% chance to Avoid Lightning Damage from Hits", + ["affix"] = "", + ["group"] = "LightningDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 3079, + }, + ["tradeHashes"] = { + [2889664727] = { + "(10-30)% chance to Avoid Lightning Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageCanElectrocute1"] = { + "Lightning damage from Hits Contributes to Electrocution Buildup", + ["affix"] = "", + ["group"] = "LightningDamageElectrocute", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4714, + }, + ["tradeHashes"] = { + [1017648537] = { + "Lightning damage from Hits Contributes to Electrocution Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageConvertToChaos1"] = { + "100% of Lightning Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ConvertLightningDamageToChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "elemental_damage", + "damage", + "elemental", + "lightning", + "chaos", + }, + ["statOrder"] = { + 1714, + }, + ["tradeHashes"] = { + [2109189637] = { + "100% of Lightning Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageConvertToCold1"] = { + "100% of Lightning Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "LightningDamageConvertToCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1713, + }, + ["tradeHashes"] = { + [3627052716] = { + "100% of Lightning Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageOnWeapon1"] = { + "(80-120)% increased Lightning Damage", + ["affix"] = "", + ["group"] = "LightningDamageWeaponPrefix", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + "no_physical_spell_mods", + }, + ["tradeHashes"] = { + [2231156303] = { + "(80-120)% increased Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageTakenAsCold1"] = { + "(10-20)% of Lightning damage taken as Cold damage", + ["affix"] = "", + ["group"] = "LightningHitAndDoTDamageTakenAsCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2229, + }, + ["tradeHashes"] = { + [3198708642] = { + "(10-20)% of Lightning damage taken as Cold damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageToAttacksPerIntelligence1"] = { + "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", + ["affix"] = "", + ["group"] = "LightningDamageToAttacksPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 8973, + }, + ["tradeHashes"] = { + [3111921451] = { + "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningDamageToBleedingEnemiesCanElectrocute1"] = { + "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", + ["affix"] = "", + ["group"] = "LightningDamageToBleedingEnemiesCanElectrocute", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4283, + }, + ["tradeHashes"] = { + [2700167617] = { + "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningExposureOnCrit1"] = { + "Inflict Lightning Exposure on Critical Hit", + ["affix"] = "", + ["group"] = "LightningExposureOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7349, + }, + ["tradeHashes"] = { + [2665488635] = { + "Inflict Lightning Exposure on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningFreezes1"] = { + "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + ["affix"] = "", + ["group"] = "LightningFreezes", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2612, + }, + ["tradeHashes"] = { + [1011772129] = { + "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist1"] = { + "+(5-10)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(5-10)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist10"] = { + "+(30-40)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(30-40)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist11"] = { + "+(15-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(15-25)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist12"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist13"] = { + "-(40-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "-(40-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist14"] = { + "+(10-15)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(10-15)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist15"] = { + "+(10-15)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(10-15)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist16"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist17"] = { + "+(-30-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(-30-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist18"] = { + "+(-40-40)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(-40-40)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist19"] = { + "+(50-100)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 69, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(50-100)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist2"] = { + "+(15-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(15-25)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist20"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist21"] = { + "+(10-20)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(10-20)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist22"] = { + "+(10-20)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(10-20)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist23"] = { + "+(30-50)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(30-50)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist24"] = { + "+(15-25)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(15-25)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist25"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist26"] = { + "+(25-35)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(25-35)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist27"] = { + "+(5-15)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(5-15)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist28"] = { + "+(20-40)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-40)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist29"] = { + "+(1-33)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(1-33)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist3"] = { + "+(10-20)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(10-20)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist4"] = { + "+(20-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(20-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist5"] = { + "+(30-40)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(30-40)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist6"] = { + "+(30-50)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(30-50)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist7"] = { + "+(30-40)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(30-40)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist8"] = { + "+(15-30)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(15-30)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResist9"] = { + "+(0-10)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(0-10)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResistNoReduction1"] = { + "Lightning Resistance does not affect Lightning damage taken", + ["affix"] = "", + ["group"] = "LightningResistNoReduction", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 7563, + }, + ["tradeHashes"] = { + [3999959974] = { + "Lightning Resistance does not affect Lightning damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningResistanceNoPenalty1"] = { + "Lightning Resistance is unaffected by Area Penalties", + ["affix"] = "", + ["group"] = "LightningResistanceNoPenalty", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7562, + }, + ["tradeHashes"] = { + [3631920880] = { + "Lightning Resistance is unaffected by Area Penalties", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningShrine1"] = { + "Grants effect of Guided Tempest Shrine", + ["affix"] = "", + ["group"] = "UniqueLightningShrine", + ["level"] = 82, + ["modTags"] = { + }, + ["statOrder"] = { + 6970, + }, + ["tradeHashes"] = { + [2800412928] = { + "Grants effect of Guided Tempest Shrine", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLightningSpellsChain1"] = { + "Lightning Skills Chain +1 times", + ["affix"] = "", + ["group"] = "LightningSpellAdditionalChain", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7565, + }, + ["tradeHashes"] = { + [4123841473] = { + "Lightning Skills Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLioneyeDodgeRoll1"] = { + "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", + "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", + ["affix"] = "", + ["group"] = "DodgeRollEnhancedWithTradeOff", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4090, + 4091, + }, + ["tradeHashes"] = { + [3350232544] = { + "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", + }, + [57896763] = { + "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoadCrossbowBoltOnKillPercent1"] = { + "(10-20)% chance to load a bolt into all Crossbow skills on Kill", + ["affix"] = "", + ["group"] = "LoadCrossbowBoltOnKillPercent", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 5561, + }, + ["tradeHashes"] = { + [3823990000] = { + "(10-20)% chance to load a bolt into all Crossbow skills on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage1"] = { + "Adds (8-10) to (15-18) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (8-10) to (15-18) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage2"] = { + "Adds (8-12) to (16-20) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (8-12) to (16-20) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage3"] = { + "Adds (12-16) to (22-25) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (12-16) to (22-25) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage4"] = { + "Adds (8-10) to (13-15) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (8-10) to (13-15) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage5"] = { + "Adds (6-9) to (10-15) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (6-9) to (10-15) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage6"] = { + "Adds (13-18) to (24-29) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (13-18) to (24-29) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage7"] = { + "Adds (24-31) to (36-46) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (24-31) to (36-46) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage8"] = { + "Adds (35-53) to (65-80) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (35-53) to (65-80) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedColdDamage9"] = { + "Adds (150-200) to (350-400) Cold Damage", + ["affix"] = "", + ["group"] = "LocalColdDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 833, + }, + ["tradeHashes"] = { + [1037193709] = { + "Adds (150-200) to (350-400) Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage1"] = { + "Adds (33-41) to (47-53) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (33-41) to (47-53) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage2"] = { + "Adds (4-6) to (8-10) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (4-6) to (8-10) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage3"] = { + "Adds (25-32) to (40-50) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (25-32) to (40-50) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage4"] = { + "Adds (15-21) to (26-32) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (15-21) to (26-32) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage5"] = { + "Adds (76-98) to (126-193) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (76-98) to (126-193) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage6"] = { + "Adds (71-93) to (107-168) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (71-93) to (107-168) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage7"] = { + "Adds (503-589) to (647-713) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (503-589) to (647-713) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage8"] = { + "Adds (83-97) to (123-153) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (83-97) to (123-153) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedFireDamage9"] = { + "Adds (48-59) to (75-97) Fire Damage", + ["affix"] = "", + ["group"] = "LocalFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 832, + }, + ["tradeHashes"] = { + [709508406] = { + "Adds (48-59) to (75-97) Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage1"] = { + "Adds 1 to (80-120) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (80-120) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage10"] = { + "Adds 1 to (110-115) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (110-115) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage11"] = { + "Adds 1 to (200-300) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (200-300) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage12"] = { + "Adds (1-8) to (123-152) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-8) to (123-152) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage2"] = { + "Adds 1 to (40-45) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (40-45) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage3"] = { + "Adds 1 to (50-55) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (50-55) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage4"] = { + "Adds 1 to (60-80) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (60-80) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage5"] = { + "Adds 1 to (19-29) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (19-29) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage6"] = { + "Adds 1 to (300-500) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (300-500) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage7"] = { + "Adds 1 to (43-67) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (43-67) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage8"] = { + "Adds 1 to (193-207) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds 1 to (193-207) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedLightningDamage9"] = { + "Adds (1-5) to (66-90) Lightning Damage", + ["affix"] = "", + ["group"] = "LocalLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 834, + }, + ["tradeHashes"] = { + [3336890334] = { + "Adds (1-5) to (66-90) Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage1"] = { + "Adds (4-6) to (7-10) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (4-6) to (7-10) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage10"] = { + "Adds (13-15) to (22-25) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (13-15) to (22-25) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage11"] = { + "Adds (16-20) to (23-27) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (16-20) to (23-27) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage12"] = { + "Adds (58-65) to (102-110) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (58-65) to (102-110) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage13"] = { + "Adds (30-36) to (75-81) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (30-36) to (75-81) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage14"] = { + "Adds (40-48) to (65-72) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (40-48) to (65-72) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage15"] = { + "Adds (25-35) to (40-50) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (25-35) to (40-50) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage16"] = { + "Adds (11-15) to (18-24) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (11-15) to (18-24) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage17"] = { + "Adds (39-48) to (69-79) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (39-48) to (69-79) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage18"] = { + "Adds (21-26) to (25-31) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (21-26) to (25-31) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage19"] = { + "Adds (13-17) to (22-28) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (13-17) to (22-28) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage2"] = { + "Adds (8-12) to (16-18) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (8-12) to (16-18) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage20"] = { + "Adds (14-26) to (27-32) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (14-26) to (27-32) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage21"] = { + "Adds (14-18) to (30-36) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (14-18) to (30-36) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage22"] = { + "Adds (10-15) to (21-26) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (10-15) to (21-26) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage23"] = { + "Adds (40-52) to (71-82) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (40-52) to (71-82) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage24"] = { + "Adds (14-21) to (25-37) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (14-21) to (25-37) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage25"] = { + "Adds (23-30) to (35-55) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (23-30) to (35-55) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage26"] = { + "Adds (35-47) to (53-79) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (35-47) to (53-79) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage27"] = { + "Adds (16-20) to (23-27) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (16-20) to (23-27) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage3"] = { + "Adds (2-3) to (6-8) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (2-3) to (6-8) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage4"] = { + "Adds (8-12) to (16-20) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (8-12) to (16-20) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage5"] = { + "Adds (10-14) to (16-20) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (10-14) to (16-20) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage6"] = { + "Adds (4-6) to (8-10) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (4-6) to (8-10) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage7"] = { + "Adds (5-7) to (10-12) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (5-7) to (10-12) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage8"] = { + "Adds (12-15) to (22-25) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (12-15) to (22-25) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAddedPhysicalDamage9"] = { + "Adds (18-22) to (24-28) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (18-22) to (24-28) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAllDamageCanChill1"] = { + "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "LocalAllDamageCanChill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7608, + }, + ["tradeHashes"] = { + [2156230257] = { + "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAllDamageCanElectrocute1"] = { + "All damage with this Weapon causes Electrocution buildup", + ["affix"] = "", + ["group"] = "LocalAllDamageCanElectrocute", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7609, + }, + ["tradeHashes"] = { + [1910743684] = { + "All damage with this Weapon causes Electrocution buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAllDamageCanFreeze1"] = { + "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + ["affix"] = "", + ["group"] = "LocalAllDamageCanFreeze", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7610, + }, + ["tradeHashes"] = { + [3761294489] = { + "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAllDamageCanPin1"] = { + "All Damage from Hits with this Weapon Contributes to Pin Buildup", + ["affix"] = "", + ["group"] = "LocalAllDamageCanPin", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7611, + }, + ["tradeHashes"] = { + [4142786792] = { + "All Damage from Hits with this Weapon Contributes to Pin Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAlwaysMinimumOrMaximum1"] = { + "Rolls only the minimum or maximum Damage value for each Damage Type", + ["affix"] = "", + ["group"] = "LocalAlwaysMinimumOrMaximum", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 7656, + }, + ["tradeHashes"] = { + [3108672983] = { + "Rolls only the minimum or maximum Damage value for each Damage Type", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { + "(300-400)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(300-400)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { + "(150-200)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(150-200)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { + "(150-200)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(150-200)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { + "(200-250)% increased Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 854, + }, + ["tradeHashes"] = { + [3523867985] = { + "(200-250)% increased Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalArmourBreakOnDamage1"] = { + "Breaks Armour equal to 40% of damage from Hits with this weapon", + ["affix"] = "", + ["group"] = "LocalArmourBreakOnDamage", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7620, + }, + ["tradeHashes"] = { + [949573361] = { + "Breaks Armour equal to 40% of damage from Hits with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { + "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", + ["affix"] = "", + ["group"] = "WeaponAddedColdDamagePerMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7626, + }, + ["tradeHashes"] = { + [566086661] = { + "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { + "+(60-100) to Evasion Rating", + "+(30-50) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 70, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(30-50) to maximum Energy Shield", + }, + [53045048] = { + "+(60-100) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { + "+(20-25) to Evasion Rating", + "+(10-15) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalBaseEvasionRatingAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 841, + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(10-15) to maximum Energy Shield", + }, + [53045048] = { + "+(20-25) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance1"] = { + "(10-15)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(10-15)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance10"] = { + "(20-30)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(20-30)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance11"] = { + "(10-15)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(10-15)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance12"] = { + "(40-60)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(40-60)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance13"] = { + "30% reduced Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "30% reduced Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance14"] = { + "(10-15)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(10-15)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance15"] = { + "(10-20)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(10-20)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance2"] = { + "(80-100)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(80-100)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance3"] = { + "(15-20)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(15-20)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance4"] = { + "(20-25)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(20-25)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance5"] = { + "(20-30)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(20-30)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance6"] = { + "(40-60)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(40-60)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance7"] = { + "(40-60)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(40-60)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance8"] = { + "(40-60)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(40-60)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBlockChance9"] = { + "(30-50)% increased Block chance", + ["affix"] = "", + ["group"] = "LocalIncreasedBlockPercentage", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 839, + }, + ["tradeHashes"] = { + [2481353198] = { + "(30-50)% increased Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalBreakArmourOnHit1"] = { + "Hits Break (30-50) Armour", + ["affix"] = "", + ["group"] = "LocalBreakArmourOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7616, + }, + ["tradeHashes"] = { + [289086688] = { + "Hits Break (30-50) Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChanceToAggravateBleed1"] = { + "(25-40)% chance to Aggravate Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToAggravateBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 7604, + }, + ["tradeHashes"] = { + [1009412152] = { + "(25-40)% chance to Aggravate Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChanceToBleed1"] = { + "(10-20)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(10-20)% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChanceToBleed2"] = { + "(15-25)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(15-25)% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChanceToBleed3"] = { + "(20-30)% chance to cause Bleeding on Hit", + ["affix"] = "", + ["group"] = "LocalChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2264, + }, + ["tradeHashes"] = { + [1519615863] = { + "(20-30)% chance to cause Bleeding on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChaosDamage1"] = { + "Adds (25-36) to (44-55) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (25-36) to (44-55) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalChaosDamage2"] = { + "Adds (167-201) to (267-333) Chaos damage", + ["affix"] = "", + ["group"] = "LocalChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 1291, + }, + ["tradeHashes"] = { + [2223678961] = { + "Adds (167-201) to (267-333) Chaos damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCritChanceOverride1"] = { + "This Weapon's Critical Hit Chance is 100%", + ["affix"] = "", + ["group"] = "LocalCritChanceOverride", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3466, + }, + ["tradeHashes"] = { + [3384885789] = { + "This Weapon's Critical Hit Chance is 100%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalMultiplier1"] = { + "+(20-25)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(20-25)% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalMultiplier2"] = { + "+(20-30)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(20-30)% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalMultiplier3"] = { + "+(20-30)% to Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 945, + }, + ["tradeHashes"] = { + [2694482655] = { + "+(20-30)% to Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance1"] = { + "+15% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+15% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance10"] = { + "+(5-8)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(5-8)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance11"] = { + "+(5-8)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(5-8)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance12"] = { + "+(4-6)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(4-6)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance2"] = { + "+(3-5)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(3-5)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance3"] = { + "+5% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+5% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance4"] = { + "+(5-10)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(5-10)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance5"] = { + "+5% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+5% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance6"] = { + "+(4-6)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(4-6)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance7"] = { + "+5% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+5% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance8"] = { + "+(5-8)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(5-8)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCriticalStrikeChance9"] = { + "+(4-7)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(4-7)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalCullingStrikeFrozenEnemies1"] = { + "Culling Strike against Frozen Enemies", + ["affix"] = "", + ["group"] = "LocalCullingStrikeFrozenEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7651, + }, + ["tradeHashes"] = { + [1158324489] = { + "Culling Strike against Frozen Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalDazeBuildup1"] = { + "Dazes on Hit", + ["affix"] = "", + ["group"] = "LocalDazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7924, + }, + ["tradeHashes"] = { + [2933846633] = { + "Dazes on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalDoubleStunDamage1"] = { + "Causes Double Stun Buildup", + ["affix"] = "", + ["group"] = "LocalDoubleStunDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7695, + }, + ["tradeHashes"] = { + [769129523] = { + "Causes Double Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalFireExposureOnArmourBreak1"] = { + "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + ["affix"] = "", + ["group"] = "LocalFireExposureOnArmourBreak", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7618, + }, + ["tradeHashes"] = { + [359380213] = { + "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalFreezeOnFullLife1"] = { + "Freezes Enemies that are on Full Life", + ["affix"] = "", + ["group"] = "LocalFreezeOnFullLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7613, + }, + ["tradeHashes"] = { + [2260055669] = { + "Freezes Enemies that are on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy1"] = { + "+(30-50) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(30-50) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy2"] = { + "+(30-50) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(30-50) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy3"] = { + "+(50-70) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(50-70) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy4"] = { + "+(50-100) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(50-100) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy5"] = { + "+(300-400) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(300-400) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy6"] = { + "+(30-50) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(30-50) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy7"] = { + "+(100-150) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(100-150) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAccuracy8"] = { + "+(300-500) to Accuracy Rating", + ["affix"] = "", + ["group"] = "LocalAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 835, + }, + ["tradeHashes"] = { + [691932474] = { + "+(300-500) to Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { + "(30-60)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(30-60)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { + "(80-120)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-120)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { + "(50-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(50-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { + "(80-120)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-120)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { + "(80-120)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-120)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { + "(60-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(60-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { + "(60-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(60-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { + "(333-666)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(333-666)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { + "(240-340)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(240-340)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { + "(70-130)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(70-130)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { + "(80-120)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-120)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { + "(30-50)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(30-50)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { + "(100-150)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(100-150)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { + "(200-300)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(200-300)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { + "(150-200)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-200)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { + "(80-120)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(80-120)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { + "(150-200)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-200)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { + "(100-150)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(100-150)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield26"] = { + "(150-250)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-250)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield27"] = { + "(150-200)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-200)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield28"] = { + "(150-200)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-200)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield29"] = { + "(200-300)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(200-300)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { + "(30-50)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(30-50)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield30"] = { + "(200-300)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(200-300)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { + "(40-60)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(40-60)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { + "(50-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(50-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { + "(50-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(50-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { + "(100-150)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(100-150)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { + "(50-100)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(50-100)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { + "(150-200)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(150-200)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion1"] = { + "(40-60)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(40-60)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion10"] = { + "(20-30)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(20-30)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion11"] = { + "(60-80)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(60-80)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion12"] = { + "(150-200)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(150-200)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion13"] = { + "(50-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(50-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion14"] = { + "(80-120)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(80-120)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion15"] = { + "(50-70)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(50-70)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion16"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion17"] = { + "(60-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(60-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion18"] = { + "(150-200)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(150-200)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion19"] = { + "(50-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(50-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion2"] = { + "(60-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(60-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion20"] = { + "(60-80)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(60-80)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion21"] = { + "(60-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(60-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion22"] = { + "(200-300)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 66, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(200-300)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion23"] = { + "(200-300)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(200-300)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion24"] = { + "(300-450)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(300-450)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion25"] = { + "50% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "50% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion26"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion27"] = { + "(600-800)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(600-800)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion28"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion29"] = { + "(100-200)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-200)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion3"] = { + "(30-50)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(30-50)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion30"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion31"] = { + "(80-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(80-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion32"] = { + "(300-400)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(300-400)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion33"] = { + "(150-250)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(150-250)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion34"] = { + "(120-180)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(120-180)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion4"] = { + "(80-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(80-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion5"] = { + "(150-200)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(150-200)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion6"] = { + "(50-100)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(50-100)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion7"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion8"] = { + "(50-80)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(50-80)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedArmourAndEvasion9"] = { + "(100-150)% increased Armour and Evasion", + ["affix"] = "", + ["group"] = "LocalArmourAndEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 850, + }, + ["tradeHashes"] = { + [2451402625] = { + "(100-150)% increased Armour and Evasion", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed1"] = { + "10% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "10% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed10"] = { + "(5-30)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(5-30)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed11"] = { + "(20-30)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(20-30)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed12"] = { + "20% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "20% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed13"] = { + "(10-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed14"] = { + "10% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "10% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed15"] = { + "50% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "50% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed16"] = { + "(10-15)% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed17"] = { + "(10-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed18"] = { + "10% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "10% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed19"] = { + "(10-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed2"] = { + "100% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "100% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed20"] = { + "(10-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed21"] = { + "(15-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(15-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed22"] = { + "10% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "10% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed23"] = { + "(7-16)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(7-16)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed24"] = { + "(7-13)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(7-13)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed25"] = { + "(10-15)% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed26"] = { + "(15-20)% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(15-20)% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed27"] = { + "(10-16)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-16)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed28"] = { + "(14-22)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(14-22)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed29"] = { + "(6-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(6-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed3"] = { + "(15-30)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(15-30)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed30"] = { + "(8-14)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(8-14)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed31"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed32"] = { + "(12-22)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(12-22)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed33"] = { + "(5-10)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(5-10)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed4"] = { + "10% reduced Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "10% reduced Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed5"] = { + "(10-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed6"] = { + "(10-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed7"] = { + "(10-15)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(10-15)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed8"] = { + "(30-40)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(30-40)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedAttackSpeed9"] = { + "(15-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "LocalIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 946, + }, + ["tradeHashes"] = { + [210067635] = { + "(15-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield1"] = { + "+(10-20) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(10-20) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield10"] = { + "+(20-30) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(20-30) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield11"] = { + "+20 to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+20 to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield12"] = { + "+(20-30) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(20-30) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield13"] = { + "+(30-50) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(30-50) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield14"] = { + "+(20-30) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(20-30) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield15"] = { + "+(60-100) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(60-100) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield16"] = { + "+(100-200) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(100-200) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield17"] = { + "+(75-150) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(75-150) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield18"] = { + "+(30-50) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(30-50) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield2"] = { + "+(100-150) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(100-150) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield3"] = { + "+100 to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+100 to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield4"] = { + "+(40-60) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(40-60) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield5"] = { + "+(0-20) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(0-20) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield6"] = { + "+(10-20) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(10-20) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield7"] = { + "+(30-40) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(30-40) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield8"] = { + "+(80-120) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 66, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(80-120) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShield9"] = { + "+(100-150) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 80, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(100-150) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent1"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent10"] = { + "(50-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent11"] = { + "(100-150)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-150)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent12"] = { + "(100-150)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-150)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent13"] = { + "(100-200)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-200)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent14"] = { + "(50-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent15"] = { + "(50-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent16"] = { + "(100-140)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-140)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent17"] = { + "(100-150)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-150)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent18"] = { + "(120-160)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(120-160)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent19"] = { + "(50-70)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-70)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent2"] = { + "(50-80)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-80)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent20"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent21"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent22"] = { + "(70-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(70-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent23"] = { + "(100-140)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-140)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent24"] = { + "(80-120)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(80-120)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent25"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent26"] = { + "(100-140)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-140)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent27"] = { + "(150-200)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(150-200)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent28"] = { + "(100-150)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(100-150)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent3"] = { + "(50-70)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-70)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent4"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent5"] = { + "(40-60)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(40-60)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent6"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent7"] = { + "(30-50)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(30-50)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent8"] = { + "(50-80)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(50-80)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEnergyShieldPercent9"] = { + "(60-100)% increased Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 849, + }, + ["tradeHashes"] = { + [4015621042] = { + "(60-100)% increased Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { + "(30-50)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(30-50)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { + "(100-150)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(100-150)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { + "(60-80)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(60-80)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { + "(400-500)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 70, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(400-500)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { + "(60-120)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(60-120)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { + "(100-150)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(100-150)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { + "(60-100)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(60-100)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { + "(150-200)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(150-200)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { + "(50-70)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(50-70)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { + "(150-200)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(150-200)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { + "(1-111)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(1-111)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { + "(30-60)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(30-60)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield20"] = { + "(200-300)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(200-300)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { + "(150-200)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(150-200)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { + "(30-50)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(30-50)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { + "(50-80)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(50-80)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { + "(30-50)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(30-50)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { + "(100-150)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(100-150)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { + "(40-60)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(40-60)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { + "(60-80)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(60-80)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating1"] = { + "+(30-50) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(30-50) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating2"] = { + "+(50-70) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(50-70) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating3"] = { + "+(0-30) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(0-30) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating4"] = { + "+(15-25) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(15-25) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating5"] = { + "+(20-30) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(20-30) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRating6"] = { + "+(20-30) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(20-30) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent1"] = { + "(80-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(80-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent10"] = { + "(50-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent11"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent12"] = { + "(60-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(60-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent13"] = { + "(100-140)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-140)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent14"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent15"] = { + "(80-120)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(80-120)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent16"] = { + "(150-200)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(150-200)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent17"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent18"] = { + "(80-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(80-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent19"] = { + "(250-300)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(250-300)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent2"] = { + "(50-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent20"] = { + "(50-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent21"] = { + "(50-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent22"] = { + "(60-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(60-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent23"] = { + "(60-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(60-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent24"] = { + "(70-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(70-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent25"] = { + "(100-300)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-300)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent26"] = { + "(100-200)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-200)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent27"] = { + "(50-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent28"] = { + "(60-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(60-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent29"] = { + "(50-80)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-80)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent3"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent30"] = { + "(60-100)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(60-100)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent31"] = { + "(50-70)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(50-70)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent32"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent33"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent34"] = { + "(80-120)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(80-120)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent35"] = { + "(210-240)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(210-240)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent36"] = { + "(200-300)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(200-300)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent4"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent5"] = { + "50% reduced Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "50% reduced Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent6"] = { + "(30-50)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(30-50)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent7"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent8"] = { + "(40-60)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(40-60)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedEvasionRatingPercent9"] = { + "(100-150)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRatingIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 848, + }, + ["tradeHashes"] = { + [124859000] = { + "(100-150)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { + "(200-300)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(200-300)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { + "(80-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { + "(250-350)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(250-350)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { + "(150-200)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(150-200)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { + "(120-150)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(120-150)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { + "(150-240)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(150-240)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { + "(250-300)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(250-300)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { + "(600-700)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(600-700)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { + "(70-100)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(70-100)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { + "(90-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(90-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { + "(250-300)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(250-300)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { + "(100-150)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(100-150)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { + "(100-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(100-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent21"] = { + "(150-250)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(150-250)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent22"] = { + "(80-100)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-100)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent23"] = { + "(60-90)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(60-90)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent24"] = { + "(300-400)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(300-400)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent25"] = { + "(200-300)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(200-300)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent26"] = { + "(80-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent27"] = { + "(240-300)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(240-300)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { + "(120-160)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(120-160)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { + "(80-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { + "(80-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { + "(80-120)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(80-120)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { + "(40-60)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(40-60)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { + "(100-150)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(100-150)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { + "(300-350)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(300-350)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { + "+(0-40) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(0-40) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { + "+(40-60) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(40-60) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { + "+(15-25) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(15-25) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { + "+(50-70) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(50-70) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { + "+20 to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+20 to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating6"] = { + "+(100-150) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(100-150) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { + "(60-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { + "(50-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { + "(150-200)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(150-200)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { + "(400-500)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(400-500)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { + "(50-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { + "(50-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { + "(100-150)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(100-150)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { + "(100-150)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(100-150)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { + "(60-80)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-80)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { + "(100-150)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(100-150)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { + "(120-160)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(120-160)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { + "(100-150)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(100-150)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { + "(150-200)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(150-200)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { + "(60-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { + "(60-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { + "(300-400)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(300-400)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { + "(200-300)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 75, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(200-300)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { + "(60-120)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-120)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { + "(80-120)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(80-120)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { + "(60-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { + "(100-150)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(100-150)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { + "(80-120)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(80-120)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { + "(500-600)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(500-600)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { + "(150-200)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(150-200)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent31"] = { + "(350-450)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(350-450)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent32"] = { + "(150-200)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(150-200)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { + "(50-80)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-80)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { + "(30-60)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(30-60)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { + "(60-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(60-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { + "(50-100)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-100)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { + "(50-80)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(50-80)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { + "(30-50)% increased Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 846, + }, + ["tradeHashes"] = { + [1062208444] = { + "(30-50)% increased Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedProjectileSpeed1"] = { + "(20-30)% increased Projectile Speed with this Weapon", + ["affix"] = "", + ["group"] = "LocalIncreasedProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7815, + }, + ["tradeHashes"] = { + [535217483] = { + "(20-30)% increased Projectile Speed with this Weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedRuneEffect1"] = { + "200% increased effect of Socketed Runes", + ["affix"] = "", + ["group"] = "LocalIncreasedRuneEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 176, + }, + ["tradeHashes"] = { + [704409219] = { + "200% increased effect of Socketed Runes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedSpiritPercent1"] = { + "(30-50)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(30-50)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedSpiritPercent2"] = { + "(30-50)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(30-50)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedSpiritPercent3"] = { + "(25-35)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(25-35)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalIncreasedSpiritPercent4"] = { + "(50-75)% increased Spirit", + ["affix"] = "", + ["group"] = "LocalIncreasedSpiritPercent", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 857, + }, + ["tradeHashes"] = { + [3984865854] = { + "(50-75)% increased Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalInfinitePoisonStackCount1"] = { + "Any number of Poisons from this Weapon can affect a target at the same time", + ["affix"] = "", + ["group"] = "LocalInfinitePoisonStackCount", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7731, + }, + ["tradeHashes"] = { + [4021234281] = { + "Any number of Poisons from this Weapon can affect a target at the same time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalKnockback1"] = { + "Knocks Back Enemies on Hit", + ["affix"] = "", + ["group"] = "LocalKnockback", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1415, + }, + ["tradeHashes"] = { + [3739186583] = { + "Knocks Back Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalMaimOnCrit1"] = { + "Maim on Critical Hit", + ["affix"] = "", + ["group"] = "LocalMaimOnCrit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7614, + }, + ["tradeHashes"] = { + [2895144208] = { + "Maim on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoAttributeRequirements1"] = { + "Has no Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalNoAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 823, + }, + ["tradeHashes"] = { + [2739148464] = { + "Has no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoAttributeRequirements2"] = { + "Has no Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalNoAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 823, + }, + ["tradeHashes"] = { + [2739148464] = { + "Has no Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoCriticalStrikeMultiplier1"] = { + "Hits with this Weapon have no Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalNoCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "unmutatable", + "damage", + "critical", + }, + ["statOrder"] = { + 1384, + }, + ["tradeHashes"] = { + [1508661598] = { + "Hits with this Weapon have no Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoCriticalStrikeMultiplier2"] = { + "Hits with this Weapon have no Critical Damage Bonus", + ["affix"] = "", + ["group"] = "LocalNoCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "unmutatable", + "damage", + "critical", + }, + ["statOrder"] = { + 1384, + }, + ["tradeHashes"] = { + [1508661598] = { + "Hits with this Weapon have no Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoWeaponPhysicalDamage1"] = { + "No Physical Damage", + ["affix"] = "", + ["group"] = "LocalNoWeaponPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "No Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoWeaponPhysicalDamage2"] = { + "No Physical Damage", + ["affix"] = "", + ["group"] = "LocalNoWeaponPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "No Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoWeaponPhysicalDamage3"] = { + "No Physical Damage", + ["affix"] = "", + ["group"] = "LocalNoWeaponPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "No Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalNoWeaponPhysicalDamage4"] = { + "No Physical Damage", + ["affix"] = "", + ["group"] = "LocalNoWeaponPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "No Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageAddedAsEachElement", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "attack", + }, + ["statOrder"] = { + 3908, + }, + ["tradeHashes"] = { + [3620731914] = { + "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalPoisonOnHit1"] = { + "Always Poison on Hit with this weapon", + ["affix"] = "", + ["group"] = "LocalChanceToPoisonOnHit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "ailment", + }, + ["statOrder"] = { + 7813, + }, + ["tradeHashes"] = { + [3885634897] = { + "Always Poison on Hit with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalReloadSpeed1"] = { + "30% reduced Reload Speed", + ["affix"] = "", + ["group"] = "LocalReloadSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 947, + }, + ["tradeHashes"] = { + [710476746] = { + "30% reduced Reload Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalReloadSpeed2"] = { + "(7-14)% increased Reload Speed", + ["affix"] = "", + ["group"] = "LocalReloadSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 947, + }, + ["tradeHashes"] = { + [710476746] = { + "(7-14)% increased Reload Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalRunicWard1"] = { + "+(50-100) to maximum Runic Ward", + ["affix"] = "", + ["group"] = "LocalRunicWard", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 845, + }, + ["tradeHashes"] = { + [774059442] = { + "+(50-100) to maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromBoots", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 78, + }, + ["tradeHashes"] = { + [150590298] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromGloves", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 79, + }, + ["tradeHashes"] = { + [3915618954] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromHelmet", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 80, + }, + ["tradeHashes"] = { + [3773763721] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 81, + }, + ["tradeHashes"] = { + [231726304] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalSoulCoreEffect1"] = { + "(66-333)% increased effect of Socketed Soul Cores", + ["affix"] = "", + ["group"] = "LocalSoulCoreEffect", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 179, + }, + ["tradeHashes"] = { + [4065505214] = { + "(66-333)% increased effect of Socketed Soul Cores", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalStunDamageIncrease1"] = { + "Causes (30-50)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (30-50)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalStunDamageIncrease2"] = { + "Causes (150-200)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (150-200)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalStunDamageIncrease3"] = { + "Causes (40-60)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "LocalStunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1052, + }, + ["tradeHashes"] = { + [791928121] = { + "Causes (40-60)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLocalWeaponRangeIncrease1"] = { + "20% increased Melee Strike Range with this weapon", + ["affix"] = "", + ["group"] = "LocalWeaponRangeIncrease", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7600, + }, + ["tradeHashes"] = { + [548198834] = { + "20% increased Melee Strike Range with this weapon", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveAndvarius1"] = { + "(50-70)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + ["affix"] = "", + ["group"] = "LoreweaveAndvariusRarityWithExclusion", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 942, + 942.1, + }, + ["tradeHashes"] = { + [2261942307] = { + "(50-70)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveAndvarius1BigRange"] = { + "(-100-100)% reduced Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + ["affix"] = "", + ["group"] = "LoreweaveAndvariusRarityWithExclusion", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 942, + 942.1, + }, + ["tradeHashes"] = { + [2261942307] = { + "(-100-100)% reduced Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRing"] = { + "(56-85)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + ["affix"] = "", + ["group"] = "LoreweaveAndvariusRarityWithExclusion", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 942, + 942.1, + }, + ["tradeHashes"] = { + [2261942307] = { + "(56-85)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRingBigRange"] = { + "(-100-100)% reduced Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + ["affix"] = "", + ["group"] = "LoreweaveAndvariusRarityWithExclusion", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 942, + 942.1, + }, + ["tradeHashes"] = { + [2261942307] = { + "(-100-100)% reduced Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Shocked Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByShockedGround", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Shocked Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Chilled Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByChilledGround", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Chilled Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByIgnitedGround", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackflameIgniteDealsChaosDamageInstead1"] = { + "Ignite you inflict deals Chaos Damage instead of Fire Damage", + ["affix"] = "", + ["group"] = "EnemiesIgniteChaosDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1076, + }, + ["tradeHashes"] = { + [983582600] = { + "Ignite you inflict deals Chaos Damage instead of Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackflameWitherAlsoIncreasesFireDamage1"] = { + "Withered you inflict also increases Fire Damage taken", + ["affix"] = "", + ["group"] = "WitherInflictedAlsoIncreasesFireDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 4095, + }, + ["tradeHashes"] = { + [1910297038] = { + "Withered you inflict also increases Fire Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { + "Withered does not expire on Enemies Ignited by you", + ["affix"] = "", + ["group"] = "EnemiesIgniteWitherNeverExpires", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 6396, + }, + ["tradeHashes"] = { + [279110104] = { + "Withered does not expire on Enemies Ignited by you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackheart1"] = { + "25% chance to Intimidate Enemies for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "ChanceToIntimidateOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5559, + }, + ["tradeHashes"] = { + [78985352] = { + "25% chance to Intimidate Enemies for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackheart1BigRange"] = { + "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "ChanceToIntimidateOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5559, + }, + ["tradeHashes"] = { + [78985352] = { + "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackheart2"] = { + "+(10-20)% of Armour also applies to Chaos Damage", + ["affix"] = "", + ["group"] = "ArmourPercentAppliesToChaosDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4645, + }, + ["tradeHashes"] = { + [3972229254] = { + "+(10-20)% of Armour also applies to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlackheart2BigRange"] = { + "+(0-30)% of Armour also applies to Chaos Damage", + ["affix"] = "", + ["group"] = "ArmourPercentAppliesToChaosDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4645, + }, + ["tradeHashes"] = { + [3972229254] = { + "+(0-30)% of Armour also applies to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlisteringBond1"] = { + "You take Fire Damage instead of Physical Damage from Bleeding", + ["affix"] = "", + ["group"] = "SelfBleedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 2238, + }, + ["tradeHashes"] = { + [2022332470] = { + "You take Fire Damage instead of Physical Damage from Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlisteringBond2"] = { + "Bleeding you inflict deals Fire Damage instead of Physical Damage", + ["affix"] = "", + ["group"] = "InflictBleedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 4807, + }, + ["tradeHashes"] = { + [1016759424] = { + "Bleeding you inflict deals Fire Damage instead of Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBlisteringBond3"] = { + "Fire Damage also Contributes to Bleeding Magnitude", + ["affix"] = "", + ["group"] = "FireDamageAlsoContributesToBleed", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2633, + }, + ["tradeHashes"] = { + [1221641885] = { + "Fire Damage also Contributes to Bleeding Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBurrower1"] = { + "Lightning Damage of Enemies Hitting you is Unlucky", + ["affix"] = "", + ["group"] = "EnemyExtraDamageRollsWithLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 6345, + }, + ["tradeHashes"] = { + [4224965099] = { + "Lightning Damage of Enemies Hitting you is Unlucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBurstingDecay1"] = { + "Attacks have added Physical damage equal to 3% of maximum Life", + ["affix"] = "", + ["group"] = "PhysicalDamageMaximumLife", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4464, + }, + ["tradeHashes"] = { + [2723294374] = { + "Attacks have added Physical damage equal to 3% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveBurstingDecay1BigRange"] = { + "Attacks have added Physical damage equal to (0-5)% of maximum Life", + ["affix"] = "", + ["group"] = "PhysicalDamageMaximumLife", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4464, + }, + ["tradeHashes"] = { + [2723294374] = { + "Attacks have added Physical damage equal to (0-5)% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveCallBrotherhood1"] = { + "100% of Lightning Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "LightningDamageConvertToCold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1713, + }, + ["tradeHashes"] = { + [3627052716] = { + "100% of Lightning Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveCracklecreep1"] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["affix"] = "", + ["group"] = "RingIgniteProliferation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1947, + }, + ["tradeHashes"] = { + [3314057862] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveDeathRush1"] = { + "You gain Onslaught for 4 seconds on Kill", + ["affix"] = "", + ["group"] = "OnslaughtBuffOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2417, + }, + ["tradeHashes"] = { + [1195849808] = { + "You gain Onslaught for 4 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveDoedres1"] = { + "You can apply an additional Curse", + ["affix"] = "", + ["group"] = "AdditionalCurseOnEnemies", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1909, + }, + ["tradeHashes"] = { + [30642521] = { + "You can apply an additional Curse", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveDreamFragments1"] = { + "You cannot be Chilled or Frozen", + ["affix"] = "", + ["group"] = "CannotBeChilledOrFrozen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1593, + }, + ["tradeHashes"] = { + [2996245527] = { + "You cannot be Chilled or Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveEvergrasping1"] = { + "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 4288, + }, + ["tradeHashes"] = { + [4258251165] = { + "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveEvergrasping1BigRange"] = { + "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 4288, + }, + ["tradeHashes"] = { + [4258251165] = { + "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveGiftsAbove1"] = { + "You have Consecrated Ground around you while stationary", + ["affix"] = "", + ["group"] = "ConsecratedGroundStationaryRing", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6895, + }, + ["tradeHashes"] = { + [1736538865] = { + "You have Consecrated Ground around you while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveGlowswarm1"] = { + "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", + ["affix"] = "", + ["group"] = "GuardOnManaFlaskUse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10436, + }, + ["tradeHashes"] = { + [2777675751] = { + "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveGlowswarm1BigRange"] = { + "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", + ["affix"] = "", + ["group"] = "GuardOnManaFlaskUse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10436, + }, + ["tradeHashes"] = { + [2777675751] = { + "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveHeartbound1"] = { + "(200-300) Physical Damage taken on Minion Death", + ["affix"] = "", + ["group"] = "SelfPhysicalDamageOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2762, + }, + ["tradeHashes"] = { + [4176970656] = { + "(200-300) Physical Damage taken on Minion Death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveHeartbound1BigRange"] = { + "(1-1000) Physical Damage taken on Minion Death", + ["affix"] = "", + ["group"] = "SelfPhysicalDamageOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2762, + }, + ["tradeHashes"] = { + [4176970656] = { + "(1-1000) Physical Damage taken on Minion Death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveHeartbound2"] = { + "Minions Revive (10-15)% faster", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (10-15)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveHeartbound2BigRange"] = { + "Minions Revive (-25-25)% slower", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (-25-25)% slower", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveIcefang1"] = { + "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "NonChilledEnemiesPoisonAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4281, + }, + ["tradeHashes"] = { + [1375667591] = { + "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveIcefang2"] = { + "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + ["affix"] = "", + ["group"] = "ChilledWhilePoisoned", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4279, + }, + ["tradeHashes"] = { + [1291285202] = { + "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak1"] = { + "Inflict Abyssal Wasting on Hit", + ["affix"] = "", + ["group"] = "AbyssalWastingOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4127, + }, + ["tradeHashes"] = { + [2646093132] = { + "Inflict Abyssal Wasting on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak10"] = { + "Projectiles have (10-16)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (10-16)% chance to Chain an additional time from terrain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak10BigRange"] = { + "Projectiles have (0-30)% chance to Chain an additional time from terrain", + ["affix"] = "", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (0-30)% chance to Chain an additional time from terrain", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak11"] = { + "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10575, + }, + ["tradeHashes"] = { + [36954843] = { + "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak11BigRange"] = { + "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10575, + }, + ["tradeHashes"] = { + [36954843] = { + "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak12"] = { + "You and Allies in your Presence have +(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceChaosResistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10574, + }, + ["tradeHashes"] = { + [1404134612] = { + "You and Allies in your Presence have +(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak12BigRange"] = { + "You and Allies in your Presence have +(1-37)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceChaosResistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10574, + }, + ["tradeHashes"] = { + [1404134612] = { + "You and Allies in your Presence have +(1-37)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak13"] = { + "You and Allies in your Presence have (11-16)% increased Cast Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCastSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10573, + }, + ["tradeHashes"] = { + [281990982] = { + "You and Allies in your Presence have (11-16)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak13BigRange"] = { + "You and Allies in your Presence have (0-25)% increased Cast Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceCastSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10573, + }, + ["tradeHashes"] = { + [281990982] = { + "You and Allies in your Presence have (0-25)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak14"] = { + "You and Allies in your Presence have (7-12)% increased Attack Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAttackSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10572, + }, + ["tradeHashes"] = { + [3408222535] = { + "You and Allies in your Presence have (7-12)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak14BigRange"] = { + "You and Allies in your Presence have (0-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAttackSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10572, + }, + ["tradeHashes"] = { + [3408222535] = { + "You and Allies in your Presence have (0-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak15"] = { + "You and Allies in your Presence have (20-28)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAccuracyRating", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10570, + }, + ["tradeHashes"] = { + [3429986699] = { + "You and Allies in your Presence have (20-28)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak15BigRange"] = { + "You and Allies in your Presence have (0-50)% increased Accuracy Rating", + ["affix"] = "", + ["group"] = "YouAndAlliesInPresenceAccuracyRating", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10570, + }, + ["tradeHashes"] = { + [3429986699] = { + "You and Allies in your Presence have (0-50)% increased Accuracy Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak2"] = { + "Gain Arcane Surge when a Minion Dies", + ["affix"] = "", + ["group"] = "GainArcaneSurgeOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6745, + }, + ["tradeHashes"] = { + [3625518318] = { + "Gain Arcane Surge when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak3"] = { + "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9686, + }, + ["tradeHashes"] = { + [3503117295] = { + "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak3BigRange"] = { + "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9686, + }, + ["tradeHashes"] = { + [3503117295] = { + "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak4"] = { + "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9688, + }, + ["tradeHashes"] = { + [2456226238] = { + "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak4BigRange"] = { + "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", + ["affix"] = "", + ["group"] = "EnemiesDyingInPresenceRecoverMana", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9688, + }, + ["tradeHashes"] = { + [2456226238] = { + "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak5"] = { + "(6-10)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(6-10)% increased Spirit Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak5BigRange"] = { + "(0-20)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(0-20)% increased Spirit Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak6"] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + ["affix"] = "", + ["group"] = "GainOnslaughtSurgeOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6824, + }, + ["tradeHashes"] = { + [3605616594] = { + "Gain Onslaught for 4 seconds when a Minion Dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak7"] = { + "+(20-25) to Spirit while you have at least 200 Strength", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Strength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10057, + }, + ["tradeHashes"] = { + [3044685077] = { + "+(20-25) to Spirit while you have at least 200 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak7BigRange"] = { + "+(0-40) to Spirit while you have at least 200 Strength", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Strength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10057, + }, + ["tradeHashes"] = { + [3044685077] = { + "+(0-40) to Spirit while you have at least 200 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak8"] = { + "+(20-25) to Spirit while you have at least 200 Intelligence", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Intelligence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10056, + }, + ["tradeHashes"] = { + [1282318918] = { + "+(20-25) to Spirit while you have at least 200 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak8BigRange"] = { + "+(0-40) to Spirit while you have at least 200 Intelligence", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200Intelligence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10056, + }, + ["tradeHashes"] = { + [1282318918] = { + "+(0-40) to Spirit while you have at least 200 Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak9"] = { + "+(20-25) to Spirit while you have at least 200 Dexterity", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200PerDexterity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10055, + }, + ["tradeHashes"] = { + [2694614739] = { + "+(20-25) to Spirit while you have at least 200 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveKulemak9BigRange"] = { + "+(0-40) to Spirit while you have at least 200 Dexterity", + ["affix"] = "", + ["group"] = "FlatSpiritIfAtLeast200PerDexterity", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10055, + }, + ["tradeHashes"] = { + [2694614739] = { + "+(0-40) to Spirit while you have at least 200 Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveLevinstone1"] = { + "Lightning Skills Chain +1 times", + ["affix"] = "", + ["group"] = "LightningSpellAdditionalChain", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7565, + }, + ["tradeHashes"] = { + [4123841473] = { + "Lightning Skills Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveMingsHeart1"] = { + "Gain (10-15)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageAddedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (10-15)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveMingsHeart1BigRange"] = { + "Gain (0-25)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageAddedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (0-25)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveOriginalSin1"] = { + "100% of Elemental Damage Converted to Chaos Damage", + ["affix"] = "", + ["group"] = "ElementalDamageConvertToChaos", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9272, + }, + ["tradeHashes"] = { + [2295988214] = { + "100% of Elemental Damage Converted to Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweavePerandusSeal1"] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweavePerandusSeal1BigRange"] = { + "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweavePolcirkeln1"] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["affix"] = "", + ["group"] = "ChillHitsCauseShattering", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5657, + }, + ["tradeHashes"] = { + [3119292058] = { + "Enemies Chilled by your Hits can be Shattered as though Frozen", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweavePrizedPain1"] = { + "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["affix"] = "", + ["group"] = "ChanceToDealThornsDamageOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10265, + }, + ["tradeHashes"] = { + [2880019685] = { + "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweavePrizedPain1BigRange"] = { + "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["affix"] = "", + ["group"] = "ChanceToDealThornsDamageOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10265, + }, + ["tradeHashes"] = { + [2880019685] = { + "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSeedOfCataclysm1"] = { + "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", + ["affix"] = "", + ["group"] = "ChanceForSpellCriticalHitDamageToBeLucky", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 9993, + }, + ["tradeHashes"] = { + [1133346493] = { + "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { + "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", + ["affix"] = "", + ["group"] = "ChanceForSpellCriticalHitDamageToBeLucky", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 9993, + }, + ["tradeHashes"] = { + [1133346493] = { + "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveCold1"] = { + "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaColdRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1019, + }, + ["tradeHashes"] = { + [3753008264] = { + "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveCold1BigRange"] = { + "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaColdRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1019, + }, + ["tradeHashes"] = { + [3753008264] = { + "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveEmerald1"] = { + "You can only Socket 1 Emerald Jewel in this item", + ["affix"] = "", + ["group"] = "LoreweaveJewelRestrictionEmerald", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 76, + }, + ["tradeHashes"] = { + [853326030] = { + "You can only Socket 1 Emerald Jewel in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveFire1"] = { + "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaFireRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1022, + }, + ["tradeHashes"] = { + [2381897042] = { + "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveFire1BigRange"] = { + "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaFireRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1022, + }, + ["tradeHashes"] = { + [2381897042] = { + "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveLightning1"] = { + "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaLightningRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1017, + }, + ["tradeHashes"] = { + [4032948616] = { + "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveLightning1BigRange"] = { + "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["affix"] = "", + ["group"] = "UniqueSekhemaLightningRingResMod", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 1017, + }, + ["tradeHashes"] = { + [4032948616] = { + "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveRuby1"] = { + "You can only Socket 1 Ruby Jewel in this item", + ["affix"] = "", + ["group"] = "LoreweaveJewelRestrictionRuby", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 76, + }, + ["tradeHashes"] = { + [853326030] = { + "You can only Socket 1 Ruby Jewel in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSekhemasResolveSapphire1"] = { + "You can only Socket 1 Sapphire Jewel in this item", + ["affix"] = "", + ["group"] = "LoreweaveJewelRestrictionSapphire", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 76, + }, + ["tradeHashes"] = { + [853326030] = { + "You can only Socket 1 Sapphire Jewel in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSnakepit1"] = { + "Projectiles from Spells Fork", + ["affix"] = "", + ["group"] = "SpellProjectilesFork", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9567, + }, + ["tradeHashes"] = { + [1199718219] = { + "Projectiles from Spells Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSnakepit2"] = { + "Projectiles from Spells Chain +1 times", + ["affix"] = "", + ["group"] = "SpellProjectilesChainXTimes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9321, + }, + ["tradeHashes"] = { + [1517628125] = { + "Projectiles from Spells Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveSnakepit3"] = { + "Projectiles from Spells cannot Pierce", + ["affix"] = "", + ["group"] = "SpellsCannotPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9566, + }, + ["tradeHashes"] = { + [3826125995] = { + "Projectiles from Spells cannot Pierce", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited, Shocked, and Chilled Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByElementalGrounds", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 10542, + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2070837434] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", + }, + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited, Shocked, and Chilled Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveThiefsTorment1"] = { + "50% reduced Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "50% reduced Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveThiefsTorment1BigRange"] = { + "(-100-100)% reduced Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "(-100-100)% reduced Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVeilpiercer1"] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["affix"] = "", + ["group"] = "CursesSpreadOnKill", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2684, + }, + ["tradeHashes"] = { + [986616727] = { + "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVeilpiercer2"] = { + "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + ["affix"] = "", + ["group"] = "UniqueDarkWhispers", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6773, + }, + ["tradeHashes"] = { + [2482970488] = { + "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVeilpiercer3"] = { + "Curses you inflict can affect Hexproof Enemies", + ["affix"] = "", + ["group"] = "IgnoreHexproof", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2379, + }, + ["tradeHashes"] = { + [1367119630] = { + "Curses you inflict can affect Hexproof Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVenopuncture1"] = { + "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "NonChilledEnemiesBleedAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4280, + }, + ["tradeHashes"] = { + [1717295693] = { + "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVenopuncture2"] = { + "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + ["affix"] = "", + ["group"] = "ChilledWhileBleeding", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4278, + }, + ["tradeHashes"] = { + [2420248029] = { + "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveVigilantView1"] = { + "Enemies have an Accuracy Penalty against you based on Distance", + ["affix"] = "", + ["group"] = "EnemyAccuracyDistanceFalloff", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6407, + }, + ["tradeHashes"] = { + [3868746097] = { + "Enemies have an Accuracy Penalty against you based on Distance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoreweaveWhisperBrotherhood1"] = { + "100% of Cold Damage Converted to Lightning Damage", + ["affix"] = "", + ["group"] = "ColdDamageConvertToLightning", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1716, + }, + ["tradeHashes"] = { + [1686824704] = { + "100% of Cold Damage Converted to Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoseEnergyShieldPerSecond1"] = { + "You lose 5% of maximum Energy Shield per second", + ["affix"] = "", + ["group"] = "LoseEnergyShieldPerSecond", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6432, + }, + ["tradeHashes"] = { + [2350411833] = { + "You lose 5% of maximum Energy Shield per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoseLifeOnSkillUse1"] = { + "Lose 5 Life when you use a Skill", + ["affix"] = "", + ["group"] = "LoseLifeOnKillUse", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7940, + }, + ["tradeHashes"] = { + [1902409192] = { + "Lose 5 Life when you use a Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { + "Lose 5% Life per second while you have no Runic Ward during Effect", + ["affix"] = "", + ["group"] = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "resource", + "runic_ward", + "life", + }, + ["statOrder"] = { + 7839, + }, + ["tradeHashes"] = { + [1147913864] = { + "Lose 5% Life per second while you have no Runic Ward during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLosePowerChargesOnMaxCharges1"] = { + "Lose all Power Charges on reaching maximum Power Charges", + ["affix"] = "", + ["group"] = "LosePowerChargesOnMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 3284, + }, + ["tradeHashes"] = { + [2135899247] = { + "Lose all Power Charges on reaching maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoseRageOnMaximumRage1"] = { + "Lose all Rage on reaching Maximum Rage", + ["affix"] = "", + ["group"] = "LoseRageOnMaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7933, + }, + ["tradeHashes"] = { + [3851480592] = { + "Lose all Rage on reaching Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLoseTailwindOnHit1"] = { + "Lose all Tailwind when Hit", + ["affix"] = "", + ["group"] = "LoseTailwindOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7934, + }, + ["tradeHashes"] = { + [367897259] = { + "Lose all Tailwind when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLowLifeOnManaThreshold1"] = { + "You count as on Low Life while at 35% of maximum Mana or below", + ["affix"] = "", + ["group"] = "LowLifeOnManaThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10432, + }, + ["tradeHashes"] = { + [3154256486] = { + "You count as on Low Life while at 35% of maximum Mana or below", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLowLifeThreshold1"] = { + "You are considered on Low Life while at 75% of maximum Life or below instead", + ["affix"] = "", + ["group"] = "LowLifeThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7943, + }, + ["tradeHashes"] = { + [356835700] = { + "You are considered on Low Life while at 75% of maximum Life or below instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLowManaOnLifeThreshold1"] = { + "You count as on Low Mana while at 35% of maximum Life or below", + ["affix"] = "", + ["group"] = "LowManaOnLifeThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10433, + }, + ["tradeHashes"] = { + [1143240184] = { + "You count as on Low Mana while at 35% of maximum Life or below", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueLuckyBlockChance1"] = { + "Chance to Block Damage is Lucky", + ["affix"] = "", + ["group"] = "LuckyBlockChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4662, + }, + ["tradeHashes"] = { + [2957287092] = { + "Chance to Block Damage is Lucky", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaceSkillFireDamageConvertedToCold1"] = { + "Convert 100% of Fire Damage with Mace Skills to Cold Damage", + ["affix"] = "", + ["group"] = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + }, + ["statOrder"] = { + 10415, + }, + ["tradeHashes"] = { + [1683568809] = { + "Convert 100% of Fire Damage with Mace Skills to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMagesLegacy01"] = { + "Legacy of (1-14)", + ["affix"] = "", + ["group"] = "UniqueMagesLegacy01", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7917, + }, + ["tradeHashes"] = { + [264262054] = { + "Legacy of (1-14)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMagesLegacy02"] = { + "Legacy of (1-14)", + ["affix"] = "", + ["group"] = "UniqueMagesLegacy02", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7918, + }, + ["tradeHashes"] = { + [1279683261] = { + "Legacy of (1-14)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMagesLegacy03"] = { + "Legacy of (1-14)", + ["affix"] = "", + ["group"] = "UniqueMagesLegacy03", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7919, + }, + ["tradeHashes"] = { + [3419886123] = { + "Legacy of (1-14)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMagesLegacy04"] = { + "Legacy of (1-14)", + ["affix"] = "", + ["group"] = "UniqueMagesLegacy04", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7920, + }, + ["tradeHashes"] = { + [2739030262] = { + "Legacy of (1-14)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaCostEfficiency1"] = { + "(20-40)% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(20-40)% increased Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaCostPerManaSpent1"] = { + "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", + ["affix"] = "", + ["group"] = "ManaCostPerManaSpent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 4005, + }, + ["tradeHashes"] = { + [2650053239] = { + "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaCostReduction1"] = { + "20% reduced Mana Cost of Skills", + ["affix"] = "", + ["group"] = "ManaCostReduction", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1633, + }, + ["tradeHashes"] = { + [474294393] = { + "20% reduced Mana Cost of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaCostReduction2"] = { + "10% increased Mana Cost of Skills", + ["affix"] = "", + ["group"] = "ManaCostReduction", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1633, + }, + ["tradeHashes"] = { + [474294393] = { + "10% increased Mana Cost of Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaFlaskChargeGeneration1"] = { + "Mana Flasks gain 0.25 charges per Second", + ["affix"] = "", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain 0.25 charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaFlaskChargeGeneration2"] = { + "Mana Flasks gain (0.17-0.25) charges per Second", + ["affix"] = "", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain (0.17-0.25) charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaFlaskChargeGeneration3"] = { + "Mana Flasks gain (0.1-0.25) charges per Second", + ["affix"] = "", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain (0.1-0.25) charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { + "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + ["affix"] = "", + ["group"] = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 7841, + }, + ["tradeHashes"] = { + [4100842845] = { + "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaFlaskRevivesMinions1"] = { + "Using a Mana Flask revives one of your Persistent Minions", + ["affix"] = "", + ["group"] = "ManaFlaskRevivesMinions", + ["level"] = 1, + ["modTags"] = { + "flask", + "minion", + }, + ["statOrder"] = { + 10425, + }, + ["tradeHashes"] = { + [932661147] = { + "Using a Mana Flask revives one of your Persistent Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainPerTarget1"] = { + "Gain 15 Mana per Enemy Hit with Attacks", + ["affix"] = "", + ["group"] = "ManaGainPerTarget", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 1507, + }, + ["tradeHashes"] = { + [820939409] = { + "Gain 15 Mana per Enemy Hit with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath1"] = { + "Lose 3 Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Lose 3 Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath10"] = { + "Gain (25-35) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (25-35) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath11"] = { + "Gain (10-15) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (10-15) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath2"] = { + "Gain (1-10) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (1-10) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath3"] = { + "Gain 10 Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain 10 Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath4"] = { + "Gain (4-6) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (4-6) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath5"] = { + "Gain (20-30) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (20-30) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath6"] = { + "Gain (12-18) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (12-18) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath7"] = { + "Gain 5 Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain 5 Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath8"] = { + "Gain (25-35) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (25-35) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaGainedFromEnemyDeath9"] = { + "Gain (10-15) Mana per enemy killed", + ["affix"] = "", + ["group"] = "ManaGainedFromEnemyDeath", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1047, + }, + ["tradeHashes"] = { + [1368271171] = { + "Gain (10-15) Mana per enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaLeechLocal1"] = { + "Leeches (4-7)% of Physical Damage as Mana", + ["affix"] = "", + ["group"] = "ManaLeechLocalPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1045, + }, + ["tradeHashes"] = { + [669069897] = { + "Leeches (4-7)% of Physical Damage as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegenAppliesToRecharge1"] = { + "Increases and Reductions to Mana Regeneration Rate also", + "apply to Energy Shield Recharge Rate", + ["affix"] = "", + ["group"] = "ManaRegenAppliesToRecharge", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mana", + }, + ["statOrder"] = { + 4234, + 4234.1, + }, + ["tradeHashes"] = { + [3407300125] = { + "Increases and Reductions to Mana Regeneration Rate also", + "apply to Energy Shield Recharge Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration1"] = { + "(10-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(10-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration10"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration11"] = { + "(20-40)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-40)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration12"] = { + "50% reduced Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "50% reduced Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration13"] = { + "(25-40)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(25-40)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration14"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration15"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration16"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration17"] = { + "(25-40)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(25-40)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration18"] = { + "(25-35)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 40, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(25-35)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration19"] = { + "(25-35)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 40, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(25-35)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration2"] = { + "(15-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(15-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration20"] = { + "25% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "25% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration21"] = { + "(30-40)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-40)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration22"] = { + "(40-60)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(40-60)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration23"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration24"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration25"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration26"] = { + "(15-25)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(15-25)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration27"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration28"] = { + "40% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "40% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration29"] = { + "50% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "50% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration3"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration30"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration31"] = { + "(-30-30)% reduced Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(-30-30)% reduced Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration4"] = { + "100% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "100% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration5"] = { + "(30-50)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-50)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration6"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration7"] = { + "(30-40)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-40)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration8"] = { + "(50-100)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(50-100)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegeneration9"] = { + "(20-30)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(20-30)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegenerationRateIfCritRecently1"] = { + "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "ManaRegenerationRateIfCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "critical", + }, + ["statOrder"] = { + 8016, + }, + ["tradeHashes"] = { + [1659564104] = { + "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaRegenerationWhileStationary1"] = { + "40% increased Mana Regeneration Rate while stationary", + ["affix"] = "", + ["group"] = "ManaRegenerationWhileStationary", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 3986, + }, + ["tradeHashes"] = { + [3308030688] = { + "40% increased Mana Regeneration Rate while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueManaScarificeToAllies1"] = { + "When a Party Member in your Presence Casts a Spell, you", + "Sacrifice 20% of Mana and they Leech that Mana", + ["affix"] = "", + ["group"] = "ManaScarificeToAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10389, + 10389.1, + }, + ["tradeHashes"] = { + [603021645] = { + "When a Party Member in your Presence Casts a Spell, you", + "Sacrifice 20% of Mana and they Leech that Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaxLifeToConvertToArmourPerChaosResistance1"] = { + "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + ["affix"] = "", + ["group"] = "UniqueMaxLifeToConvertToArmourPerChaosResistance", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 1434, + }, + ["tradeHashes"] = { + [4274637468] = { + "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumBlockChance1"] = { + "+(5-10)% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "+(5-10)% to maximum Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumBlockChance2"] = { + "-(20-10)% to maximum Block chance", + ["affix"] = "", + ["group"] = "MaximumBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "-(20-10)% to maximum Block chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { + "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", + ["affix"] = "", + ["group"] = "MaximumBlockChanceIfNotBlockedRecently", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 8834, + }, + ["tradeHashes"] = { + [2584264074] = { + "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumBlockToMaximumResistances1"] = { + "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + ["affix"] = "", + ["group"] = "MaximumBlockToMaximumResistances", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8845, + }, + ["tradeHashes"] = { + [3679696791] = { + "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumChaosResist1"] = { + "+(1-5)% to Maximum Chaos Resistance", + ["affix"] = "", + ["group"] = "MaximumChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+(1-5)% to Maximum Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumColdResist1"] = { + "+(3-5)% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+(3-5)% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumColdResist2"] = { + "+5% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+5% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistance1"] = { + "-(5-1)% to all Maximum Elemental Resistances", + ["affix"] = "", + ["group"] = "MaximumElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "-(5-1)% to all Maximum Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances1"] = { + "+1% to Maximum Fire Resistance", + "+2% to Maximum Cold Resistance", + "+3% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+3% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances2"] = { + "+1% to Maximum Fire Resistance", + "+3% to Maximum Cold Resistance", + "+2% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+3% to Maximum Cold Resistance", + }, + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances3"] = { + "+2% to Maximum Fire Resistance", + "+1% to Maximum Cold Resistance", + "+3% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+3% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances4"] = { + "+2% to Maximum Fire Resistance", + "+3% to Maximum Cold Resistance", + "+1% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+3% to Maximum Cold Resistance", + }, + [4095671657] = { + "+2% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances5"] = { + "+3% to Maximum Fire Resistance", + "+1% to Maximum Cold Resistance", + "+2% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+2% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + [4095671657] = { + "+3% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumElementalResistances6"] = { + "+3% to Maximum Fire Resistance", + "+2% to Maximum Cold Resistance", + "+1% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "UniqueMaximumElementalResistances", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1009, + 1010, + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + [3676141501] = { + "+2% to Maximum Cold Resistance", + }, + [4095671657] = { + "+3% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumEnduranceCharges1"] = { + "+1 to Maximum Endurance Charges", + ["affix"] = "", + ["group"] = "MaximumEnduranceCharges", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + }, + ["statOrder"] = { + 1559, + }, + ["tradeHashes"] = { + [1515657623] = { + "+1 to Maximum Endurance Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumEnergyShieldIsPercentOfStrength1"] = { + "Your maximum Energy Shield is equal to (200-300)% of your Strength", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldIsPercentOfStrength", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1907, + }, + ["tradeHashes"] = { + [758226825] = { + "Your maximum Energy Shield is equal to (200-300)% of your Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumEvadeChanceOverride1"] = { + "Maximum Chance to Evade is 50%", + ["affix"] = "", + ["group"] = "MaximumEvadeChanceOverride", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8848, + }, + ["tradeHashes"] = { + [1500744699] = { + "Maximum Chance to Evade is 50%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumFireResist1"] = { + "+(3-5)% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+(3-5)% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumFireResist2"] = { + "+5% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+5% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumFrenzyCharges1"] = { + "+1 to Maximum Frenzy Charges", + ["affix"] = "", + ["group"] = "MaximumFrenzyCharges", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 1564, + }, + ["tradeHashes"] = { + [4078695] = { + "+1 to Maximum Frenzy Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumGuardBasedOnEnergyShield1"] = { + "Maximum amount of Guard is based on maximum Energy Shield instead", + ["affix"] = "", + ["group"] = "MaximumGuardInsteadBasedOnEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8874, + }, + ["tradeHashes"] = { + [1338406168] = { + "Maximum amount of Guard is based on maximum Energy Shield instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease1"] = { + "(20-30)% reduced maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(20-30)% reduced maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease2"] = { + "50% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "50% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease3"] = { + "20% reduced maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "20% reduced maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease4"] = { + "(10-15)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(10-15)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease5"] = { + "20% reduced maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "20% reduced maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease6"] = { + "(6-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 71, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(6-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease7"] = { + "(10-20)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(10-20)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeIncrease8"] = { + "(10-20)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(10-20)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeOnKillPercent1"] = { + "Lose 2% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Lose 2% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeOnKillPercent2"] = { + "Lose 1% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Lose 1% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifeOnKillPercent3"] = { + "Recover (2-4)% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (2-4)% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifePerSocketable1"] = { + "5% increased Maximum Life per Socket filled", + ["affix"] = "", + ["group"] = "MaximumLifePerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7804, + }, + ["tradeHashes"] = { + [2702182380] = { + "5% increased Maximum Life per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLifePerStackableJewel1"] = { + "2% increased Maximum Life per socketed Grand Spectrum", + ["affix"] = "", + ["group"] = "MaximumLifePerStackableJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 3816, + }, + ["tradeHashes"] = { + [332217711] = { + "2% increased Maximum Life per socketed Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLightningDamagePerPower1"] = { + "On Hitting an enemy, gains maximum added Lightning damage equal to", + "the enemy's Power for 20 seconds, up to a total of 500", + ["affix"] = "", + ["group"] = "MaximumLightningDamagePerPower", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7800, + 7800.1, + }, + ["tradeHashes"] = { + [3538915253] = { + "On Hitting an enemy, gains maximum added Lightning damage equal to", + "the enemy's Power for 20 seconds, up to a total of 500", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLightningResist1"] = { + "+(3-5)% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+(3-5)% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumLightningResist2"] = { + "+5% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+5% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaIncrease1"] = { + "(10-15)% increased maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(10-15)% increased maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaIncrease2"] = { + "25% reduced maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "25% reduced maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaIncrease3"] = { + "(10-15)% reduced maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(10-15)% reduced maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaIncrease4"] = { + "25% reduced maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "25% reduced maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaOnKillPercent1"] = { + "Lose 1% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Lose 1% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumManaPerSocketable1"] = { + "5% increased Maximum Mana per Socket filled", + ["affix"] = "", + ["group"] = "MaximumManaPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7806, + }, + ["tradeHashes"] = { + [911712882] = { + "5% increased Maximum Mana per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumPhysicalReductionOverride1"] = { + "Maximum Physical Damage Reduction is 50%", + ["affix"] = "", + ["group"] = "MaximumPhysicalReductionOverride", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 8899, + }, + ["tradeHashes"] = { + [3960211755] = { + "Maximum Physical Damage Reduction is 50%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumPowerCharges1"] = { + "+1 to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+1 to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumPowerChargesWand_1"] = { + "+(-1-1) to Maximum Power Charges", + ["affix"] = "", + ["group"] = "MaximumPowerCharges", + ["level"] = 82, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1569, + }, + ["tradeHashes"] = { + [227523295] = { + "+(-1-1) to Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumQualityOverride1"] = { + "Maximum Quality is 200%", + ["affix"] = "", + ["group"] = "MaximumQualityOverride", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 614, + }, + ["tradeHashes"] = { + [275498888] = { + "Maximum Quality is 200%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumQualityOverride2"] = { + "Maximum Quality is 40%", + ["affix"] = "", + ["group"] = "MaximumQualityOverride", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 614, + }, + ["tradeHashes"] = { + [275498888] = { + "Maximum Quality is 40%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumRage1"] = { + "+(-10-10) to Maximum Rage", + ["affix"] = "", + ["group"] = "MaximumRage", + ["level"] = 75, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(-10-10) to Maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumResistancesOverride1"] = { + "Your Maximum Resistances are (75-80)%", + ["affix"] = "", + ["group"] = "MaximumResistancesOverride", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "elemental", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1008, + }, + ["tradeHashes"] = { + [798767971] = { + "Your Maximum Resistances are (75-80)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumResistancesOverride1BigRange"] = { + "Your Maximum Resistances are (50-82)%", + ["affix"] = "", + ["group"] = "MaximumResistancesOverride", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "elemental", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1008, + }, + ["tradeHashes"] = { + [798767971] = { + "Your Maximum Resistances are (50-82)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { + "2% increased Spirit per socketed Grand Spectrum", + ["affix"] = "", + ["group"] = "MaximumSpiritPerStackableJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10063, + }, + ["tradeHashes"] = { + [1430165758] = { + "2% increased Spirit per socketed Grand Spectrum", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMaximumValour1"] = { + "-20 to maximum Valour", + ["affix"] = "", + ["group"] = "MaximumValour", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4634, + }, + ["tradeHashes"] = { + [1896726125] = { + "-20 to maximum Valour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMeleeCriticalStrikeMultiplier1"] = { + "+(100-150)% to Melee Critical Damage Bonus", + ["affix"] = "", + ["group"] = "MeleeWeaponCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 1395, + }, + ["tradeHashes"] = { + [4237442815] = { + "+(100-150)% to Melee Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { + "(35-50)% increased Melee Damage against Heavy Stunned enemies", + ["affix"] = "", + ["group"] = "MeleeDamageAgainstStunnedEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8920, + }, + ["tradeHashes"] = { + [2677352961] = { + "(35-50)% increased Melee Damage against Heavy Stunned enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMeleeDamageIfProjectileHitRecently1"] = { + "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["affix"] = "", + ["group"] = "MeleeDamageIfProjectileHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 8914, + }, + ["tradeHashes"] = { + [3028809864] = { + "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMeleeSplash1"] = { + "Strikes deal Splash Damage", + ["affix"] = "", + ["group"] = "MeleeSplash", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1137, + }, + ["tradeHashes"] = { + [3675300253] = { + "Strikes deal Splash Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionAddedColdDamageMaximumLife1"] = { + "Minions deal 5% of your Life as additional Cold Damage with Attacks", + ["affix"] = "", + ["group"] = "MinionAddedColdDamageMaximumLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9001, + }, + ["tradeHashes"] = { + [1403346025] = { + "Minions deal 5% of your Life as additional Cold Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionAttackSpeedAffectsYou1"] = { + "Increases and Reductions to Minion Attack Speed also affect you", + ["affix"] = "", + ["group"] = "MinionAttackSpeedAffectsYou", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 3428, + }, + ["tradeHashes"] = { + [2293111154] = { + "Increases and Reductions to Minion Attack Speed also affect you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionCausticCloudOnDeath1"] = { + "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", + ["affix"] = "", + ["group"] = "MinionCausticCloudOnDeath", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "minion_damage", + "damage", + "chaos", + "minion", + }, + ["statOrder"] = { + 3136, + }, + ["tradeHashes"] = { + [688802590] = { + "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionChanceToApplyGruelingMadness1"] = { + "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", + ["affix"] = "", + ["group"] = "MinionChanceToApplyGruelingMadness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2901, + }, + ["tradeHashes"] = { + [1486714289] = { + "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionChaosResistance1"] = { + "Minions have +(17-23)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "MinionChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "minion_resistance", + "chaos", + "resistance", + "minion", + }, + ["statOrder"] = { + 2668, + }, + ["tradeHashes"] = { + [3837707023] = { + "Minions have +(17-23)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionDamage1"] = { + "Minions deal (20-30)% increased Damage", + ["affix"] = "", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (20-30)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionDamage2"] = { + "Minions deal (80-120)% increased Damage", + ["affix"] = "", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (80-120)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionDamage3"] = { + "Minions deal (80-120)% increased Damage", + ["affix"] = "", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (80-120)% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionDamageAffectsYou1"] = { + "Increases and Reductions to Minion Damage also affect you", + ["affix"] = "", + ["group"] = "MinionDamageAffectsYou", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3977, + }, + ["tradeHashes"] = { + [1631928082] = { + "Increases and Reductions to Minion Damage also affect you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife1"] = { + "Minions have (20-30)% increased maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (20-30)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife2"] = { + "Minions have (20-30)% increased maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (20-30)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife3"] = { + "Minions have (10-15)% increased maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (10-15)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife4"] = { + "Minions have (20-30)% increased maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (20-30)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife5"] = { + "Minions have 50% reduced maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have 50% reduced maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLife6"] = { + "Minions have (20-30)% increased maximum Life", + ["affix"] = "", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (20-30)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLifeGainAsEnergyShield1"] = { + "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "MinionLifeGainAsEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + "minion", + }, + ["statOrder"] = { + 1437, + }, + ["tradeHashes"] = { + [943702197] = { + "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionLifeTiedToOwner1"] = { + "Minions in Presence lose Life when you lose Life", + "Minions in Presence gain Life when you gain Life", + ["affix"] = "", + ["group"] = "MinionLifeTiedToOwner", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10417, + 10417.1, + }, + ["tradeHashes"] = { + [2247039371] = { + "Minions in Presence lose Life when you lose Life", + "Minions in Presence gain Life when you gain Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionResistanceEqualYours1"] = { + "Minions' Resistances are equal to yours", + ["affix"] = "", + ["group"] = "MinionResistanceEqualYours", + ["level"] = 1, + ["modTags"] = { + "minion_resistance", + "resistance", + "minion", + }, + ["statOrder"] = { + 9082, + }, + ["tradeHashes"] = { + [3045072899] = { + "Minions' Resistances are equal to yours", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionReviveSpeed1"] = { + "Minions Revive 50% faster", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive 50% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionReviveSpeed2"] = { + "Minions Revive (10-15)% faster", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (10-15)% faster", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionReviveSpeed3"] = { + "Minions Revive 50% slower", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive 50% slower", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionsExplodeAsPercentPhysicalOnDeath1"] = { + "Minions explode on death, dealing (8-12)% of their maximum", + "life as Physical Damage to enemies within 2 metres", + ["affix"] = "", + ["group"] = "UniqueMinionsExplodeOnDeathDealingPercentOfLifeAsPhys", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "physical_damage", + "damage", + "physical", + "minion", + }, + ["statOrder"] = { + 10416, + 10416.1, + }, + ["tradeHashes"] = { + [4166288804] = { + "Minions explode on death, dealing (8-12)% of their maximum", + "life as Physical Damage to enemies within 2 metres", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMinionsHaveUnholyMight1"] = { + "Minions have Unholy Might", + ["affix"] = "", + ["group"] = "MinionsHaveUnholyMight", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9107, + }, + ["tradeHashes"] = { + [3893509584] = { + "Minions have Unholy Might", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueModifyableWhileCorrupted1"] = { + "Can be modified while Corrupted", + ["affix"] = "", + ["group"] = "ModifyableWhileCorruptedAndSpecialCorruption", + ["level"] = 66, + ["modTags"] = { + }, + ["statOrder"] = { + 14, + }, + ["tradeHashes"] = { + [1161337167] = { + "Can be modified while Corrupted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMoltenShowerSkill1"] = { + "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", + ["affix"] = "", + ["group"] = "UniqueGrantsTriggeredMoltenShower", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 481, + }, + ["tradeHashes"] = { + [1867725690] = { + "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity1"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity10"] = { + "(15-25)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(15-25)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity11"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity12"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity13"] = { + "15% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "15% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity14"] = { + "(10-20)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(10-20)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity15"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity16"] = { + "15% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "15% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity17"] = { + "(15-20)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(15-20)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity18"] = { + "10% reduced Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity19"] = { + "(10-20)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(10-20)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity2"] = { + "(10-20)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(10-20)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity20"] = { + "20% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity21"] = { + "(20-30)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(20-30)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity22"] = { + "(15-30)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(15-30)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity23"] = { + "10% reduced Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity24"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity25"] = { + "(5-15)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(5-15)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity26"] = { + "5% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "5% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity27"] = { + "30% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "30% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity28"] = { + "15% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "15% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity29"] = { + "30% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "30% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity3"] = { + "(10-20)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(10-20)% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity4"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity5"] = { + "15% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "15% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity6"] = { + "10% reduced Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity7"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity8"] = { + "20% reduced Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "20% reduced Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocity9"] = { + "10% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "10% increased Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocityOnFullLife1"] = { + "10% increased Movement Speed when on Full Life", + ["affix"] = "", + ["group"] = "MovementVelocityOnFullLife", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1555, + }, + ["tradeHashes"] = { + [3393547195] = { + "10% increased Movement Speed when on Full Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocityPerFrenzyCharge1"] = { + "5% increased Movement Speed per Frenzy Charge", + ["affix"] = "", + ["group"] = "MovementVelocityPerFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1557, + }, + ["tradeHashes"] = { + [1541516339] = { + "5% increased Movement Speed per Frenzy Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMovementVelocityWithAilment1"] = { + "25% increased Movement Speed while affected by an Ailment", + ["affix"] = "", + ["group"] = "MovementVelocityWithAilment", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9148, + }, + ["tradeHashes"] = { + [610276769] = { + "25% increased Movement Speed while affected by an Ailment", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMultipleAnointments1"] = { + "Can have 3 additional Instilled Modifiers", + ["affix"] = "", + ["group"] = "MultipleEnchantmentsAllowed", + ["level"] = 66, + ["modTags"] = { + }, + ["statOrder"] = { + 16, + }, + ["tradeHashes"] = { + [1135194732] = { + "Can have 3 additional Instilled Modifiers", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMultipleCompanions1"] = { + "You can have two Companions of different types", + ["affix"] = "", + ["group"] = "MultipleCompanions", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10666, + }, + ["tradeHashes"] = { + [1888024332] = { + "You can have two Companions of different types", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAddedMaximumEnergyShield"] = { + "+(100-150) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(100-150) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAdditionalArrowPierce"] = { + "Arrows Pierce an additional Target", + ["affix"] = "", + ["group"] = "AdditionalArrowPierce", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attack", + }, + ["statOrder"] = { + 1550, + }, + ["tradeHashes"] = { + [3423006863] = { + "Arrows Pierce an additional Target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAftershockChance"] = { + "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["affix"] = "", + ["group"] = "AftershockChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10626, + }, + ["tradeHashes"] = { + [2045949233] = { + "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAilmentChance"] = { + "(20-30)% increased chance to inflict Ailments", + ["affix"] = "", + ["group"] = "AilmentChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "ailment", + }, + ["statOrder"] = { + 4255, + }, + ["tradeHashes"] = { + [1772247089] = { + "(20-30)% increased chance to inflict Ailments", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAllAttributes"] = { + "+(17-23) to all Attributes", + ["affix"] = "", + ["group"] = "AllAttributes", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attribute", + }, + ["statOrder"] = { + 991, + }, + ["tradeHashes"] = { + [1379411836] = { + "+(17-23) to all Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalArcaneSurgeEffect"] = { + "(20-40)% increased effect of Arcane Surge on you", + ["affix"] = "", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(20-40)% increased effect of Arcane Surge on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { + "(10-25)% increased Area of Effect if you've Killed Recently", + ["affix"] = "", + ["group"] = "AreaOfEffectIfKilledRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 3871, + }, + ["tradeHashes"] = { + [3481736410] = { + "(10-25)% increased Area of Effect if you've Killed Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { + "+(33-66)% of Armour also applies to Elemental Damage", + ["affix"] = "", + ["group"] = "ArmourAppliesToElementalDamage", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + "elemental", + }, + ["statOrder"] = { + 1027, + }, + ["tradeHashes"] = { + [3362812763] = { + "+(33-66)% of Armour also applies to Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { + "25% increased Attack and Cast Speed if you've summoned a Totem Recently", + ["affix"] = "", + ["group"] = "AttackAndCastSpeedOnPlacingTotem", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2925, + }, + ["tradeHashes"] = { + [3910614548] = { + "25% increased Attack and Cast Speed if you've summoned a Totem Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { + "(-40-40)% reduced Attack Damage while Surrounded", + ["affix"] = "", + ["group"] = "AttackDamageWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4520, + }, + ["tradeHashes"] = { + [2879725899] = { + "(-40-40)% reduced Attack Damage while Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAtziriSplendourArmour1"] = { + "+(100-200) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(100-200) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { + "+(66-100) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(66-100) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { + "+(100-200) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(100-200) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBaseSpirit"] = { + "+50 to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+50 to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBaseSpirit1"] = { + "+(40-50) to Spirit", + ["affix"] = "", + ["group"] = "BaseSpirit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(40-50) to Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { + "(10-30)% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "BeltFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(10-30)% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { + "(10-30)% increased Charm Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedCharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(10-30)% increased Charm Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { + "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + ["affix"] = "", + ["group"] = "BurningEnemiesExplodeChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6521, + 6521.1, + }, + ["tradeHashes"] = { + [1617268696] = { + "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", + "tenth of their maximum Life as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { + "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "CastSpeedIfCriticalStrikeDealtRecently", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "mutatedunique_vaal", + "caster", + "speed", + }, + ["statOrder"] = { + 5341, + }, + ["tradeHashes"] = { + [1174076861] = { + "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChanceToBleed"] = { + "(30-50)% increased chance to inflict Bleeding", + ["affix"] = "", + ["group"] = "BleedChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4806, + }, + ["tradeHashes"] = { + [242637938] = { + "(30-50)% increased chance to inflict Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { + "10% chance when you gain a Power Charge to gain an additional Power Charge", + ["affix"] = "", + ["group"] = "ChanceToGainAdditionalPowerCharge", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5521, + }, + ["tradeHashes"] = { + [3537994888] = { + "10% chance when you gain a Power Charge to gain an additional Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { + "50% chance to gain an additional random Charge when you gain a Charge", + ["affix"] = "", + ["group"] = "ChanceToGainAdditionalRandomCharge", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5522, + }, + ["tradeHashes"] = { + [504210122] = { + "50% chance to gain an additional random Charge when you gain a Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { + "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", + ["affix"] = "", + ["group"] = "ChanceToNotConsumeInfusion", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5564, + }, + ["tradeHashes"] = { + [3024873336] = { + "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChaosDamagePercentage"] = { + "(1-60)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "mutatedunique_vaal", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(1-60)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChaosResistance"] = { + "+(1-60)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "mutatedunique_vaal", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(1-60)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChaosResistance1"] = { + "+(16-26)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "mutatedunique_vaal", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [2923486259] = { + "+(16-26)% to Chaos Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChargeChanceToNotConsume"] = { + "Skills have (10-15)% chance to not remove Charges but still count as consuming them", + ["affix"] = "", + ["group"] = "ChargeChanceToNotConsume", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5603, + }, + ["tradeHashes"] = { + [2942439603] = { + "Skills have (10-15)% chance to not remove Charges but still count as consuming them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChargeDuration"] = { + "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", + ["affix"] = "", + ["group"] = "ChargeDuration", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2761, + }, + ["tradeHashes"] = { + [2839036860] = { + "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCharmChargeGeneration"] = { + "Charms gain 0.5 charges per Second", + ["affix"] = "", + ["group"] = "CharmChargeGeneration", + ["level"] = 1, + ["modTags"] = { + "charm", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain 0.5 charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalChillEffect"] = { + "(20-40)% increased Magnitude of Chill you inflict", + ["affix"] = "", + ["group"] = "ChillEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5647, + }, + ["tradeHashes"] = { + [828179689] = { + "(20-40)% increased Magnitude of Chill you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalColdDamagePercentage"] = { + "(1-60)% increased Cold Damage", + ["affix"] = "", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(1-60)% increased Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalColdDamagePercentage1"] = { + "(-30-30)% reduced Cold Damage", + ["affix"] = "", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(-30-30)% reduced Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { + "(0-75)% increased Effect of Jewel Socket Passive Skills", + "containing Corrupted Rare Jewels", + ["affix"] = "", + ["group"] = "CorruptedRareJewelModEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7904, + 7904.1, + }, + ["tradeHashes"] = { + [3128077011] = { + "(0-75)% increased Effect of Jewel Socket Passive Skills", + "containing Corrupted Rare Jewels", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { + "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "critical", + }, + ["statOrder"] = { + 5847, + }, + ["tradeHashes"] = { + [2856328513] = { + "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { + "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", + ["affix"] = "", + ["group"] = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 5815, + }, + ["tradeHashes"] = { + [23669307] = { + "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { + "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["affix"] = "", + ["group"] = "CullingStrikeLocalVsBleeding", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7654, + }, + ["tradeHashes"] = { + [2558253923] = { + "Hits with this Weapon have Culling Strike against Bleeding Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCurseEffectiveness"] = { + "(10-20)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "CurseEffectiveness", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(10-20)% increased Curse Magnitudes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalCurseGemLevel"] = { + "+(3-5) to Level of all Curse Skills", + ["affix"] = "", + ["group"] = "GlobalCurseGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "gem", + }, + ["statOrder"] = { + 971, + }, + ["tradeHashes"] = { + [805298720] = { + "+(3-5) to Level of all Curse Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageAsExtraFire"] = { + "Gain (25-40)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageasExtraFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (25-40)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageLifeRecoup"] = { + "(10-20)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-20)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamagePerCurse"] = { + "(10-15)% increased Damage per Curse on you", + ["affix"] = "", + ["group"] = "IncreasedDamagePerCurseOnSelf", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "damage", + }, + ["statOrder"] = { + 1173, + }, + ["tradeHashes"] = { + [1019020209] = { + "(10-15)% increased Damage per Curse on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { + "10% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "10% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { + "25% of Damage is taken from Mana before Life while not on Low Mana", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4682, + }, + ["tradeHashes"] = { + [679019978] = { + "25% of Damage is taken from Mana before Life while not on Low Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { + "(5-10)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(5-10)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { + "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["affix"] = "", + ["group"] = "DamageTakenGoesToLifeManaESPercent", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6043, + }, + ["tradeHashes"] = { + [2319832234] = { + "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDeflectDamageTaken"] = { + "+(-5-5)% to amount of Damage Prevented by Deflection", + ["affix"] = "", + ["group"] = "DeflectDamageTaken", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "+(-5-5)% to amount of Damage Prevented by Deflection", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { + "(10-20)% of Damage taken from Deflected Hits Recouped as Life", + ["affix"] = "", + ["group"] = "DeflectDamageTakenRecoupedAsLife", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6116, + }, + ["tradeHashes"] = { + [3471443885] = { + "(10-20)% of Damage taken from Deflected Hits Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { + "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", + ["affix"] = "", + ["group"] = "ElementalExposureEffectOnHitWithMagnitude", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4282, + }, + ["tradeHashes"] = { + [533542952] = { + "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { + "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + ["affix"] = "", + ["group"] = "ElementalPenetrationBelowZero", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + }, + ["statOrder"] = { + 6299, + }, + ["tradeHashes"] = { + [2890792988] = { + "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEnergyGeneration"] = { + "Meta Skills gain (-30-30)% reduced Energy", + ["affix"] = "", + ["group"] = "EnergyGeneration", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6410, + }, + ["tradeHashes"] = { + [4236566306] = { + "Meta Skills gain (-30-30)% reduced Energy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEnergyOnFullMana"] = { + "Meta Skills gain 25% increased Energy while on Full Mana", + ["affix"] = "", + ["group"] = "EnergyOnFullMana", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6413, + }, + ["tradeHashes"] = { + [173471035] = { + "Meta Skills gain 25% increased Energy while on Full Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEnergyShieldDelay1"] = { + "(33-66)% faster start of Energy Shield Recharge", + ["affix"] = "", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(33-66)% faster start of Energy Shield Recharge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { + "1% increased Energy Shield Recharge Rate per 4 Strength", + ["affix"] = "", + ["group"] = "EnergyShieldRechargeRatePer4Strength", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6441, + }, + ["tradeHashes"] = { + [2408276841] = { + "1% increased Energy Shield Recharge Rate per 4 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { + "(10-15)% increased Energy Shield Recovery rate", + ["affix"] = "", + ["group"] = "EnergyShieldRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 1440, + }, + ["tradeHashes"] = { + [988575597] = { + "(10-15)% increased Energy Shield Recovery rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEvasionOnLowLife"] = { + "+(100-150) to Evasion Rating while on Low Life", + ["affix"] = "", + ["group"] = "EvasionOnLowLife", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 1422, + }, + ["tradeHashes"] = { + [3470876581] = { + "+(100-150) to Evasion Rating while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { + "(100-150)% increased Evasion Rating while Sprinting", + ["affix"] = "", + ["group"] = "EvasionRatingPercentWhileSprinting", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6490, + }, + ["tradeHashes"] = { + [1586136369] = { + "(100-150)% increased Evasion Rating while Sprinting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalFireDamagePercentage"] = { + "(1-60)% increased Fire Damage", + ["affix"] = "", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(1-60)% increased Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalFireDamagePercentage1"] = { + "(-30-30)% reduced Fire Damage", + ["affix"] = "", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(-30-30)% reduced Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalFireExposureOnHit"] = { + "(30-50)% chance to inflict Exposure on Hit", + ["affix"] = "", + ["group"] = "FireExposureOnHit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4705, + }, + ["tradeHashes"] = { + [3602667353] = { + "(30-50)% chance to inflict Exposure on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalFreezeDuration"] = { + "(10-20)% increased Freeze Duration on Enemies", + ["affix"] = "", + ["group"] = "FreezeDuration", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 1614, + }, + ["tradeHashes"] = { + [1073942215] = { + "(10-20)% increased Freeze Duration on Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { + "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + ["affix"] = "", + ["group"] = "GainPowerChargesNotLostRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6849, + }, + ["tradeHashes"] = { + [1099200124] = { + "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { + "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", + ["affix"] = "", + ["group"] = "GainSoulEaterStackOnHit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6860, + }, + ["tradeHashes"] = { + [2103621252] = { + "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlancingBlows"] = { + "Glancing Blows", + ["affix"] = "", + ["group"] = "GlancingBlows", + ["level"] = 1, + ["modTags"] = { + "block", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10705, + }, + ["tradeHashes"] = { + [4266776872] = { + "Glancing Blows", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { + "(5-10)% Global chance to Blind Enemies on Hit", + ["affix"] = "", + ["group"] = "GlobalChanceToBlindOnHit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2703, + }, + ["tradeHashes"] = { + [2221570601] = { + "(5-10)% Global chance to Blind Enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalChaosGemLevel"] = { + "+1 to Level of all Chaos Skills", + ["affix"] = "", + ["group"] = "GlobalChaosGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "chaos", + "gem", + }, + ["statOrder"] = { + 964, + }, + ["tradeHashes"] = { + [67169579] = { + "+1 to Level of all Chaos Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalDeflectionRating"] = { + "(15-25)% increased Deflection Rating", + ["affix"] = "", + ["group"] = "GlobalDeflectionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 6119, + }, + ["tradeHashes"] = { + [3040571529] = { + "(15-25)% increased Deflection Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { + "(15-25)% increased Deflection Rating while moving", + ["affix"] = "", + ["group"] = "GlobalDeflectionRatingWhileMoving", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6120, + }, + ["tradeHashes"] = { + [1382805233] = { + "(15-25)% increased Deflection Rating while moving", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalFireGemLevel"] = { + "+1 to Level of all Fire Skills", + ["affix"] = "", + ["group"] = "GlobalFireGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "fire", + "gem", + }, + ["statOrder"] = { + 958, + }, + ["tradeHashes"] = { + [599749213] = { + "+1 to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalFireGemLevel1"] = { + "+(2-4) to Level of all Fire Skills", + ["affix"] = "", + ["group"] = "GlobalFireGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "fire", + "gem", + }, + ["statOrder"] = { + 958, + }, + ["tradeHashes"] = { + [599749213] = { + "+(2-4) to Level of all Fire Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { + "(25-50)% increased Life Recovery from Flasks", + ["affix"] = "", + ["group"] = "GlobalFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(25-50)% increased Life Recovery from Flasks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { + "+(1-2) to Level of all Minion Skills", + ["affix"] = "", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+(1-2) to Level of all Minion Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalSkillGemLevel"] = { + "+(2-4) to Level of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemLevel", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "gem", + }, + ["statOrder"] = { + 949, + }, + ["tradeHashes"] = { + [4283407333] = { + "+(2-4) to Level of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGlobalSkillGemQuality"] = { + "+(5-10)% to Quality of all Skills", + ["affix"] = "", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(5-10)% to Quality of all Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGoldFoundIncrease"] = { + "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalGoldFoundIncrease1"] = { + "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", + ["affix"] = "", + ["group"] = "GoldFoundIncrease", + ["level"] = 1, + ["modTags"] = { + "drop", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6917, + }, + ["tradeHashes"] = { + [3175163625] = { + "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIceCrystalMaximumLife"] = { + "(40-60)% increased Ice Crystal Life", + ["affix"] = "", + ["group"] = "IceCrystalMaximumLife", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7238, + }, + ["tradeHashes"] = { + [3274422940] = { + "(40-60)% increased Ice Crystal Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIgniteChanceIncrease"] = { + "25% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "25% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIgniteChanceIncrease1"] = { + "(15-25)% increased Flammability Magnitude", + ["affix"] = "", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(15-25)% increased Flammability Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIgniteEffect"] = { + "(26-40)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(26-40)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIgniteEffect1"] = { + "(20-40)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(20-40)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedArmourForJewel"] = { + "(-30-30)% reduced Armour", + ["affix"] = "", + ["group"] = "IncreasedArmourForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(-30-30)% reduced Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedAttackSpeed"] = { + "25% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "25% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { + "(6-12)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(6-12)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedChaosDamage"] = { + "(60-80)% increased Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "mutatedunique_vaal", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(60-80)% increased Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedChaosDamage1"] = { + "(-30-30)% reduced Chaos Damage", + ["affix"] = "", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "mutatedunique_vaal", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(-30-30)% reduced Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { + "+(-30-30) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "IncreasedEnergyShieldForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 885, + }, + ["tradeHashes"] = { + [3489782002] = { + "+(-30-30) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { + "(-30-30)% reduced Evasion Rating", + ["affix"] = "", + ["group"] = "IncreasedEvasionForJewel", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(-30-30)% reduced Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedLife"] = { + "+(70-100) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(70-100) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedLife1"] = { + "+(60-80) to maximum Life", + ["affix"] = "", + ["group"] = "IncreasedLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 887, + }, + ["tradeHashes"] = { + [3299347043] = { + "+(60-80) to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { + "Leech Life (-25-25)% slower", + ["affix"] = "", + ["group"] = "IncreasedLifeLeechRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1896, + }, + ["tradeHashes"] = { + [1570501432] = { + "Leech Life (-25-25)% slower", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedLifePercent"] = { + "(5-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { + "(-60-60)% reduced Power Charge Duration", + ["affix"] = "", + ["group"] = "IncreasedPowerChargeDuration", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 1881, + }, + ["tradeHashes"] = { + [3872306017] = { + "(-60-60)% reduced Power Charge Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedStunThreshold"] = { + "(20-30)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(20-30)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { + "(100-150)% increased Elemental Damage with Attacks", + ["affix"] = "", + ["group"] = "IncreasedWeaponElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "has_attack_mod", + "mutatedunique_vaal", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 877, + }, + ["tradeHashes"] = { + [387439868] = { + "(100-150)% increased Elemental Damage with Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeCostEfficiency"] = { + "(8-15)% increased Life Cost Efficiency", + ["affix"] = "", + ["group"] = "LifeCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 4708, + }, + ["tradeHashes"] = { + [310945763] = { + "(8-15)% increased Life Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeCostEfficiency1"] = { + "(10-25)% increased Life Cost Efficiency", + ["affix"] = "", + ["group"] = "LifeCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 4708, + }, + ["tradeHashes"] = { + [310945763] = { + "(10-25)% increased Life Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeCostEfficiency2"] = { + "(10-20)% increased Life Cost Efficiency", + ["affix"] = "", + ["group"] = "LifeCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 4708, + }, + ["tradeHashes"] = { + [310945763] = { + "(10-20)% increased Life Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { + "Lose (2.5-5)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeDegenerationPercentGracePeriod", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 1690, + }, + ["tradeHashes"] = { + [1661347488] = { + "Lose (2.5-5)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { + "(15-30)% increased Life Flask Charges gained", + ["affix"] = "", + ["group"] = "LifeFlaskChargePercentGeneration", + ["level"] = 1, + ["modTags"] = { + "flask", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7433, + }, + ["tradeHashes"] = { + [4009879772] = { + "(15-30)% increased Life Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeLeechAmount"] = { + "(20-25)% increased amount of Life Leeched", + ["affix"] = "", + ["group"] = "LifeLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(20-25)% increased amount of Life Leeched", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeLeechAmount1"] = { + "(20-30)% increased amount of Life Leeched", + ["affix"] = "", + ["group"] = "LifeLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(20-30)% increased amount of Life Leeched", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeLeechFromThorns"] = { + "(5-10)% of Thorns Damage Leeched as Life", + ["affix"] = "", + ["group"] = "LifeLeechFromThorns", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4712, + }, + ["tradeHashes"] = { + [1753977518] = { + "(5-10)% of Thorns Damage Leeched as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { + "Regenerate (2-3)% of maximum Life per second while on Low Life", + ["affix"] = "", + ["group"] = "LifeRegenerationOnLowLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1692, + }, + ["tradeHashes"] = { + [3942946753] = { + "Regenerate (2-3)% of maximum Life per second while on Low Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { + "Regenerate (1.5-3)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1.5-3)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { + "Regenerate (1-3)% of maximum Life per second", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [836936635] = { + "Regenerate (1-3)% of maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { + "Regenerate 3% of maximum Life per second while Ignited", + ["affix"] = "", + ["group"] = "LifeRegenerationRatePercentageWhileIgnited", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7488, + }, + ["tradeHashes"] = { + [302024054] = { + "Regenerate 3% of maximum Life per second while Ignited", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { + "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", + ["affix"] = "", + ["group"] = "LifeRegenerationWhileSurrounded", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 7510, + }, + ["tradeHashes"] = { + [2002533190] = { + "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { + "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", + ["affix"] = "", + ["group"] = "LightRadiusModifiersApplyToAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2279, + }, + ["tradeHashes"] = { + [1138742368] = { + "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLightningDamagePercentage"] = { + "(1-60)% increased Lightning Damage", + ["affix"] = "", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(1-60)% increased Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLightningDamagePercentage1"] = { + "(-30-30)% reduced Lightning Damage", + ["affix"] = "", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(-30-30)% reduced Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLightningResistance"] = { + "+(-60-60)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "mutatedunique_vaal", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1671376347] = { + "+(-60-60)% to Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLightningResistancePenetration"] = { + "Damage Penetrates (10-20)% Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "mutatedunique_vaal", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (10-20)% Lightning Resistance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { + "(100-150)% increased Armour and Energy Shield", + ["affix"] = "", + ["group"] = "LocalArmourAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + "energy_shield", + }, + ["statOrder"] = { + 851, + }, + ["tradeHashes"] = { + [3321629045] = { + "(100-150)% increased Armour and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { + "+(2-4)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(2-4)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { + "+(3-5)% to Critical Hit Chance", + ["affix"] = "", + ["group"] = "LocalBaseCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attack", + "critical", + }, + ["statOrder"] = { + 944, + }, + ["tradeHashes"] = { + [518292764] = { + "+(3-5)% to Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEnegyShield"] = { + "+(50-150) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(50-150) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEnergyShield"] = { + "+(90-120) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(90-120) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEnergyShield1"] = { + "+(60-100) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(60-100) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEnergyShield2"] = { + "+(70-100) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(70-100) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEnergyShield3"] = { + "+(50-80) to maximum Energy Shield", + ["affix"] = "", + ["group"] = "LocalEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "energy_shield", + }, + ["statOrder"] = { + 843, + }, + ["tradeHashes"] = { + [4052037485] = { + "+(50-80) to maximum Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEvasionRating"] = { + "+(50-150) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(50-150) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEvasionRating1"] = { + "+(150-200) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(150-200) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalEvasionRating2"] = { + "+(70-100) to Evasion Rating", + ["affix"] = "", + ["group"] = "LocalEvasionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + }, + ["statOrder"] = { + 841, + }, + ["tradeHashes"] = { + [53045048] = { + "+(70-100) to Evasion Rating", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { + "(150-300)% increased Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "LocalEvasionAndEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "evasion", + "energy_shield", + }, + ["statOrder"] = { + 852, + }, + ["tradeHashes"] = { + [1999113824] = { + "(150-300)% increased Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamage"] = { + "Adds (65-73) to (83-91) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "mutatedunique_vaal", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (65-73) to (83-91) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamage1"] = { + "Adds (40-60) to (70-90) Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "mutatedunique_vaal", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 831, + }, + ["tradeHashes"] = { + [1940865751] = { + "Adds (40-60) to (70-90) Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { + "(300-400)% increased Physical Damage", + ["affix"] = "", + ["group"] = "LocalPhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "mutatedunique_vaal", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 830, + }, + ["tradeHashes"] = { + [1509134228] = { + "(300-400)% increased Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { + "+(100-150) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(100-150) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { + "+(60-75) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(60-75) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { + "+(220-320) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(220-320) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { + "+(260-400) to Armour", + ["affix"] = "", + ["group"] = "LocalPhysicalDamageReductionRating", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + "armour", + }, + ["statOrder"] = { + 840, + }, + ["tradeHashes"] = { + [3484657501] = { + "+(260-400) to Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromBoots", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 78, + }, + ["tradeHashes"] = { + [150590298] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromGloves", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 79, + }, + ["tradeHashes"] = { + [3915618954] = { + "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + ["affix"] = "", + ["group"] = "LocalSoulCoreAlsoGainBenefitsFromHelmet", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 80, + }, + ["tradeHashes"] = { + [3773763721] = { + "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalLocalSoulCoreEffect"] = { + "(10-20)% increased effect of Socketed Soul Cores", + ["affix"] = "", + ["group"] = "LocalSoulCoreEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 179, + }, + ["tradeHashes"] = { + [4065505214] = { + "(10-20)% increased effect of Socketed Soul Cores", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaCostEfficiency"] = { + "25% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "25% increased Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaCostEfficiency1"] = { + "(20-30)% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(20-30)% increased Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaCostEfficiency2"] = { + "(13-17)% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(13-17)% increased Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaCostEfficiency3"] = { + "(-30-30)% reduced Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(-30-30)% reduced Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { + "Recover (2-5)% of maximum Mana when you consume a Power Charge", + ["affix"] = "", + ["group"] = "ManaGainedOnPowerChargeConsumption", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9706, + }, + ["tradeHashes"] = { + [346374719] = { + "Recover (2-5)% of maximum Mana when you consume a Power Charge", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalManaLeechPermyriad"] = { + "Leech (4-6)% of Physical Attack Damage as Mana", + ["affix"] = "", + ["group"] = "ManaLeechPermyriad", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + "physical", + "attack", + }, + ["statOrder"] = { + 1046, + }, + ["tradeHashes"] = { + [707457662] = { + "Leech (4-6)% of Physical Attack Damage as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { + "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["affix"] = "", + ["group"] = "MaxRageFromRageOnHitChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6810, + }, + ["tradeHashes"] = { + [2710292678] = { + "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mutatedunique_vaal", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mutatedunique_vaal", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + ["affix"] = "", + ["group"] = "MaximumLifeConvertedToEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mutatedunique_vaal", + "life", + "energy_shield", + }, + ["statOrder"] = { + 8884, + }, + ["tradeHashes"] = { + [2458962764] = { + "(10-15)% of Maximum Life Converted to Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { + "(5-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { + "(5-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { + "(5-10)% increased maximum Life", + ["affix"] = "", + ["group"] = "MaximumLifeIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [983749596] = { + "(5-10)% increased maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { + "(10-20)% increased maximum Mana", + ["affix"] = "", + ["group"] = "MaximumManaIncreasePercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2748665614] = { + "(10-20)% increased maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { + "Recover (1-2)% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "MaximumManaOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 1513, + }, + ["tradeHashes"] = { + [1030153674] = { + "Recover (1-2)% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { + "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + ["affix"] = "", + ["group"] = "MaximumRagePerGlorySkillUsed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 8840, + }, + ["tradeHashes"] = { + [3302775221] = { + "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalMinionDamage"] = { + "Minions deal (-30-30)% reduced Damage", + ["affix"] = "", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "mutatedunique_vaal", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (-30-30)% reduced Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPercentDamageGoesToMana"] = { + "(6-10)% of Damage taken Recouped as Mana", + ["affix"] = "", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(6-10)% of Damage taken Recouped as Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { + "(20-40)% of Leech is Instant", + ["affix"] = "", + ["group"] = "PercentOfLeechIsInstant", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7425, + }, + ["tradeHashes"] = { + [3561837752] = { + "(20-40)% of Leech is Instant", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPercentageAllAttributes"] = { + "(5-10)% increased Attributes", + ["affix"] = "", + ["group"] = "PercentageAllAttributes", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attribute", + }, + ["statOrder"] = { + 998, + }, + ["tradeHashes"] = { + [3143208761] = { + "(5-10)% increased Attributes", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPercentageStrength"] = { + "(5-10)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(5-10)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPhysicalDamagePercent"] = { + "(-30-30)% reduced Global Physical Damage", + ["affix"] = "", + ["group"] = "PhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "mutatedunique_vaal", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1310194496] = { + "(-30-30)% reduced Global Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { + "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + ["affix"] = "", + ["group"] = "PoisonDurationIfConsumedFrenzyChargeRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9492, + }, + ["tradeHashes"] = { + [3841138199] = { + "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPoisonEffect"] = { + "(10-16)% increased Magnitude of Poison you inflict", + ["affix"] = "", + ["group"] = "PoisonEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(10-16)% increased Magnitude of Poison you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { + "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", + ["affix"] = "", + ["group"] = "PoisonEffectOnNonPoisoned", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9496, + }, + ["tradeHashes"] = { + [1864159246] = { + "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { + "(30-40)% increased Magnitude of Poison you inflict while Poisoned", + ["affix"] = "", + ["group"] = "PoisonEffectWhilePoisoned", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4738, + }, + ["tradeHashes"] = { + [120969026] = { + "(30-40)% increased Magnitude of Poison you inflict while Poisoned", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPoisonStackCount"] = { + "Targets can be affected by +1 of your Poisons at the same time", + ["affix"] = "", + ["group"] = "PoisonStackCount", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9327, + }, + ["tradeHashes"] = { + [1755296234] = { + "Targets can be affected by +1 of your Poisons at the same time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { + "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", + ["affix"] = "", + ["group"] = "PowerFrenzyOrEnduranceChargeOnKill", + ["level"] = 1, + ["modTags"] = { + "endurance_charge", + "frenzy_charge", + "power_charge", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 3293, + }, + ["tradeHashes"] = { + [498214257] = { + "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPresenceRadius"] = { + "100% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "100% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPresenceRadius1"] = { + "(15-30)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(15-30)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalPresenceRadius2"] = { + "(25-50)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(25-50)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { + "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "", + ["group"] = "ProjectileForkChanceIfMeleeRecently", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9565, + }, + ["tradeHashes"] = { + [2189073790] = { + "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalProjectileSpeed"] = { + "(16-24)% increased Projectile Speed", + ["affix"] = "", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(16-24)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalRandomKeystoneFromTable"] = { + "(1-33)", + ["affix"] = "", + ["group"] = "UniqueVivisectionRandomKeystoneMutated", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10673, + }, + ["tradeHashes"] = { + [37406516] = { + "(1-33)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { + "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", + ["affix"] = "", + ["group"] = "RecoverLifeOnKillingPoisonedEnemyPerPoison", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9704, + }, + ["tradeHashes"] = { + [2535713562] = { + "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalReducedPoisonDuration"] = { + "(40-60)% reduced Poison Duration on you", + ["affix"] = "", + ["group"] = "ReducedPoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "mutatedunique_vaal", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(40-60)% reduced Poison Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { + "(25-50)% reduced effect of Shock on you", + ["affix"] = "", + ["group"] = "ReducedShockEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9859, + }, + ["tradeHashes"] = { + [3801067695] = { + "(25-50)% reduced effect of Shock on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { + "Elemental Ailments other than Freeze you inflict are Reflected to you", + ["affix"] = "", + ["group"] = "ReflectElementalAilmentsToSelf", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 6261, + }, + ["tradeHashes"] = { + [1370804479] = { + "Elemental Ailments other than Freeze you inflict are Reflected to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { + "Remove Bleeding when you use a Life Flask", + ["affix"] = "", + ["group"] = "RemoveBleedOnLifeFlaskUse", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9744, + }, + ["tradeHashes"] = { + [1394184789] = { + "Remove Bleeding when you use a Life Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalShockEffect"] = { + "(20-40)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(20-40)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSkillCostEfficiency"] = { + "(20-30)% increased Cost Efficiency", + ["affix"] = "", + ["group"] = "SkillCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4743, + }, + ["tradeHashes"] = { + [263495202] = { + "(20-30)% increased Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSkillCostEfficiency1"] = { + "(-30-30)% reduced Cost Efficiency", + ["affix"] = "", + ["group"] = "SkillCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4743, + }, + ["tradeHashes"] = { + [263495202] = { + "(-30-30)% reduced Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSkillCostEfficiency2"] = { + "(10-20)% increased Cost Efficiency", + ["affix"] = "", + ["group"] = "SkillCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4743, + }, + ["tradeHashes"] = { + [263495202] = { + "(10-20)% increased Cost Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { + "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", + ["affix"] = "", + ["group"] = "SpellAilmentEffectPerLifeNonChannelling", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9988, + }, + ["tradeHashes"] = { + [4245905059] = { + "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { + "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { + "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { + "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", + ["affix"] = "", + ["group"] = "SpellCriticalChancePerManaNonChannelling", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 9994, + }, + ["tradeHashes"] = { + [1367999357] = { + "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellDamageLifeLeech"] = { + "5% of Spell Damage Leeched as Life", + ["affix"] = "", + ["group"] = "SpellDamageLifeLeech", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 4711, + }, + ["tradeHashes"] = { + [782941180] = { + "5% of Spell Damage Leeched as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellDamagePerMana"] = { + "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", + ["affix"] = "", + ["group"] = "SpellDamagePerManaNonChannelling", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10006, + }, + ["tradeHashes"] = { + [3843734793] = { + "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellLifeCostPercent"] = { + "(25-50)% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "", + ["group"] = "SpellLifeCostPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + "caster", + }, + ["statOrder"] = { + 10038, + }, + ["tradeHashes"] = { + [3544050945] = { + "(25-50)% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { + "(-30-30)% reduced Projectile Speed for Spell Skills", + ["affix"] = "", + ["group"] = "SpellSkillProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10031, + }, + ["tradeHashes"] = { + [3359797958] = { + "(-30-30)% reduced Projectile Speed for Spell Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { + "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", + ["affix"] = "", + ["group"] = "SpellsFire8AdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10030, + }, + ["tradeHashes"] = { + [4224832423] = { + "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { + "(20-30)% increased Surrounded Area of Effect", + ["affix"] = "", + ["group"] = "SurroundedAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10203, + }, + ["tradeHashes"] = { + [909236563] = { + "(20-30)% increased Surrounded Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { + "(20-60)% increased Surrounded Area of Effect", + ["affix"] = "", + ["group"] = "SurroundedAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10203, + }, + ["tradeHashes"] = { + [909236563] = { + "(20-60)% increased Surrounded Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { + "(10-20)% increased Totem Damage per Curse on you", + ["affix"] = "", + ["group"] = "TotemDamagePerCurseOnSelf", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10284, + }, + ["tradeHashes"] = { + [2639983772] = { + "(10-20)% increased Totem Damage per Curse on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalTotemDuration"] = { + "(-30-30)% reduced Totem Duration", + ["affix"] = "", + ["group"] = "TotemDuration", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 1537, + }, + ["tradeHashes"] = { + [2357996603] = { + "(-30-30)% reduced Totem Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { + "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", + ["affix"] = "", + ["group"] = "TreatResistsAsInvertedChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10316, + }, + ["tradeHashes"] = { + [3593401321] = { + "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceDamage"] = { + "(10-20)% less Damage", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceDamage", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "damage", + }, + ["statOrder"] = { + 10469, + }, + ["tradeHashes"] = { + [1274947822] = { + "(10-20)% less Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceDefences"] = { + "(10-20)% less Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceDefences", + ["level"] = 1, + ["modTags"] = { + "defences", + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10470, + }, + ["tradeHashes"] = { + [1803659985] = { + "(10-20)% less Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceLife"] = { + "(10-20)% less maximum Life", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "life", + }, + ["statOrder"] = { + 10471, + }, + ["tradeHashes"] = { + [1633735772] = { + "(10-20)% less maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceMana"] = { + "(10-20)% less maximum Mana", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mutatedunique_vaal", + "mana", + }, + ["statOrder"] = { + 10472, + }, + ["tradeHashes"] = { + [3045154261] = { + "(10-20)% less maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { + "(10-20)% less Movement Speed", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceMovementSpeed", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + "speed", + }, + ["statOrder"] = { + 10473, + }, + ["tradeHashes"] = { + [2146799605] = { + "(10-20)% less Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVivisectionPriceSpirit"] = { + "(10-20)% less Spirit", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceSpirit", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 10474, + }, + ["tradeHashes"] = { + [537850431] = { + "(10-20)% less Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { + "(50-100)% of Volatility Physical Damage Taken as Cold Damage", + ["affix"] = "", + ["group"] = "VolatilityDamageTakenAsColdPercent", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 2210, + }, + ["tradeHashes"] = { + [3190121041] = { + "(50-100)% of Volatility Physical Damage Taken as Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalVolatilityOnCritChance"] = { + "(30-50)% chance to grant Volatility on Critical Hit", + ["affix"] = "", + ["group"] = "VolatilityOnCritChance", + ["level"] = 1, + ["modTags"] = { + "mutatedunique_vaal", + }, + ["statOrder"] = { + 7364, + }, + ["tradeHashes"] = { + [2931872063] = { + "(30-50)% chance to grant Volatility on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueMutatedVaalZealotsOath"] = { + "Life Regeneration is applied to Energy Shield instead", + ["affix"] = "", + ["group"] = "ZealotsOath", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "mutatedunique_vaal", + "life", + "energy_shield", + }, + ["statOrder"] = { + 9727, + }, + ["tradeHashes"] = { + [632761194] = { + "Life Regeneration is applied to Energy Shield instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesAddedChaosDamage1"] = { + "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAddedChaosDamage", + ["level"] = 82, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + "attack", + }, + ["statOrder"] = { + 911, + }, + ["tradeHashes"] = { + [262946222] = { + "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesAddedColdDamage1"] = { + "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAddedColdDamage", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 909, + }, + ["tradeHashes"] = { + [2347036682] = { + "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesAddedFireDamage1"] = { + "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAddedFireDamage", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 908, + }, + ["tradeHashes"] = { + [849987426] = { + "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesAddedLightningDamage1"] = { + "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAddedLightningDamage", + ["level"] = 82, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 910, + }, + ["tradeHashes"] = { + [2854751904] = { + "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesAllDamage1"] = { + "Allies in your Presence deal 50% increased Damage", + ["affix"] = "", + ["group"] = "AlliesInPresenceAllDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 906, + }, + ["tradeHashes"] = { + [1798257884] = { + "Allies in your Presence deal 50% increased Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesCriticalMultiplier1"] = { + "Allies in your Presence have (30-50)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "AlliesInPresenceCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 917, + }, + ["tradeHashes"] = { + [3057012405] = { + "Allies in your Presence have (30-50)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesCriticalStrikeChance1"] = { + "Allies in your Presence have (20-30)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (20-30)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesCriticalStrikeChance2"] = { + "Allies in your Presence have (30-50)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "AlliesInPresenceCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (30-50)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesDamageAsFire1"] = { + "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "NearbyAlliesDamageAsFire", + ["level"] = 69, + ["modTags"] = { + "elemental", + "fire", + "aura", + }, + ["statOrder"] = { + 4285, + }, + ["tradeHashes"] = { + [2173791158] = { + "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { + "Allies in your Presence have (10-20)% increased Attack Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 918, + }, + ["tradeHashes"] = { + [1998951374] = { + "Allies in your Presence have (10-20)% increased Attack Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { + "Allies in your Presence have (10-20)% increased Cast Speed", + ["affix"] = "", + ["group"] = "AlliesInPresenceIncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (10-20)% increased Cast Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesLifeRegeneration1"] = { + "Allies in your Presence Regenerate (50-100) Life per second", + ["affix"] = "", + ["group"] = "AlliesInPresenceLifeRegeneration", + ["level"] = 78, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (50-100) Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { + "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", + ["affix"] = "", + ["group"] = "NearbyAlliesPercentLifeRegeneration", + ["level"] = 69, + ["modTags"] = { + "resource", + "life", + "aura", + }, + ["statOrder"] = { + 922, + }, + ["tradeHashes"] = { + [3081479811] = { + "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNearbyEnemyLightningResistanceEqual1"] = { + "Enemies in your Presence have Lightning Resistance equal to yours", + ["affix"] = "", + ["group"] = "NearbyEnemyLightningResistanceEqual", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 6366, + }, + ["tradeHashes"] = { + [1546580830] = { + "Enemies in your Presence have Lightning Resistance equal to yours", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoCriticalStrikeMultiplier1"] = { + "You have no Critical Damage Bonus", + ["affix"] = "", + ["group"] = "NoCriticalStrikeMultiplier", + ["level"] = 32, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1405, + }, + ["tradeHashes"] = { + [4058681894] = { + "You have no Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoCriticalStrikeMultiplier2"] = { + "You have no Critical Damage Bonus", + ["affix"] = "", + ["group"] = "NoCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 1405, + }, + ["tradeHashes"] = { + [4058681894] = { + "You have no Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoExtraBleedDamageWhileMoving1"] = { + "Moving while Bleeding doesn't cause you to take extra damage", + ["affix"] = "", + ["group"] = "NoExtraBleedDamageWhileMoving", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 2911, + }, + ["tradeHashes"] = { + [4112450013] = { + "Moving while Bleeding doesn't cause you to take extra damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoLifeRegeneration1"] = { + "You have no Life Regeneration", + ["affix"] = "", + ["group"] = "NoLifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2020, + }, + ["tradeHashes"] = { + [854225133] = { + "You have no Life Regeneration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoManaPerIntelligence1"] = { + "Gain no inherent bonus from Intelligence", + ["affix"] = "", + ["group"] = "NoMaximumManaPerIntelligence", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1762, + }, + ["tradeHashes"] = { + [4187571952] = { + "Gain no inherent bonus from Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoManaRegenIfNotCritRecently1"] = { + "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + ["affix"] = "", + ["group"] = "NoManaRegenIfNotCritRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 9213, + }, + ["tradeHashes"] = { + [1458880585] = { + "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoMovementPenaltyRaisedShield1"] = { + "No Movement Speed Penalty while Shield is Raised", + ["affix"] = "", + ["group"] = "NoMovementPenaltyRaisedShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9214, + }, + ["tradeHashes"] = { + [585231074] = { + "No Movement Speed Penalty while Shield is Raised", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNoSlowPotency1"] = { + "Your speed is unaffected by Slows", + ["affix"] = "", + ["group"] = "NoSlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9937, + }, + ["tradeHashes"] = { + [50721145] = { + "Your speed is unaffected by Slows", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingAttackLightningDamage1"] = { + "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", + ["affix"] = "", + ["group"] = "NonChannellingAttackLightningDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 9216, + }, + ["tradeHashes"] = { + [4252580517] = { + "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingAttackManaCost1"] = { + "Non-Channelling Attacks cost an additional 6% of your maximum Mana", + ["affix"] = "", + ["group"] = "NonChannellingAttackManaCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + "attack", + }, + ["statOrder"] = { + 4724, + }, + ["tradeHashes"] = { + [3199954470] = { + "Non-Channelling Attacks cost an additional 6% of your maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingSpellCriticalChance1"] = { + "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", + ["affix"] = "", + ["group"] = "NonChannellingSpellCriticalChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 9996, + }, + ["tradeHashes"] = { + [170426423] = { + "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingSpellDamage1"] = { + "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", + ["affix"] = "", + ["group"] = "NonChannellingSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10016, + }, + ["tradeHashes"] = { + [1027889455] = { + "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingSpellLifeCost1"] = { + "Non-Channelling Spells cost an additional 6% of your maximum Life", + ["affix"] = "", + ["group"] = "NonChannellingSpellLifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 4709, + }, + ["tradeHashes"] = { + [1920747151] = { + "Non-Channelling Spells cost an additional 6% of your maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { + "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", + ["affix"] = "", + ["group"] = "NonChannellingSpellsDoubleManaAndCrit", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "resource", + "mana", + "caster", + "critical", + }, + ["statOrder"] = { + 9219, + }, + ["tradeHashes"] = { + [2758035461] = { + "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChilledEnemiesBleedAndChill1"] = { + "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "NonChilledEnemiesBleedAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4280, + }, + ["tradeHashes"] = { + [1717295693] = { + "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonChilledEnemiesPoisonAndChill1"] = { + "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + ["affix"] = "", + ["group"] = "NonChilledEnemiesPoisonAndChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 4281, + }, + ["tradeHashes"] = { + [1375667591] = { + "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueNonherentRageLoss1"] = { + "No Inherent loss of Rage", + ["affix"] = "", + ["group"] = "NoInherentRageLoss", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9212, + }, + ["tradeHashes"] = { + [4163076972] = { + "No Inherent loss of Rage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnHitBlindChilledEnemies1"] = { + "Blind Chilled enemies on Hit", + ["affix"] = "", + ["group"] = "OnHitBlindChilledEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4925, + }, + ["tradeHashes"] = { + [3450276548] = { + "Blind Chilled enemies on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { + "Can Attack as though using a One Handed Mace while both of your hand slots are empty", + "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", + ["affix"] = "", + ["group"] = "FacebreakerUseMaceSkillsUnarmed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10398, + 10398.1, + }, + ["tradeHashes"] = { + [627896047] = { + "Can Attack as though using a One Handed Mace while both of your hand slots are empty", + "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnlySocketEmeraldJewel1"] = { + "You can only Socket Emerald Jewels in this item", + ["affix"] = "", + ["group"] = "OnlySocketEmeraldJewel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 74, + }, + ["tradeHashes"] = { + [3598729471] = { + "You can only Socket Emerald Jewels in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnlySocketRubyJewel1"] = { + "You can only Socket Ruby Jewels in this item", + ["affix"] = "", + ["group"] = "OnlySocketRubyJewel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 73, + }, + ["tradeHashes"] = { + [4031148736] = { + "You can only Socket Ruby Jewels in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnlySocketRunes1"] = { + "Only Runes can be Socketed in this item", + ["affix"] = "", + ["group"] = "OnlySocketRunes", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 60, + }, + ["tradeHashes"] = { + [326412910] = { + "Only Runes can be Socketed in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnlySocketSapphireJewel1"] = { + "You can only Socket Sapphire Jewels in this item", + ["affix"] = "", + ["group"] = "OnlySocketSapphireJewel", + ["level"] = 1, + ["modTags"] = { + "gem", + }, + ["statOrder"] = { + 75, + }, + ["tradeHashes"] = { + [21302430] = { + "You can only Socket Sapphire Jewels in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnlySocketSoulCores1"] = { + "Only Soul Cores can be Socketed in this item", + ["affix"] = "", + ["group"] = "OnlySocketSoulCores", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 61, + }, + ["tradeHashes"] = { + [250458861] = { + "Only Soul Cores can be Socketed in this item", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOnslaughtBuffOnKill1"] = { + "You gain Onslaught for 4 seconds on Kill", + ["affix"] = "", + ["group"] = "OnslaughtBuffOnKill", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2417, + }, + ["tradeHashes"] = { + [1195849808] = { + "You gain Onslaught for 4 seconds on Kill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOtherModifiersToRarityDoNotApply1"] = { + "(15-20)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + ["affix"] = "", + ["group"] = "GraveBindRarityWithExclusion", + ["level"] = 1, + ["modTags"] = { + "drop", + }, + ["statOrder"] = { + 943, + 943.1, + }, + ["tradeHashes"] = { + [1602191394] = { + "(15-20)% increased Rarity of Items found", + "Your other Modifiers to Rarity of Items found do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOverencumbranceOnDodge1"] = { + "Gain Overencumbrance for 4 seconds when you Dodge Roll", + ["affix"] = "", + ["group"] = "UniqueOvercumbranceOnDodge", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9373, + }, + ["tradeHashes"] = { + [2148576938] = { + "Gain Overencumbrance for 4 seconds when you Dodge Roll", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOverkillDamagePhysical1"] = { + "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", + ["affix"] = "", + ["group"] = "OverkillDamagePhysical", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9374, + }, + ["tradeHashes"] = { + [2301852600] = { + "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueOverrideWeaponBaseCritical1"] = { + "Base Critical Hit Chance for Attacks with Weapons is 7%", + ["affix"] = "", + ["group"] = "OverrideWeaponBaseCritical", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9376, + }, + ["tradeHashes"] = { + [2635559734] = { + "Base Critical Hit Chance for Attacks with Weapons is 7%", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePainAttunement1"] = { + "Pain Attunement", + ["affix"] = "", + ["group"] = "PainAttunement", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10717, + }, + ["tradeHashes"] = { + [98977150] = { + "Pain Attunement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParriedCausesSpellDamageTaken1"] = { + "Parried enemies take more Spell Damage instead of more Attack Damage", + ["affix"] = "", + ["group"] = "ParriedCausesSpellDamageTaken", + ["level"] = 1, + ["modTags"] = { + "block", + "caster", + }, + ["statOrder"] = { + 9380, + }, + ["tradeHashes"] = { + [3488640354] = { + "Parried enemies take more Spell Damage instead of more Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParriedDebuffDuration1"] = { + "50% increased Parried Debuff Duration", + ["affix"] = "", + ["group"] = "ParriedDebuffDuration", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9392, + }, + ["tradeHashes"] = { + [3401186585] = { + "50% increased Parried Debuff Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParriedDebuffDuration2"] = { + "100% increased Parried Debuff Duration", + ["affix"] = "", + ["group"] = "ParriedDebuffDuration", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9392, + }, + ["tradeHashes"] = { + [3401186585] = { + "100% increased Parried Debuff Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParriedDebuffMagnitude1"] = { + "50% increased Parried Debuff Magnitude", + ["affix"] = "", + ["group"] = "ParriedDebuffMagnitude", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9379, + }, + ["tradeHashes"] = { + [818877178] = { + "50% increased Parried Debuff Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParryConvertToCold1"] = { + "100% of Parry Physical Damage Converted to Cold Damage", + ["affix"] = "", + ["group"] = "UniqueParryConvertToCold1", + ["level"] = 1, + ["modTags"] = { + "block", + "elemental", + "cold", + }, + ["statOrder"] = { + 9390, + }, + ["tradeHashes"] = { + [2089152298] = { + "100% of Parry Physical Damage Converted to Cold Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParryDamage1"] = { + "100% increased Parry Damage", + ["affix"] = "", + ["group"] = "ParryDamage", + ["level"] = 1, + ["modTags"] = { + "block", + "damage", + }, + ["statOrder"] = { + 9384, + }, + ["tradeHashes"] = { + [1569159338] = { + "100% increased Parry Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueParryStunModifiersApplyToFreeze1"] = { + "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + ["affix"] = "", + ["group"] = "UniqueParryStunModifiersApplyToFreeze1", + ["level"] = 1, + ["modTags"] = { + "block", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 9388, + }, + ["tradeHashes"] = { + [3201111383] = { + "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePerandusArrows1"] = { + "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + ["affix"] = "", + ["group"] = "PerandusArrows", + ["level"] = 83, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6249, + }, + ["tradeHashes"] = { + [3891922348] = { + "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentAllAttributesPerSocketable1"] = { + "5% increased Attributes per Socket filled", + ["affix"] = "", + ["group"] = "PercentAllAttributesPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7607, + }, + ["tradeHashes"] = { + [2513318031] = { + "5% increased Attributes per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentEvasionRatingAsExtraArmour1"] = { + "Gain (15-30)% of Evasion Rating as extra Armour", + ["affix"] = "", + ["group"] = "PercentEvasionRatingAsExtraArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + "evasion", + }, + ["statOrder"] = { + 6501, + }, + ["tradeHashes"] = { + [1546604934] = { + "Gain (15-30)% of Evasion Rating as extra Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageDexterity1"] = { + "(5-15)% increased Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(5-15)% increased Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageDexterity2"] = { + "10% reduced Dexterity", + ["affix"] = "", + ["group"] = "PercentageDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "10% reduced Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageIntelligence1"] = { + "(5-15)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(5-15)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageIntelligence2"] = { + "10% reduced Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "10% reduced Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageIntelligence3"] = { + "(5-10)% increased Intelligence", + ["affix"] = "", + ["group"] = "PercentageIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(5-10)% increased Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageStrength1"] = { + "(5-15)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(5-15)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePercentageStrength2"] = { + "(15-30)% increased Strength", + ["affix"] = "", + ["group"] = "PercentageStrength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(15-30)% increased Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePerfectTimingWindow1"] = { + "Skills have a (100-150)% longer Perfect Timing window", + ["affix"] = "", + ["group"] = "PerfectTimingWindow", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9424, + }, + ["tradeHashes"] = { + [1373370443] = { + "Skills have a (100-150)% longer Perfect Timing window", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePerfectTimingWindowDuringFlaskEffect1"] = { + "Skills have (80-120)% longer Perfect Timing window during effect", + ["affix"] = "", + ["group"] = "PerfectTimingWindowDuringFlaskEffect", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 748, + }, + ["tradeHashes"] = { + [3982604001] = { + "Skills have (80-120)% longer Perfect Timing window during effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalAttackDamageTaken1"] = { + "-10 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-10 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalAttackDamageTaken2"] = { + "-4 Physical Damage taken from Attack Hits", + ["affix"] = "", + ["group"] = "PhysicalAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1959, + }, + ["tradeHashes"] = { + [3441651621] = { + "-4 Physical Damage taken from Attack Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { + "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageAddedAsChaosAttacks", + ["level"] = 1, + ["modTags"] = { + "physical", + "chaos", + "attack", + }, + ["statOrder"] = { + 1290, + }, + ["tradeHashes"] = { + [261503687] = { + "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageAvoidance1"] = { + "(10-30)% chance to Avoid Physical Damage from Hits", + ["affix"] = "", + ["group"] = "PhysicalDamageAvoidance", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 3075, + }, + ["tradeHashes"] = { + [2415497478] = { + "(10-30)% chance to Avoid Physical Damage from Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageFromHitsContributesToChillAndFreeze1"] = { + "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + ["affix"] = "", + ["group"] = "PhysicalDamageFromHitsContributesToChillAndFreeze", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 2641, + }, + ["tradeHashes"] = { + [905072977] = { + "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageMaximumLife1"] = { + "Attacks have added Physical damage equal to 3% of maximum Life", + ["affix"] = "", + ["group"] = "PhysicalDamageMaximumLife", + ["level"] = 75, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4464, + }, + ["tradeHashes"] = { + [2723294374] = { + "Attacks have added Physical damage equal to 3% of maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageOnSkillUse1"] = { + "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", + ["affix"] = "", + ["group"] = "PhysicalDamageOnSkillUse", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 9920, + }, + ["tradeHashes"] = { + [3181887481] = { + "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamagePin1"] = { + "Physical Damage is Pinning", + ["affix"] = "", + ["group"] = "PhysicalDamagePin", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4735, + }, + ["tradeHashes"] = { + [2041668411] = { + "Physical Damage is Pinning", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamagePreventedRecoup1"] = { + "50% of Physical Damage prevented Recouped as Life", + ["affix"] = "", + ["group"] = "PhysicalDamagePreventedRecoup", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "physical", + }, + ["statOrder"] = { + 9451, + }, + ["tradeHashes"] = { + [1374654984] = { + "50% of Physical Damage prevented Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageTaken1"] = { + "(40-50)% increased Physical Damage taken", + ["affix"] = "", + ["group"] = "PhysicalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 1966, + }, + ["tradeHashes"] = { + [3853018505] = { + "(40-50)% increased Physical Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageTakenAsFire1"] = { + "50% of Physical Damage taken as Fire Damage", + ["affix"] = "", + ["group"] = "PhysicalHitAndDoTDamageTakenAsFire", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2200, + }, + ["tradeHashes"] = { + [1004468512] = { + "50% of Physical Damage taken as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageTakenAsLightningPercent1"] = { + "(30-50)% of Physical damage from Hits taken as Lightning damage", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenAsLightningPercent", + ["level"] = 1, + ["modTags"] = { + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2201, + }, + ["tradeHashes"] = { + [425242359] = { + "(30-50)% of Physical damage from Hits taken as Lightning damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageTakenPercentToReflect1"] = { + "250% of Melee Physical Damage taken reflected to Attacker", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenPercentToReflect", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2241, + }, + ["tradeHashes"] = { + [1092987622] = { + "250% of Melee Physical Damage taken reflected to Attacker", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalDamageTakenUnmetRequirements1"] = { + "Take Physical Damage per total unmet Strength Requirement when you Attack", + ["affix"] = "", + ["group"] = "PhysicalDamageTakenUnmetRequirements", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 10227, + }, + ["tradeHashes"] = { + [3887716633] = { + "Take Physical Damage per total unmet Strength Requirement when you Attack", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalMaximumDamageModifier1"] = { + "(30-40)% more maximum Physical Attack Damage", + ["affix"] = "", + ["group"] = "RyuslathaMaximumDamageModifier", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1157, + }, + ["tradeHashes"] = { + [3735888493] = { + "(30-40)% more maximum Physical Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePhysicalMinimumDamageModifier1"] = { + "(30-40)% less minimum Physical Attack Damage", + ["affix"] = "", + ["group"] = "RyuslathaMinimumDamageModifier", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 1158, + }, + ["tradeHashes"] = { + [2423248184] = { + "(30-40)% less minimum Physical Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePinAlmostPinnedEnemies1"] = { + "Pin Enemies which are Primed for Pinning", + ["affix"] = "", + ["group"] = "PinAlmostPinnedEnemies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9475, + }, + ["tradeHashes"] = { + [3063814459] = { + "Pin Enemies which are Primed for Pinning", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePoisonDuration1"] = { + "(10-20)% increased Poison Duration", + ["affix"] = "", + ["group"] = "PoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(10-20)% increased Poison Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePoisonEffect1"] = { + "(15-25)% increased Magnitude of Poison you inflict", + ["affix"] = "", + ["group"] = "PoisonEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(15-25)% increased Magnitude of Poison you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePoisonOnBlock1"] = { + "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", + ["affix"] = "", + ["group"] = "PoisonDamageBlock", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9489, + }, + ["tradeHashes"] = { + [4195198267] = { + "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePoisonOnCrit1"] = { + "Critical Hits Poison the enemy", + ["affix"] = "", + ["group"] = "PoisonOnCrit", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "attack", + "critical", + "ailment", + }, + ["statOrder"] = { + 9502, + }, + ["tradeHashes"] = { + [62849030] = { + "Critical Hits Poison the enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePoisonStackCount1"] = { + "Targets can be affected by +1 of your Poisons at the same time", + ["affix"] = "", + ["group"] = "PoisonStackCount", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9327, + }, + ["tradeHashes"] = { + [1755296234] = { + "Targets can be affected by +1 of your Poisons at the same time", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePowerChargeOnCritChance1"] = { + "25% chance to gain a Power Charge on Critical Hit", + ["affix"] = "", + ["group"] = "PowerChargeOnCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "power_charge", + "critical", + }, + ["statOrder"] = { + 1585, + }, + ["tradeHashes"] = { + [3814876985] = { + "25% chance to gain a Power Charge on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePowerChargeOnHit1"] = { + "20% chance to gain a Power Charge on Hit", + ["affix"] = "", + ["group"] = "PowerChargeOnHit", + ["level"] = 1, + ["modTags"] = { + "power_charge", + }, + ["statOrder"] = { + 1589, + }, + ["tradeHashes"] = { + [1453197917] = { + "20% chance to gain a Power Charge on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius1"] = { + "50% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "50% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius2"] = { + "50% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "50% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius3"] = { + "(30-60)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(30-60)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius4"] = { + "(30-40)% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(30-40)% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius5"] = { + "(60-80)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(60-80)% increased Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniquePresenceRadius6"] = { + "(20-40)% reduced Presence Area of Effect", + ["affix"] = "", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(20-40)% reduced Presence Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileDamageIfMeleeHitRecently1"] = { + "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "", + ["group"] = "ProjectileDamageIfMeleeHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 9547, + }, + ["tradeHashes"] = { + [3596695232] = { + "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { + "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", + ["affix"] = "", + ["group"] = "ProjectileIncreasedCriticalHitChancePerPierce", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 9564, + }, + ["tradeHashes"] = { + [1163615092] = { + "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileIncreasedDamagePerPierce1"] = { + "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", + ["affix"] = "", + ["group"] = "ProjectileIncreasedDamagePerPierce", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 9554, + }, + ["tradeHashes"] = { + [883169830] = { + "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileParryInfiniteDistance1"] = { + "Infinite Parry Range", + ["affix"] = "", + ["group"] = "ProjectileParryInfiniteDistance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 7338, + }, + ["tradeHashes"] = { + [1076031760] = { + "Infinite Parry Range", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileSpeed1"] = { + "(40-60)% increased Projectile Speed", + ["affix"] = "", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(40-60)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileSpeed2"] = { + "(20-30)% increased Projectile Speed", + ["affix"] = "", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(20-30)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectileSpeed3"] = { + "(20-30)% increased Projectile Speed", + ["affix"] = "", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(20-30)% increased Projectile Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { + "Arrows Return if they have Pierced a target which had Fully Broken Armour", + ["affix"] = "", + ["group"] = "UniqueProjectilesReturnIfPiercedArmourBroken", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4437, + }, + ["tradeHashes"] = { + [1243721142] = { + "Arrows Return if they have Pierced a target which had Fully Broken Armour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueProjectilesSplitCount1"] = { + "Projectiles Split towards +2 targets", + ["affix"] = "", + ["group"] = "ProjectilesSplitCount", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9560, + }, + ["tradeHashes"] = { + [3464380325] = { + "Projectiles Split towards +2 targets", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueQuiverModifierEffect1"] = { + "(150-250)% increased bonuses gained from Equipped Quiver", + ["affix"] = "", + ["group"] = "QuiverModifierEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9605, + }, + ["tradeHashes"] = { + [1200678966] = { + "(150-250)% increased bonuses gained from Equipped Quiver", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRageGrantsSpellDamage1"] = { + "Rage grants Spell damage instead of Attack damage", + ["affix"] = "", + ["group"] = "RageGrantsSpellDamage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9621, + }, + ["tradeHashes"] = { + [2933909365] = { + "Rage grants Spell damage instead of Attack damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRageOnAnyHit1"] = { + "Gain (3-6) Rage on Hit", + ["affix"] = "", + ["group"] = "RageOnAnyHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4699, + }, + ["tradeHashes"] = { + [2258007247] = { + "Gain (3-6) Rage on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRageOnHit1"] = { + "Gain 1 Rage on Melee Hit", + ["affix"] = "", + ["group"] = "RageOnHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain 1 Rage on Melee Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRageRegeneration1"] = { + "Regenerate 5 Rage per second", + ["affix"] = "", + ["group"] = "RageRegeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4741, + }, + ["tradeHashes"] = { + [2853314994] = { + "Regenerate 5 Rage per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRaiseShieldAncientsChallenge1"] = { + "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", + "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", + ["affix"] = "", + ["group"] = "AncientsChallengeOnShieldRaise", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10567, + 10568, + }, + ["tradeHashes"] = { + [343703314] = { + "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", + }, + [774222208] = { + "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRaiseShieldApplyExposure1"] = { + "Inflict Elemental Exposure to Enemies 3 metres in front of you", + "for 4 seconds, every 0.25 seconds while raised", + ["affix"] = "", + ["group"] = "RaiseShieldApplyExposure", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 10426, + 10426.1, + }, + ["tradeHashes"] = { + [223138829] = { + "Inflict Elemental Exposure to Enemies 3 metres in front of you", + "for 4 seconds, every 0.25 seconds while raised", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRandomKeystoneFromTable1"] = { + "(1-33)", + ["affix"] = "", + ["group"] = "UniqueVivisectionRandomKeystone", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10672, + }, + ["tradeHashes"] = { + [3831171903] = { + "(1-33)", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRandomMovementVelocityOnHit1"] = { + "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", + ["affix"] = "", + ["group"] = "RandomMovementVelocityOnHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8907, + }, + ["tradeHashes"] = { + [796381300] = { + "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRandomlyCursedWhenTotemsDie1"] = { + "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + ["affix"] = "", + ["group"] = "RandomlyCursedWhenTotemsDie", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2330, + }, + ["tradeHashes"] = { + [2918129907] = { + "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRangedAttackDamageTaken1"] = { + "-10 Physical damage taken from Projectile Attacks", + ["affix"] = "", + ["group"] = "RangedAttackDamageTaken", + ["level"] = 1, + ["modTags"] = { + "physical", + "attack", + }, + ["statOrder"] = { + 1971, + }, + ["tradeHashes"] = { + [3612407781] = { + "-10 Physical damage taken from Projectile Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReceiveBleedingWhenHit1"] = { + "25% chance to be inflicted with Bleeding when Hit", + ["affix"] = "", + ["group"] = "ReceiveBleedingWhenHit", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 9654, + }, + ["tradeHashes"] = { + [3423694372] = { + "25% chance to be inflicted with Bleeding when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRechargeNotInterruptedRecently1"] = { + "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + ["affix"] = "", + ["group"] = "RechargeNotInterruptedRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3422, + }, + ["tradeHashes"] = { + [1419390131] = { + "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRechargeOnManaFlask1"] = { + "Energy Shield Recharge starts when you use a Mana Flask", + ["affix"] = "", + ["group"] = "RechargeOnManaFlask", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10081, + }, + ["tradeHashes"] = { + [2402413437] = { + "Energy Shield Recharge starts when you use a Mana Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRecoupLifeOpenWeakness1"] = { + "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", + ["affix"] = "", + ["group"] = "UniqueRecoupLifeAgainstOpenWeakness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4105, + }, + ["tradeHashes"] = { + [2285766967] = { + "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRecoverLifeBasedOnRegen1"] = { + "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", + ["affix"] = "", + ["group"] = "RecoverLifeBasedOnRegen", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9678, + }, + ["tradeHashes"] = { + [1457411584] = { + "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRecoverLifePercentOnBlock1"] = { + "Recover 4% of maximum Life when you Block", + ["affix"] = "", + ["group"] = "RecoverLifePercentOnBlock", + ["level"] = 1, + ["modTags"] = { + "block", + "resource", + "life", + }, + ["statOrder"] = { + 2792, + }, + ["tradeHashes"] = { + [2442647190] = { + "Recover 4% of maximum Life when you Block", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBleedDuration1"] = { + "(40-60)% reduced Duration of Bleeding on You", + ["affix"] = "", + ["group"] = "ReducedBleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(40-60)% reduced Duration of Bleeding on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBleedDuration2"] = { + "(40-60)% reduced Duration of Bleeding on You", + ["affix"] = "", + ["group"] = "ReducedBleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(40-60)% reduced Duration of Bleeding on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBleedDuration3"] = { + "(30-50)% reduced Duration of Bleeding on You", + ["affix"] = "", + ["group"] = "ReducedBleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(30-50)% reduced Duration of Bleeding on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBleedDuration4"] = { + "(40-60)% reduced Duration of Bleeding on You", + ["affix"] = "", + ["group"] = "ReducedBleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(40-60)% reduced Duration of Bleeding on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBurnDuration1"] = { + "(30-50)% reduced Ignite Duration on you", + ["affix"] = "", + ["group"] = "ReducedBurnDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(30-50)% reduced Ignite Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedBurnDuration2"] = { + "(30-50)% reduced Ignite Duration on you", + ["affix"] = "", + ["group"] = "ReducedBurnDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(30-50)% reduced Ignite Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedCharmChargesUsed1"] = { + "(10-30)% increased Charm Charges used", + ["affix"] = "", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(10-30)% increased Charm Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedCharmChargesUsed2"] = { + "(-10-10)% reduced Charm Charges used", + ["affix"] = "", + ["group"] = "BeltReducedCharmChargesUsed", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5606, + }, + ["tradeHashes"] = { + [1570770415] = { + "(-10-10)% reduced Charm Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedChillDuration1"] = { + "(30-50)% reduced Chill Duration on you", + ["affix"] = "", + ["group"] = "ReducedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1064, + }, + ["tradeHashes"] = { + [1874553720] = { + "(30-50)% reduced Chill Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedChillEffectOnSelf1"] = { + "(35-50)% reduced Effect of Chill on you", + ["affix"] = "", + ["group"] = "ChillEffectivenessOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1495, + }, + ["tradeHashes"] = { + [1478653032] = { + "(35-50)% reduced Effect of Chill on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { + "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", + ["affix"] = "", + ["group"] = "ReducedCriticalDamageTakenWhileChilled", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 6406, + }, + ["tradeHashes"] = { + [3923947492] = { + "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedCurseEffectOnYou1"] = { + "(30-50)% reduced effect of Curses on you", + ["affix"] = "", + ["group"] = "ReducedCurseEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "(30-50)% reduced effect of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedDamageIfNotHitRecently1"] = { + "20% less Damage taken if you have not been Hit Recently", + ["affix"] = "", + ["group"] = "ReducedDamageIfNotHitRecently", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3839, + }, + ["tradeHashes"] = { + [67637087] = { + "20% less Damage taken if you have not been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { + "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", + ["affix"] = "", + ["group"] = "ReducedExtraDamageFromCritsPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7634, + }, + ["tradeHashes"] = { + [701923421] = { + "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedFlaskChargesUsed1"] = { + "(20-30)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "BeltIncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(20-30)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedFlaskChargesUsed2"] = { + "50% increased Flask Charges used", + ["affix"] = "", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "50% increased Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedFlaskChargesUsed3"] = { + "(10-15)% reduced Flask Charges used", + ["affix"] = "", + ["group"] = "BeltReducedFlaskChargesUsed", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 1049, + }, + ["tradeHashes"] = { + [644456512] = { + "(10-15)% reduced Flask Charges used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedFreezeDuration1"] = { + "(30-50)% reduced Freeze Duration on you", + ["affix"] = "", + ["group"] = "ReducedFreezeDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1065, + }, + ["tradeHashes"] = { + [2160282525] = { + "(30-50)% reduced Freeze Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedIgniteEffectOnSelf1"] = { + "(35-50)% reduced Magnitude of Ignite on you", + ["affix"] = "", + ["group"] = "ReducedIgniteEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 7261, + }, + ["tradeHashes"] = { + [1269971728] = { + "(35-50)% reduced Magnitude of Ignite on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements1"] = { + "25% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "25% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements2"] = { + "25% reduced Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "25% reduced Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements3"] = { + "50% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "50% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements4"] = { + "50% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "50% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements5"] = { + "100% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "100% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedLocalAttributeRequirements6"] = { + "100% increased Attribute Requirements", + ["affix"] = "", + ["group"] = "LocalAttributeRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 948, + }, + ["tradeHashes"] = { + [3639275092] = { + "100% increased Attribute Requirements", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { + "20% reduced maximum Divinity per Corrupted Item Equipped", + ["affix"] = "", + ["group"] = "ReducedMaximumDivinityPerCorruptedItem", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8857, + }, + ["tradeHashes"] = { + [2189090852] = { + "20% reduced maximum Divinity per Corrupted Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedPoisonDuration1"] = { + "(40-60)% reduced Poison Duration on you", + ["affix"] = "", + ["group"] = "ReducedPoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(40-60)% reduced Poison Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedShockDuration1"] = { + "(30-50)% reduced Shock duration on you", + ["affix"] = "", + ["group"] = "ReducedShockDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1066, + }, + ["tradeHashes"] = { + [99927264] = { + "(30-50)% reduced Shock duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReducedShockEffectOnSelf1"] = { + "(35-50)% reduced effect of Shock on you", + ["affix"] = "", + ["group"] = "ReducedShockEffectOnSelf", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9859, + }, + ["tradeHashes"] = { + [3801067695] = { + "(35-50)% reduced effect of Shock on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReflectCurseToSelf1"] = { + "Curses you inflict are reflected back to you", + ["affix"] = "", + ["group"] = "ReflectCurseToSelf", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5942, + }, + ["tradeHashes"] = { + [4275855121] = { + "Curses you inflict are reflected back to you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReflectCurses1"] = { + "Curse Reflection", + ["affix"] = "", + ["group"] = "ReflectCurses", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2257, + }, + ["tradeHashes"] = { + [1731672673] = { + "Curse Reflection", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRegeneratePercentLifeIfHitRecently1"] = { + "Regenerate 5% of maximum Life per second if you have been Hit Recently", + ["affix"] = "", + ["group"] = "LifeRegenerationIfHitRecently", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1035, + }, + ["tradeHashes"] = { + [2201614328] = { + "Regenerate 5% of maximum Life per second if you have been Hit Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReloadSpeed1"] = { + "(40-60)% reduced Reload Speed", + ["affix"] = "", + ["group"] = "LocalReloadSpeed", + ["level"] = 65, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 947, + }, + ["tradeHashes"] = { + [710476746] = { + "(40-60)% reduced Reload Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReloadSpeed2"] = { + "(15-25)% increased Reload Speed", + ["affix"] = "", + ["group"] = "LocalReloadSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 947, + }, + ["tradeHashes"] = { + [710476746] = { + "(15-25)% increased Reload Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { + "(80-100)% increased Reservation Efficiency of Remnant Skills", + ["affix"] = "", + ["group"] = "RemnantSkillSpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9769, + }, + ["tradeHashes"] = { + [1350127730] = { + "(80-100)% increased Reservation Efficiency of Remnant Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRemnantsAffectAlliesInPresence1"] = { + "Remnants you create affect Allies in your Presence as well as you when collected", + ["affix"] = "", + ["group"] = "RemnantsAlsoAffectAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9741, + }, + ["tradeHashes"] = { + [315717203] = { + "Remnants you create affect Allies in your Presence as well as you when collected", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRemoveSpirit1"] = { + "You have no Spirit", + ["affix"] = "", + ["group"] = "RemoveSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10060, + }, + ["tradeHashes"] = { + [3148264775] = { + "You have no Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRepeatNoEnemyInPresence"] = { + "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", + ["affix"] = "", + ["group"] = "UniqueRepeatNoEnemyInPresence", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4092, + }, + ["tradeHashes"] = { + [2306588612] = { + "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRevealWeakness1"] = { + "Reveal Weaknesses against Rare and Unique enemies", + ["affix"] = "", + ["group"] = "UniqueRevealWeakness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4103, + }, + ["tradeHashes"] = { + [110659965] = { + "Reveal Weaknesses against Rare and Unique enemies", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueReverseChill1"] = { + "The Effect of Chill on you is reversed", + ["affix"] = "", + ["group"] = "ReverseChill", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 5646, + }, + ["tradeHashes"] = { + [2955966707] = { + "The Effect of Chill on you is reversed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRightRingSpellProjectilesCannotFork1"] = { + "Right ring slot: Projectiles from Spells cannot Fork", + ["affix"] = "", + ["group"] = "RightRingSpellProjectilesCannotFork", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7823, + }, + ["tradeHashes"] = { + [2933024469] = { + "Right ring slot: Projectiles from Spells cannot Fork", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRightRingSpellProjectilesChain1"] = { + "Right ring slot: Projectiles from Spells Chain +1 times", + ["affix"] = "", + ["group"] = "RightRingSpellProjectilesChain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7822, + }, + ["tradeHashes"] = { + [1555918911] = { + "Right ring slot: Projectiles from Spells Chain +1 times", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRingIgniteProliferation1"] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["affix"] = "", + ["group"] = "RingIgniteProliferation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1947, + }, + ["tradeHashes"] = { + [3314057862] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRollCriticalChanceTwice1"] = { + "Bifurcates Critical Hits", + ["affix"] = "", + ["group"] = "RollCriticalChanceTwice", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 1356, + }, + ["tradeHashes"] = { + [1451444093] = { + "Bifurcates Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueRunicBindingOnSpellHit1"] = { + "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", + "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", + ["affix"] = "", + ["group"] = "GainRunicBindingOnSpellHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6854, + 6854.1, + }, + ["tradeHashes"] = { + [3492740640] = { + "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", + "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSacrificeLifeForBolts1"] = { + "Sacrifice 300 Life to not consume the last bolt when firing", + ["affix"] = "", + ["group"] = "SacrificeLifeInsteadOfBolts", + ["level"] = 65, + ["modTags"] = { + }, + ["statOrder"] = { + 5762, + }, + ["tradeHashes"] = { + [76982026] = { + "Sacrifice 300 Life to not consume the last bolt when firing", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSacrificeLifeToGainEnergyShield1"] = { + "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", + ["affix"] = "", + ["group"] = "SacrificeLifeToGainES", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 9791, + }, + ["tradeHashes"] = { + [613752285] = { + "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSelfBleedFireDamage1"] = { + "You take Fire Damage instead of Physical Damage from Bleeding", + ["affix"] = "", + ["group"] = "SelfBleedFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 2238, + }, + ["tradeHashes"] = { + [2022332470] = { + "You take Fire Damage instead of Physical Damage from Bleeding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSelfCurseDuration1"] = { + "50% reduced Duration of Curses on you", + ["affix"] = "", + ["group"] = "SelfCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1912, + }, + ["tradeHashes"] = { + [2920970371] = { + "50% reduced Duration of Curses on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { + "300 Physical Damage taken on Minion Death", + ["affix"] = "", + ["group"] = "SelfPhysicalDamageOnMinionDeath", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 2762, + }, + ["tradeHashes"] = { + [4176970656] = { + "300 Physical Damage taken on Minion Death", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSelfStatusAilmentDuration1"] = { + "50% increased Elemental Ailment Duration on you", + ["affix"] = "", + ["group"] = "SelfStatusAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "ailment", + }, + ["statOrder"] = { + 1622, + }, + ["tradeHashes"] = { + [1745952865] = { + "50% increased Elemental Ailment Duration on you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSetElementalResistances1"] = { + "You have no Elemental Resistances", + ["affix"] = "", + ["group"] = "SetElementalResistances", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "elemental", + "resistance", + }, + ["statOrder"] = { + 2591, + }, + ["tradeHashes"] = { + [1776968075] = { + "You have no Elemental Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSetMovementVelocityPerEvasion1"] = { + "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", + "Other Modifiers to Movement Speed except for Sprinting do not apply", + ["affix"] = "", + ["group"] = "SetMovementVelocityPerEvasion", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9152, + 9152.1, + }, + ["tradeHashes"] = { + [3881997959] = { + "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", + "Other Modifiers to Movement Speed except for Sprinting do not apply", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShareChargesWithAllies1"] = { + "Share Charges with Allies in your Presence", + ["affix"] = "", + ["group"] = "ShareChargesWithAllies", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9823, + }, + ["tradeHashes"] = { + [2535267021] = { + "Share Charges with Allies in your Presence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockChanceIncrease1"] = { + "(50-100)% increased chance to Shock", + ["affix"] = "", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(50-100)% increased chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockChanceIncrease2"] = { + "(10-20)% increased chance to Shock", + ["affix"] = "", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(10-20)% increased chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockChanceIncrease3UNUSED"] = { + "(50-100)% increased chance to Shock", + ["affix"] = "", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(50-100)% increased chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockChanceIncrease4"] = { + "(20-40)% increased chance to Shock", + ["affix"] = "", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(20-40)% increased chance to Shock", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockEffect1"] = { + "(10-20)% increased Magnitude of Shock you inflict", + ["affix"] = "", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(10-20)% increased Magnitude of Shock you inflict", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockImmunityWhenShocked1"] = { + "You cannot be Shocked for 6 seconds after being Shocked", + ["affix"] = "", + ["group"] = "ShockImmunityWhenShocked", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 2655, + }, + ["tradeHashes"] = { + [215346464] = { + "You cannot be Shocked for 6 seconds after being Shocked", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockOnMaxPowerCharges1"] = { + "Shocks you when you reach maximum Power Charges", + ["affix"] = "", + ["group"] = "ShockOnMaxPowerCharges", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 3285, + }, + ["tradeHashes"] = { + [4256314560] = { + "Shocks you when you reach maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShockedGroundWhileMoving1"] = { + "Drop Shocked Ground while moving, lasting 8 seconds", + ["affix"] = "", + ["group"] = "ShockedGroundWhileMoving", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 3981, + }, + ["tradeHashes"] = { + [65133983] = { + "Drop Shocked Ground while moving, lasting 8 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueShrineBuffAlternating1"] = { + "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["affix"] = "", + ["group"] = "ShrineBuffAlternating", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7707, + }, + ["tradeHashes"] = { + [2879778895] = { + "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { + "Skills Cost Divinity instead of Mana or Life", + ["affix"] = "", + ["group"] = "SkillAndLifeCostsConvertedToDivinity", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 9918, + }, + ["tradeHashes"] = { + [467146530] = { + "Skills Cost Divinity instead of Mana or Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSkillEffectDuration1"] = { + "(30-50)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(30-50)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSkillEffectDuration2"] = { + "(10-15)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(10-15)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSkillsGainXGloryEvery2Seconds1"] = { + "Skills which require Glory generate (2-5) Glory every 2 seconds", + ["affix"] = "", + ["group"] = "UniqueSkillsGainXGloryEvery2Seconds", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4110, + }, + ["tradeHashes"] = { + [2480962043] = { + "Skills which require Glory generate (2-5) Glory every 2 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSlowEffect1"] = { + "Debuffs you inflict have (20-30)% increased Slow Magnitude", + ["affix"] = "", + ["group"] = "SlowEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4691, + }, + ["tradeHashes"] = { + [3650992555] = { + "Debuffs you inflict have (20-30)% increased Slow Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSlowPotency1"] = { + "50% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "50% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSmokeCloudWhenStationary1"] = { + "You have a Smoke Cloud around you while stationary", + ["affix"] = "", + ["group"] = "SmokeCloudWhenStationary", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9945, + }, + ["tradeHashes"] = { + [2592455368] = { + "You have a Smoke Cloud around you while stationary", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSoulEaterOpenWeakness1"] = { + "Eat a Soul on Hitting an enemy with an Open Weakness", + ["affix"] = "", + ["group"] = "UniqueSoulEaterAgainstOpenWeakness", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4104, + }, + ["tradeHashes"] = { + [1393838912] = { + "Eat a Soul on Hitting an enemy with an Open Weakness", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { + "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + ["affix"] = "", + ["group"] = "InflictBloodstoneLanceOnHit", + ["level"] = 1, + ["modTags"] = { + "unmutatable", + }, + ["statOrder"] = { + 9966, + }, + ["tradeHashes"] = { + [4106787208] = { + "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpeedPerDodgeRoll20Seconds1"] = { + "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + ["affix"] = "", + ["group"] = "SpeedPerDodgeRoll20Seconds", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 10419, + }, + ["tradeHashes"] = { + [3156445245] = { + "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellAdditionalProjectilesInCircle1"] = { + "Spells fire 4 additional Projectiles", + "Spells fire Projectiles in a circle", + ["affix"] = "", + ["group"] = "SpellAdditionalProjectilesInCircle", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10029, + 10029.1, + }, + ["tradeHashes"] = { + [1013492127] = { + "Spells fire 4 additional Projectiles", + "Spells fire Projectiles in a circle", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeChance1"] = { + "(20-40)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(20-40)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeChance2"] = { + "(30-50)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(30-50)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeChance3"] = { + "(30-50)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(30-50)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeMultiplier1"] = { + "(30-50)% increased Critical Spell Damage Bonus", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(30-50)% increased Critical Spell Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeMultiplier2"] = { + "(20-30)% increased Critical Spell Damage Bonus", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(20-30)% increased Critical Spell Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellCriticalStrikeMultiplierPerSpellCritRecently1"] = { + "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeMultiplierPerSpellCritRecently", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 983, + }, + ["tradeHashes"] = { + [2972244965] = { + "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamage1"] = { + "100% increased Spell Damage", + ["affix"] = "", + ["group"] = "SpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "100% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamage2"] = { + "(20-30)% increased Spell Damage", + ["affix"] = "", + ["group"] = "SpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(20-30)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamage3"] = { + "(60-100)% increased Spell Damage", + ["affix"] = "", + ["group"] = "SpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(60-100)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { + "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", + ["affix"] = "", + ["group"] = "SpellDamageAsExtraChaosPerCurse", + ["level"] = 1, + ["modTags"] = { + "chaos", + "caster", + }, + ["statOrder"] = { + 9306, + }, + ["tradeHashes"] = { + [2653175601] = { + "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { + "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", + ["affix"] = "", + ["group"] = "SpellDamageAsExtraPhysicalPerCurse", + ["level"] = 1, + ["modTags"] = { + "physical", + "caster", + }, + ["statOrder"] = { + 9307, + }, + ["tradeHashes"] = { + [1548338404] = { + "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageLifeLeech1"] = { + "10% of Spell Damage Leeched as Life", + ["affix"] = "", + ["group"] = "SpellDamageLifeLeech", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4711, + }, + ["tradeHashes"] = { + [782941180] = { + "10% of Spell Damage Leeched as Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { + "Increases and Reductions to Spell damage also apply to Attacks", + ["affix"] = "", + ["group"] = "SpellDamageModifiersApplyToAttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2458, + }, + ["tradeHashes"] = { + [3811649872] = { + "Increases and Reductions to Spell damage also apply to Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon1"] = { + "(20-40)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(20-40)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon10"] = { + "(80-120)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-120)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon11"] = { + "(80-120)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-120)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon12"] = { + "(71-113)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(71-113)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon2"] = { + "(80-100)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-100)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon3"] = { + "(80-120)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-120)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon4"] = { + "(80-100)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-100)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon5"] = { + "(40-50)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(40-50)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon6"] = { + "(60-100)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(60-100)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon7"] = { + "(80-120)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-120)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon8"] = { + "(80-100)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-100)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamageOnWeapon9"] = { + "(80-120)% increased Spell Damage", + ["affix"] = "", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(80-120)% increased Spell Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamagePerManaSpent1"] = { + "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", + ["affix"] = "", + ["group"] = "SpellDamagePerManaSpent", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 4006, + }, + ["tradeHashes"] = { + [347220474] = { + "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellDamagePerSpirit1"] = { + "(8-12)% increased Spell Damage per 10 Spirit", + ["affix"] = "", + ["group"] = "SpellDamagePerSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10018, + }, + ["tradeHashes"] = { + [2412053423] = { + "(8-12)% increased Spell Damage per 10 Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellLifeCostPercent1"] = { + "25% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "", + ["group"] = "SpellLifeCostPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "caster", + }, + ["statOrder"] = { + 10038, + }, + ["tradeHashes"] = { + [3544050945] = { + "25% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellWitherOnHitChance1"] = { + "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "SpellWitherOnHitChance", + ["level"] = 1, + ["modTags"] = { + "caster", + }, + ["statOrder"] = { + 10040, + }, + ["tradeHashes"] = { + [2348696937] = { + "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellsCannotPierce1"] = { + "Projectiles from Spells cannot Pierce", + ["affix"] = "", + ["group"] = "SpellsCannotPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9566, + }, + ["tradeHashes"] = { + [3826125995] = { + "Projectiles from Spells cannot Pierce", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { + "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", + ["affix"] = "", + ["group"] = "SpellsWhichCostLifeGainDamageAsExtraPhys", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "physical_damage", + "damage", + "physical", + "caster", + }, + ["statOrder"] = { + 10039, + }, + ["tradeHashes"] = { + [1088082880] = { + "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpiritPerMaximumLife1"] = { + "+1 to Maximum Spirit per 50 Maximum Life", + ["affix"] = "", + ["group"] = "SpiritPerMaximumLife", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10421, + }, + ["tradeHashes"] = { + [1345486764] = { + "+1 to Maximum Spirit per 50 Maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpiritPerSocketable1"] = { + "+(10-14) to Spirit per Socket filled", + ["affix"] = "", + ["group"] = "SpiritPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7832, + }, + ["tradeHashes"] = { + [4163415912] = { + "+(10-14) to Spirit per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSpiritReservationEfficiency1"] = { + "(30-50)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(30-50)% increased Spirit Reservation Efficiency", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStaffIgniteProliferation1"] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["affix"] = "", + ["group"] = "RingIgniteProliferation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1947, + }, + ["tradeHashes"] = { + [3314057862] = { + "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStatLifeReservation1"] = { + "Reserves 15% of Life", + ["affix"] = "", + ["group"] = "StatLifeReservation", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2191, + }, + ["tradeHashes"] = { + [2685246061] = { + "Reserves 15% of Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength1"] = { + "+(30-50) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(30-50) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength10"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength11"] = { + "+(5-10) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(5-10) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength12"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength13"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength14"] = { + "+(0-10) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(0-10) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength15"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength16"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength17"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength18"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength19"] = { + "+10 to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+10 to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength2"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength20"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength21"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength22"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength23"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength24"] = { + "+(15-25) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(15-25) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength25"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength26"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength27"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength28"] = { + "+(10-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength29"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength3"] = { + "+(10-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength30"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength31"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength32"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength33"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength34"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength35"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength36"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength37"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength38"] = { + "+(15-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(15-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength39"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength4"] = { + "-(20-10) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "-(20-10) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength40"] = { + "+(8-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(8-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength41"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength42"] = { + "+10 to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+10 to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength43"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 82, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength44"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength45"] = { + "+(20-30) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-30) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength46"] = { + "+(30-40) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(30-40) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength47"] = { + "+(15-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(15-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength48"] = { + "+(7-14) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(7-14) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength49"] = { + "+(15-25) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(15-25) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength5"] = { + "+(5-15) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(5-15) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength6"] = { + "+(40-50) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(40-50) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength7"] = { + "+(20-40) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(20-40) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength8"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrength9"] = { + "+(10-20) to Strength", + ["affix"] = "", + ["group"] = "Strength", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 992, + }, + ["tradeHashes"] = { + [4080418644] = { + "+(10-20) to Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthAndDexterity1"] = { + "+(10-20) to Strength and Dexterity", + ["affix"] = "", + ["group"] = "StrengthAndDexterity", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+(10-20) to Strength and Dexterity", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthAndIntelligence1"] = { + "+(10-20) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(10-20) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthAndIntelligence2"] = { + "+(20-30) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(20-30) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthAndIntelligence3"] = { + "+(15-25) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(15-25) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthAndIntelligence4"] = { + "+(10-20) to Strength and Intelligence", + ["affix"] = "", + ["group"] = "StrengthAndIntelligence", + ["level"] = 1, + ["modTags"] = { + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(10-20) to Strength and Intelligence", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthInherentBonusChange1"] = { + "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", + ["affix"] = "", + ["group"] = "StrengthInherentBonusChange", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1758, + }, + ["tradeHashes"] = { + [1602694371] = { + "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthRequirements1"] = { + "-15 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "-15 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthRequirements2"] = { + "+100 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+100 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthRequirements3"] = { + "+150 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+150 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthRequirements4"] = { + "+25 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+25 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthRequirements5"] = { + "+150 Strength Requirement", + ["affix"] = "", + ["group"] = "StrengthRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 827, + }, + ["tradeHashes"] = { + [2833226514] = { + "+150 Strength Requirement", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { + "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + ["affix"] = "", + ["group"] = "StrengthSatisfiesAllWeaponRequirements", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10117, + }, + ["tradeHashes"] = { + [2230687504] = { + "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunDamageIncrease1"] = { + "(30-50)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "StunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [239367161] = { + "(30-50)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunDamageIncrease2"] = { + "(20-30)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "StunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [239367161] = { + "(20-30)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunDuration1"] = { + "(10-20)% increased Stun Duration", + ["affix"] = "", + ["group"] = "LocalStunDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1054, + }, + ["tradeHashes"] = { + [748522257] = { + "(10-20)% increased Stun Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunRecovery1"] = { + "200% increased Stun Recovery", + ["affix"] = "", + ["group"] = "StunRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1060, + }, + ["tradeHashes"] = { + [2511217560] = { + "200% increased Stun Recovery", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold1"] = { + "+(40-60) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(40-60) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold10"] = { + "+(100-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(100-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold11"] = { + "+(100-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(100-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold12"] = { + "+(150-200) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(150-200) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold13"] = { + "+2500 to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+2500 to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold14"] = { + "+(60-100) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-100) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold15"] = { + "+(60-80) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-80) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold16"] = { + "+(60-80) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-80) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold17"] = { + "+(100-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(100-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold18"] = { + "+(100-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(100-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold19"] = { + "+(150-200) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(150-200) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold2"] = { + "+(30-50) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(30-50) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold20"] = { + "+(200-300) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(200-300) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold3"] = { + "+(200-300) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(200-300) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold4"] = { + "+(75-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(75-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold5"] = { + "+(50-70) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(50-70) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold6"] = { + "+(60-100) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-100) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold7"] = { + "+(60-80) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-80) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold8"] = { + "+(60-80) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(60-80) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThreshold9"] = { + "+(100-150) to Stun Threshold", + ["affix"] = "", + ["group"] = "StunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1061, + }, + ["tradeHashes"] = { + [915769802] = { + "+(100-150) to Stun Threshold", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueStunThresholdPerSocketable1"] = { + "+(70-90) to Stun Threshold per Socket filled", + ["affix"] = "", + ["group"] = "StunThresholdPerSocketable", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7834, + }, + ["tradeHashes"] = { + [3679769182] = { + "+(70-90) to Stun Threshold per Socket filled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSummonTotemCastSpeed1"] = { + "25% increased Totem Placement speed", + ["affix"] = "", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "25% increased Totem Placement speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueSupportGemLimit1"] = { + "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", + ["affix"] = "", + ["group"] = "SupportGemLimit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7580, + }, + ["tradeHashes"] = { + [664024640] = { + "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTailwindOnCriticalStrike1"] = { + "Gain Tailwind on Critical Hit, no more than once per second", + ["affix"] = "", + ["group"] = "TailwindOnCriticalStrike", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6865, + }, + ["tradeHashes"] = { + [2459662130] = { + "Gain Tailwind on Critical Hit, no more than once per second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTakeFireDamageOnIgnite1"] = { + "Take 100 Fire Damage when you Ignite an Enemy", + ["affix"] = "", + ["group"] = "TakeFireDamageOnIgnite", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 6578, + }, + ["tradeHashes"] = { + [2518598473] = { + "Take 100 Fire Damage when you Ignite an Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { + "Take no Extra Damage from Critical Hits", + ["affix"] = "", + ["group"] = "TakeNoExtraDamageFromCriticalStrikes", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 3931, + }, + ["tradeHashes"] = { + [4294267596] = { + "Take no Extra Damage from Critical Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTemporalChainsGemLevel1"] = { + "+4 to Level of Temporal Chains Skills", + ["affix"] = "", + ["group"] = "TemporalChainsGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 2008, + }, + ["tradeHashes"] = { + [1042153418] = { + "+4 to Level of Temporal Chains Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueThornsCriticalStrikeChance1"] = { + "+25% to Thorns Critical Hit Chance", + ["affix"] = "", + ["group"] = "ThornsCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 4758, + }, + ["tradeHashes"] = { + [2715190555] = { + "+25% to Thorns Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueThornsDamageIncrease1"] = { + "100% increased Thorns damage", + ["affix"] = "", + ["group"] = "ThornsDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "100% increased Thorns damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueThornsDamageOnStun1"] = { + "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + ["affix"] = "", + ["group"] = "ThornsDamageOnStun", + ["level"] = 60, + ["modTags"] = { + }, + ["statOrder"] = { + 6094, + }, + ["tradeHashes"] = { + [2107791433] = { + "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueThornsOnAnyHit1"] = { + "Thorns can Retaliate against all Hits", + ["affix"] = "", + ["group"] = "ThornsOnAnyHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10263, + }, + ["tradeHashes"] = { + [3414243317] = { + "Thorns can Retaliate against all Hits", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTotemReflectFireDamage1"] = { + "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", + ["affix"] = "", + ["group"] = "TotemReflectFireDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 3460, + }, + ["tradeHashes"] = { + [1723061251] = { + "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerDecomposeOnStep1"] = { + "Trigger Decompose every 1.2 metres travelled", + ["affix"] = "", + ["group"] = "CorpsewadeGrantsTriggeredCorpseCloud", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7687, + }, + ["tradeHashes"] = { + [3371943724] = { + "Trigger Decompose every 1.2 metres travelled", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerDetonationOnOffHandHit1"] = { + "Trigger Detonation on Hit", + ["affix"] = "", + ["group"] = "GrantsTriggeredDetonation", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7688, + }, + ["tradeHashes"] = { + [1524904258] = { + "Trigger Detonation on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { + "Trigger Ember Fusillade Skill on casting a Spell", + ["affix"] = "", + ["group"] = "GrantsTriggeredEmberFusillade", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7689, + }, + ["tradeHashes"] = { + [826162720] = { + "Trigger Ember Fusillade Skill on casting a Spell", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerGasCloudOnMainHandHit1"] = { + "Triggers Gas Cloud on Hit", + ["affix"] = "", + ["group"] = "GrantsTriggeredGasCloud", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7690, + }, + ["tradeHashes"] = { + [1652674074] = { + "Triggers Gas Cloud on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { + "Trigger Lightning Bolt Skill on Critical Hit", + ["affix"] = "", + ["group"] = "GrantsTriggeredLightningBolt", + ["level"] = 69, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7691, + }, + ["tradeHashes"] = { + [704919631] = { + "Trigger Lightning Bolt Skill on Critical Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { + "Trigger Spark Skill on killing a Shocked Enemy", + ["affix"] = "", + ["group"] = "GrantsTriggeredSpark", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 7692, + }, + ["tradeHashes"] = { + [811217923] = { + "Trigger Spark Skill on killing a Shocked Enemy", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTriggersRefundEnergySpent1"] = { + "Trigger skills refund half of Energy spent", + ["affix"] = "", + ["group"] = "TriggersRefundEnergySpent", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10320, + }, + ["tradeHashes"] = { + [599320227] = { + "Trigger skills refund half of Energy spent", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { + "(50-100)% more Stun Buildup with Lightning Damage", + ["affix"] = "", + ["group"] = "UniqueTwoHandedWeaponLightningStunMultiplier", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10430, + }, + ["tradeHashes"] = { + [2029147356] = { + "(50-100)% more Stun Buildup with Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnaffectedByCurses1"] = { + "Unaffected by Curses", + ["affix"] = "", + ["group"] = "UnaffectedByCurses", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2259, + }, + ["tradeHashes"] = { + [3809896400] = { + "Unaffected by Curses", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnaffectedBySlowsWhileSprinting1"] = { + "Your speed is Unaffected by Slows while Sprinting", + ["affix"] = "", + ["group"] = "UniqueAvoidSlowsWhileSprinting", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9939, + }, + ["tradeHashes"] = { + [3128773415] = { + "Your speed is Unaffected by Slows while Sprinting", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnarmedAttackDamagePerXStrength1"] = { + "1% more Unarmed Damage per 5 Strength", + ["affix"] = "", + ["group"] = "FacebreakerPhysicalUnarmedDamage", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + "attack", + }, + ["statOrder"] = { + 2188, + }, + ["tradeHashes"] = { + [3452816629] = { + "1% more Unarmed Damage per 5 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUndeadMinionReservation1"] = { + "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", + ["affix"] = "", + ["group"] = "UndeadMinionReservation", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10385, + }, + ["tradeHashes"] = { + [2308632835] = { + "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnholyMightOnZeroEnergyShield1"] = { + "You have Unholy Might while you have no Energy Shield", + ["affix"] = "", + ["group"] = "UnholyMightOnZeroEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2499, + }, + ["tradeHashes"] = { + [2353201291] = { + "You have Unholy Might while you have no Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { + "You can have any number of Companions of different types", + ["affix"] = "", + ["group"] = "UnlimitedDifferentCompanions", + ["level"] = 78, + ["modTags"] = { + }, + ["statOrder"] = { + 10667, + }, + ["tradeHashes"] = { + [603573028] = { + "You can have any number of Companions of different types", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUnwaveringStance1"] = { + "Unwavering Stance", + ["affix"] = "", + ["group"] = "UnwaveringStance", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 10724, + }, + ["tradeHashes"] = { + [1683578560] = { + "Unwavering Stance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueUseTwoHandedWeaponOneHand1"] = { + "You can wield Two-Handed Axes, Maces and Swords in one hand", + ["affix"] = "", + ["group"] = "UseTwoHandedWeaponOneHand", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5253, + }, + ["tradeHashes"] = { + [3635316831] = { + "You can wield Two-Handed Axes, Maces and Swords in one hand", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVaalPact1"] = { + "Vaal Pact", + ["affix"] = "", + ["group"] = "VaalPact", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 10725, + }, + ["tradeHashes"] = { + [2257118425] = { + "Vaal Pact", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueValourAlwaysMaximum1"] = { + "Banners always have maximum Valour", + ["affix"] = "", + ["group"] = "ValourAlwaysMaximum", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4639, + }, + ["tradeHashes"] = { + [1761741119] = { + "Banners always have maximum Valour", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceDamage1"] = { + "(10-20)% less Damage", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10469, + }, + ["tradeHashes"] = { + [1274947822] = { + "(10-20)% less Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceDefences1"] = { + "(10-20)% less Armour, Evasion and Energy Shield", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceDefences", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 10470, + }, + ["tradeHashes"] = { + [1803659985] = { + "(10-20)% less Armour, Evasion and Energy Shield", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceLife1"] = { + "(10-20)% less maximum Life", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 10471, + }, + ["tradeHashes"] = { + [1633735772] = { + "(10-20)% less maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceMana1"] = { + "(10-20)% less maximum Mana", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 10472, + }, + ["tradeHashes"] = { + [3045154261] = { + "(10-20)% less maximum Mana", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceMovementSpeed1"] = { + "(10-20)% less Movement Speed", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceMovementSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 10473, + }, + ["tradeHashes"] = { + [2146799605] = { + "(10-20)% less Movement Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVivisectionPriceSpirit1"] = { + "(10-20)% less Spirit", + ["affix"] = "", + ["group"] = "UniqueVivisectionPriceSpirit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10474, + }, + ["tradeHashes"] = { + [537850431] = { + "(10-20)% less Spirit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueVulnerabilityGemLevel1"] = { + "+4 to Level of Vulnerability Skills", + ["affix"] = "", + ["group"] = "VulnerabilityGemLevel", + ["level"] = 1, + ["modTags"] = { + "curse", + }, + ["statOrder"] = { + 2009, + }, + ["tradeHashes"] = { + [3507701584] = { + "+4 to Level of Vulnerability Skills", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWarcryAreaOfEffect1"] = { + "Warcry Skills have (20-30)% increased Area of Effect", + ["affix"] = "", + ["group"] = "WarcryAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10514, + }, + ["tradeHashes"] = { + [2567751411] = { + "Warcry Skills have (20-30)% increased Area of Effect", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWarcryCorpseExplosion1"] = { + "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", + ["affix"] = "", + ["group"] = "WarcryCorpseExplosion", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5780, + }, + ["tradeHashes"] = { + [11014011] = { + "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWarcrySpeed1"] = { + "(20-30)% increased Warcry Speed", + ["affix"] = "", + ["group"] = "WarcrySpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1316278494] = { + "(20-30)% increased Warcry Speed", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWeaponDamageFinalPercent1"] = { + "40% less Attack Damage", + ["affix"] = "", + ["group"] = "QuillRainWeaponDamageFinalPercent", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2240, + }, + ["tradeHashes"] = { + [412462523] = { + "40% less Attack Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWeaponDamagePerStrength1"] = { + "10% increased Weapon Damage per 10 Strength", + ["affix"] = "", + ["group"] = "WeaponDamagePerStrength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10534, + }, + ["tradeHashes"] = { + [1791136590] = { + "10% increased Weapon Damage per 10 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWeaponElementalDamage1"] = { + "100% increased Elemental Damage", + ["affix"] = "", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "100% increased Elemental Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited, Shocked, and Chilled Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByElementalGrounds", + ["level"] = 53, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 10542, + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2070837434] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", + }, + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited, Shocked, and Chilled Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWindSkillsBoostedByChilledGround1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Chilled Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByChilledGround", + ["level"] = 53, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Chilled Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWindSkillsBoostedByIgnitedGround1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByIgnitedGround", + ["level"] = 53, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Ignited Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWindSkillsBoostedByShockedGround1"] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Shocked Ground", + ["affix"] = "", + ["group"] = "WindSkillsBoostedByShockedGround", + ["level"] = 53, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 10543, + 10543.1, + }, + ["tradeHashes"] = { + [2626360934] = { + "Wind Skills which can be boosted by Elemental Ground Surfaces count", + "as being boosted by Shocked Ground", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWingsOfEntropyCountsAsDualWielding"] = { + "Counts as Dual Wielding", + ["affix"] = "", + ["group"] = "CountsAsDualWielding", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2471, + }, + ["tradeHashes"] = { + [2797075304] = { + "Counts as Dual Wielding", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWitherGrantsElementalDamageTaken1"] = { + "Enemies take 5% increased Elemental Damage from your Hits for", + "each Withered you have inflicted on them", + ["affix"] = "", + ["group"] = "WitherGrantsElementalDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + }, + ["statOrder"] = { + 4057, + 4057.1, + }, + ["tradeHashes"] = { + [3507915723] = { + "Enemies take 5% increased Elemental Damage from your Hits for", + "each Withered you have inflicted on them", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWitherInflictedAlsoIncreasesFireDamageTaken1"] = { + "Withered you inflict also increases Fire Damage taken", + ["affix"] = "", + ["group"] = "WitherInflictedAlsoIncreasesFireDamageTaken", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "chaos", + }, + ["statOrder"] = { + 4095, + }, + ["tradeHashes"] = { + [1910297038] = { + "Withered you inflict also increases Fire Damage taken", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWitherNeverExpires1"] = { + "Withered you inflict has infinite Duration", + ["affix"] = "", + ["group"] = "WitherNeverExpires", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4093, + }, + ["tradeHashes"] = { + [1354656031] = { + "Withered you inflict has infinite Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { + "Withered does not expire on Enemies Ignited by you", + ["affix"] = "", + ["group"] = "EnemiesIgniteWitherNeverExpires", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 6396, + }, + ["tradeHashes"] = { + [279110104] = { + "Withered does not expire on Enemies Ignited by you", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueWitherOnHitChance1"] = { + "(20-30)% chance to inflict Withered for 4 seconds on Hit", + ["affix"] = "", + ["group"] = "WitherOnHitChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10558, + }, + ["tradeHashes"] = { + [695624915] = { + "(20-30)% chance to inflict Withered for 4 seconds on Hit", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UniqueZealotsOath1"] = { + "Zealot's Oath", + ["affix"] = "", + ["group"] = "ZealotsOathKeystone1", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 10728, + }, + ["tradeHashes"] = { + [1315418254] = { + "Zealot's Oath", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UnwaveringStance"] = { + "Unwavering Stance", + ["affix"] = "", + ["group"] = "UnwaveringStance", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 10724, + }, + ["tradeHashes"] = { + [1683578560] = { + "Unwavering Stance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { + "Removes Burning when you use a Flask", + ["affix"] = "", + ["group"] = "UsingFlasksDispelsBurning", + ["level"] = 1, + ["modTags"] = { + "flask", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 2517, + }, + ["tradeHashes"] = { + [1305605911] = { + "Removes Burning when you use a Flask", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UtilityFlaskChilledGround"] = { + "Creates Chilled Ground on Use", + ["affix"] = "", + ["group"] = "UtilityFlaskChilledGround", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 647, + }, + ["tradeHashes"] = { + [3311869501] = { + "Creates Chilled Ground on Use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UtilityFlaskConsecrate"] = { + "Creates Consecrated Ground on Use", + ["affix"] = "", + ["group"] = "UtilityFlaskConsecrate", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 646, + }, + ["tradeHashes"] = { + [2146730404] = { + "Creates Consecrated Ground on Use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UtilityFlaskSmokeCloud"] = { + "Creates a Smoke Cloud on Use", + ["affix"] = "", + ["group"] = "UtilityFlaskSmokeCloud", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 664, + }, + ["tradeHashes"] = { + [538730182] = { + "Creates a Smoke Cloud on Use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["UtilityFlaskTaunt_"] = { + "Taunts nearby Enemies on use", + ["affix"] = "", + ["group"] = "UtilityFlaskTaunt", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 661, + }, + ["tradeHashes"] = { + [2005503156] = { + "Taunts nearby Enemies on use", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { + "(80-120)% increased Vaal Skill Critical Hit Chance", + ["affix"] = "", + ["group"] = "VaalSkillCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + "vaal", + }, + ["statOrder"] = { + 2835, + }, + ["tradeHashes"] = { + [3165492062] = { + "(80-120)% increased Vaal Skill Critical Hit Chance", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { + "+(22-30)% to Vaal Skill Critical Damage Bonus", + ["affix"] = "", + ["group"] = "VaalSkillCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + "vaal", + }, + ["statOrder"] = { + 2836, + }, + ["tradeHashes"] = { + [2070982674] = { + "+(22-30)% to Vaal Skill Critical Damage Bonus", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VaalSkillDurationUniqueCorruptedJewel5"] = { + "(15-20)% increased Vaal Skill Effect Duration", + ["affix"] = "", + ["group"] = "VaalSkillDuration", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 2833, + }, + ["tradeHashes"] = { + [547412107] = { + "(15-20)% increased Vaal Skill Effect Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { + "Vaal Skills have (15-20)% chance to regain consumed Souls when used", + ["affix"] = "", + ["group"] = "VaalSkillRefundChance", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 10443, + }, + ["tradeHashes"] = { + [2833218772] = { + "Vaal Skills have (15-20)% chance to regain consumed Souls when used", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { + "Kills grant an additional Vaal Soul if you have Rampaged Recently", + ["affix"] = "", + ["group"] = "AdditionalVaalSoulOnRampage", + ["level"] = 1, + ["modTags"] = { + "vaal", + }, + ["statOrder"] = { + 6743, + }, + ["tradeHashes"] = { + [3271016161] = { + "Kills grant an additional Vaal Soul if you have Rampaged Recently", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VerisiumHelmetImplicitIgniteMagnitudeUnique1"] = { + "(30-50)% increased Ignite Magnitude", + ["affix"] = "", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(30-50)% increased Ignite Magnitude", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VerisiumSacrificialGarbImplicitAllResistancePerCorruptedItem1"] = { + "+1% to all Resistances for each Corrupted Item Equipped", + ["affix"] = "", + ["group"] = "AllResistancesPerCorruptedItem", + ["level"] = 1, + ["modTags"] = { + "resistance", + }, + ["statOrder"] = { + 2831, + }, + ["tradeHashes"] = { + [3100523498] = { + "+1% to all Resistances for each Corrupted Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VerisiumSacrificialGarbImplicitChaosDamagePerCorruptedItem1"] = { + "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", + ["affix"] = "", + ["group"] = "ChaosDamagePerCorruptedItem", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 2827, + }, + ["tradeHashes"] = { + [4004011170] = { + "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VerisiumSacrificialGarbImplicitLifePerCorruptedItem1"] = { + "1% increased Maximum Life for each Corrupted Item Equipped", + ["affix"] = "", + ["group"] = "MaximumLifePerCorruptedItem", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 2825, + }, + ["tradeHashes"] = { + [4169430079] = { + "1% increased Maximum Life for each Corrupted Item Equipped", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VoidShotOnSkillUseUnique__1_"] = { + "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", + ["affix"] = "", + ["group"] = "VoidShotOnSkillUse", + ["level"] = 1, + ["modTags"] = { + "skill", + }, + ["statOrder"] = { + 598, + }, + ["tradeHashes"] = { + [3262369040] = { + "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VolkuurLessPoisonDurationUnique__1"] = { + "50% less Poison Duration", + ["affix"] = "", + ["group"] = "VolkuurLessPoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2897, + }, + ["tradeHashes"] = { + [1237693206] = { + "50% less Poison Duration", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["VulnerabilityReservationCostUnique__1_"] = { + "Vulnerability has no Reservation if Cast as an Aura", + ["affix"] = "", + ["group"] = "VulnerabilityNoReservation", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 10495, + }, + ["tradeHashes"] = { + [531868030] = { + "Vulnerability has no Reservation if Cast as an Aura", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { + "Flasks gain (0.5-1) charges per Second", + ["affix"] = "", + ["group"] = "AllFlaskChargeGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6888, + }, + ["tradeHashes"] = { + [731781020] = { + "Flasks gain (0.5-1) charges per Second", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { + "(15-25)% Life Recovery from Flasks also applies to Runic Ward", + ["affix"] = "", + ["group"] = "LifeFlaskAppliesToRunicWard", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7474, + }, + ["tradeHashes"] = { + [2650263616] = { + "(15-25)% Life Recovery from Flasks also applies to Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { + "Runic Ward recovery can can Overflow maximum Runic Ward", + ["affix"] = "", + ["group"] = "RunicWardOverflow", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10519, + }, + ["tradeHashes"] = { + [3408607858] = { + "Runic Ward recovery can can Overflow maximum Runic Ward", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { + "(20-40)% increased Runic Ward Regeneration Rate", + ["affix"] = "", + ["group"] = "WardRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "runic_ward", + }, + ["statOrder"] = { + 10520, + }, + ["tradeHashes"] = { + [2392260628] = { + "(20-40)% increased Runic Ward Regeneration Rate", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WandAttackSpeedJewel"] = { + "(6-8)% increased Attack Speed with Wands", + ["affix"] = "Jinxing", + ["group"] = "WandAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1326, + }, + ["tradeHashes"] = { + [3720627346] = { + "(6-8)% increased Attack Speed with Wands", + }, + }, + ["weightKey"] = { + "melee_mod", + "two_handed_mod", + "wand", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["WandDamageJewel"] = { + "(14-16)% increased Damage with Wands", + ["affix"] = "Cruel", + ["group"] = "IncreasedWandDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 2691, + }, + ["tradeHashes"] = { + [379328644] = { + "(14-16)% increased Damage with Wands", + }, + }, + ["weightKey"] = { + "melee_mod", + "two_handed_mod", + "wand", + "specific_weapon", + "not_int", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 0, + 1, + }, + }, + ["WarcryKnockbackUnique__1"] = { + "Warcries Knock Back and Interrupt Enemies in a smaller Area", + ["affix"] = "", + ["group"] = "WarcryKnockback", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10505, + }, + ["tradeHashes"] = { + [519622288] = { + "Warcries Knock Back and Interrupt Enemies in a smaller Area", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WeaponCountsAsAllOneHandedWeapons__1"] = { + "Counts as all One Handed Melee Weapon Types", + ["affix"] = "", + ["group"] = "CountsAsAllOneHandMeleeWeapons", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3453, + }, + ["tradeHashes"] = { + [1524882321] = { + "Counts as all One Handed Melee Weapon Types", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WeaponLightningDamageUniqueOneHandMace3"] = { + "(80-100)% increased Lightning Damage", + ["affix"] = "", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(80-100)% increased Lightning Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WeaponPhysicalDamagePerStrength"] = { + "1% increased Weapon Damage per 10 Strength", + ["affix"] = "", + ["group"] = "WeaponDamagePerStrength", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10534, + }, + ["tradeHashes"] = { + [1791136590] = { + "1% increased Weapon Damage per 10 Strength", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { + "Gain a Frenzy Charge on reaching Maximum Power Charges", + ["affix"] = "", + ["group"] = "WhenReachingMaxPowerChargesGainAFrenzyCharge", + ["level"] = 1, + ["modTags"] = { + "frenzy_charge", + }, + ["statOrder"] = { + 3286, + }, + ["tradeHashes"] = { + [2732344760] = { + "Gain a Frenzy Charge on reaching Maximum Power Charges", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["YouCannotBeHinderedUnique__1"] = { + "You cannot be Hindered", + ["affix"] = "", + ["group"] = "YouCannotBeHindered", + ["level"] = 1, + ["modTags"] = { + "blue_herring", + }, + ["statOrder"] = { + 10591, + }, + ["tradeHashes"] = { + [721014846] = { + "You cannot be Hindered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["YouCannotBeHinderedUnique__2"] = { + "You cannot be Hindered", + ["affix"] = "", + ["group"] = "YouCannotBeHindered", + ["level"] = 1, + ["modTags"] = { + "blue_herring", + }, + ["statOrder"] = { + 10591, + }, + ["tradeHashes"] = { + [721014846] = { + "You cannot be Hindered", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZealotsOathUnique__1"] = { + "Life Regeneration is applied to Energy Shield instead", + ["affix"] = "", + ["group"] = "ZealotsOath", + ["level"] = 1, + ["modTags"] = { + "defences", + "resource", + "life", + "energy_shield", + }, + ["statOrder"] = { + 9727, + }, + ["tradeHashes"] = { + [632761194] = { + "Life Regeneration is applied to Energy Shield instead", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZombieChaosElementalResistsUniqueSceptre3"] = { + "Raised Zombies have +(25-30)% to all Resistances", + ["affix"] = "", + ["group"] = "ZombieChaosElementalResists", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "minion_resistance", + "elemental", + "chaos", + "resistance", + "minion", + }, + ["statOrder"] = { + 2371, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3150000576] = { + "Raised Zombies have +(25-30)% to all Resistances", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZombieDamageUniqueSceptre3"] = { + "Raised Zombies deal (100-125)% more Physical Damage", + ["affix"] = "", + ["group"] = "ZombieDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "physical_damage", + "damage", + "physical", + "minion", + }, + ["statOrder"] = { + 10652, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [568070507] = { + "Raised Zombies deal (100-125)% more Physical Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZombieLifeUniqueSceptre3"] = { + "Raised Zombies have +5000 to maximum Life", + ["affix"] = "", + ["group"] = "ZombieLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 2370, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [4116579804] = { + "Raised Zombies have +5000 to maximum Life", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZombieSizeUniqueSceptre3_"] = { + "25% increased Raised Zombie Size", + ["affix"] = "", + ["group"] = "ZombieSize", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2451, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [3563667308] = { + "25% increased Raised Zombie Size", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, + ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { + "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", + ["affix"] = "", + ["group"] = "ZombiesExplodeEnemiesOnHit", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "minion_damage", + "damage", + "elemental", + "fire", + "minion", + }, + ["statOrder"] = { + 2453, + }, + ["tags"] = { + "minion_unique_weapon", + }, + ["tradeHashes"] = { + [2857427872] = { + "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", + }, + }, + ["weightKey"] = { + }, + ["weightVal"] = { + }, + }, +} diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 4a78e6f618..d7f8d2d4ed 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -1,382 +1,10399 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, - ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4409 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, - ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, - ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, - ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2574 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, - ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, - ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, - ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, - ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, - ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1341 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, - ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, - ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, - ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, - ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6023 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, - ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(7-13)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, - ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, - ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, - ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, - ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, - ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, - ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, - ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, - ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9734 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, - ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, - ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5924 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, - ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, - ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, - ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1363 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, - ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, - ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6322 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, - ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, - ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, - ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, - ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, - ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, - ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, - ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6426 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, - ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, - ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, - ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, - ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, - ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, - ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, - ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, - ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, - ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, - ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, - ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7945 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, - ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7978 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, - ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, - ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, - ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, - ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, - ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, - ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, - ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, - ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, - ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, - ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, - ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, - ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, - ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9355 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9356 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, - ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, - ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7195 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, - ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, - ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, - ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, - ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, - ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9597 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9838 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, - ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, - ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, - ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, - ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, - ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, - ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10140 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, - ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, - ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, - ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, - ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, - ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, - ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, - ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2037855018] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10506 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, - ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10509 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, - ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10556 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10381 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9393 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5722 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6981 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6915 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, - ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, - ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7783 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7783 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7778 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, - ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating" }, } }, - ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments" }, } }, - ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "Small Passive Skills in Radius also grant (2-3)% increased Elemental Ailment Threshold" }, } }, - ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "Notable Passive Skills in Radius also grant (2-3)% increased Area of Effect" }, } }, - ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, nodeType = 1, tradeHashes = { [3858398337] = { "Small Passive Skills in Radius also grant (2-3)% increased Armour" }, } }, - ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Small Passive Skills in Radius also grant Break (1-2)% increased Armour" }, } }, - ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4409 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "Notable Passive Skills in Radius also grant (5-10)% increased Armour Break Duration" }, } }, - ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "Small Passive Skills in Radius also grant (1-2)% increased Attack Damage" }, } }, - ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2822644689] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed" }, } }, - ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2574 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Notable Passive Skills in Radius also grant Aura Skills have (1-3)% increased Magnitudes" }, } }, - ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Axes" }, } }, - ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Axes" }, } }, - ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit" }, } }, - ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration" }, } }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, - ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "Notable Passive Skills in Radius also grant (1-3)% increased Block chance" }, } }, - ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1341 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating with Bows" }, } }, - ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Bows" }, } }, - ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Bows" }, } }, - ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "Notable Passive Skills in Radius also grant (1-2)% increased Cast Speed" }, } }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, - ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "Small Passive Skills in Radius also grant (1-2)% increased Charm Effect Duration" }, } }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6023 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, - ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "Small Passive Skills in Radius also grant (1-2)% increased Chaos Damage" }, } }, - ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "Notable Passive Skills in Radius also grant (6-12)% increased Chill Duration on Enemies" }, } }, - ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "Small Passive Skills in Radius also grant (1-2)% increased Cold Damage" }, } }, - ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Cold Resistance" }, } }, - ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate" }, } }, - ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance" }, } }, - ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Spell Damage Bonus" }, } }, - ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Crossbows" }, } }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9734 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, - ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Crossbows" }, } }, - ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "Notable Passive Skills in Radius also grant (3-6)% increased Area of Effect of Curses" }, } }, - ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "Small Passive Skills in Radius also grant (2-4)% increased Curse Duration" }, } }, - ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [2770044702] = { "Notable Passive Skills in Radius also grant 1% increased Curse Magnitudes" }, } }, - ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1363 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [4260437915] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Daggers" }, } }, - ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Daggers" }, } }, - ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, - ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "Small Passive Skills in Radius also grant 1% chance to Daze on Hit" }, } }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, - ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "Small Passive Skills in Radius also grant (1-2)% increased Elemental Damage" }, } }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6322 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, - ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "Small Passive Skills in Radius also grant (2-3)% increased maximum Energy Shield" }, } }, - ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "Notable Passive Skills in Radius also grant (5-7)% faster start of Energy Shield Recharge" }, } }, - ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "Small Passive Skills in Radius also grant (2-3)% increased Energy Shield Recharge Rate" }, } }, - ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "Small Passive Skills in Radius also grant (2-3)% increased Evasion Rating" }, } }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, - ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "Small Passive Skills in Radius also grant (1-2)% increased Fire Damage" }, } }, - ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Fire Resistance" }, } }, - ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Flails" }, } }, - ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Flails" }, } }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, - ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "Small Passive Skills in Radius also grant (1-2)% increased Flask Effect Duration" }, } }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6426 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, - ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup" }, } }, - ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "Small Passive Skills in Radius also grant (2-4)% increased Freeze Threshold" }, } }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, - ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "Small Passive Skills in Radius also grant (2-3)% increased Flammability Magnitude" }, } }, - ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "Notable Passive Skills in Radius also grant (3-7)% increased Ignite Magnitude" }, } }, - ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "Notable Passive Skills in Radius also grant (3-5)% increased Skill Effect Duration" }, } }, - ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "Notable Passive Skills in Radius also grant (3-7)% increased Knockback Distance" }, } }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "Small Passive Skills in Radius also grant (2-3)% increased Life Recovery from Flasks" }, } }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, - ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "Small Passive Skills in Radius also grant (2-3)% increased amount of Life Leeched" }, } }, - ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Life on Kill" }, } }, - ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, - ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [1185341308] = { "Notable Passive Skills in Radius also grant (3-5)% increased Life Regeneration rate" }, } }, - ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "Small Passive Skills in Radius also grant (1-2)% increased Lightning Damage" }, } }, - ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Lightning Resistance" }, } }, - ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Maces" }, } }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7945 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, - ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Recovery from Flasks" }, } }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7978 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, - ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "Small Passive Skills in Radius also grant (1-2)% increased amount of Mana Leeched" }, } }, - ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Mana on Kill" }, } }, - ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Regeneration Rate" }, } }, - ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Small Passive Skills in Radius also grant Mark Skills have (2-3)% increased Use Speed" }, } }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, - ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "Notable Passive Skills in Radius also grant (2-3)% increased Effect of your Mark Skills" }, } }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, - ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "Small Passive Skills in Radius also grant (1-2)% increased Melee Damage" }, } }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, - ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Notable Passive Skills in Radius also grant Minions have (3-5)% increased Area of Effect" }, } }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, - ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to Chaos Resistance" }, } }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Small Passive Skills in Radius also grant Minions deal (1-2)% increased Damage" }, } }, - ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Small Passive Skills in Radius also grant Minions have (1-2)% increased maximum Life" }, } }, - ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Small Passive Skills in Radius also grant Minions have (1-2)% additional Physical Damage Reduction" }, } }, - ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to all Elemental Resistances" }, } }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, - ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "Notable Passive Skills in Radius also grant 1% increased Movement Speed" }, } }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9355 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9356 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, - ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "Small Passive Skills in Radius also grant (1-2)% increased Global Physical Damage" }, } }, - ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "Notable Passive Skills in Radius also grant (5-10)% chance to Pierce an Enemy" }, } }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7195 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, - ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "Small Passive Skills in Radius also grant 1% chance to Poison on Hit" }, } }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, - ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "Notable Passive Skills in Radius also grant (3-7)% increased Poison Duration" }, } }, - ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "Small Passive Skills in Radius also grant (1-2)% increased Projectile Damage" }, } }, - ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "Notable Passive Skills in Radius also grant (2-3)% increased Projectile Speed" }, } }, - ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9597 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9838 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, - ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "Small Passive Skills in Radius also grant (2-3)% increased chance to Shock" }, } }, - ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "Small Passive Skills in Radius also grant (2-3)% increased Shock Duration" }, } }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Spears" }, } }, - ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Spears" }, } }, - ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, nodeType = 2, tradeHashes = { [2704905000] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Spells" }, } }, - ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "Small Passive Skills in Radius also grant (1-2)% increased Spell Damage" }, } }, - ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "Notable Passive Skills in Radius also grant (5-10)% increased Stun Buildup" }, } }, - ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "Small Passive Skills in Radius also grant (1-2)% increased Stun Threshold" }, } }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10140 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Swords" }, } }, - ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Swords" }, } }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, - ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Damage" }, } }, - ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Life" }, } }, - ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Placement speed" }, } }, - ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "Small Passive Skills in Radius also grant (1-2)% increased Trap Damage" }, } }, - ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "Notable Passive Skills in Radius also grant (2-4)% increased Trap Throwing Speed" }, } }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, - ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Unarmed Attacks" }, } }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10506 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, - ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10509 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, - ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "Small Passive Skills in Radius also grant (2-3)% increased Warcry Speed" }, } }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10556 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10381 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, - ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9393 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5722 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6981 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6915 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, - ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect" }, } }, - ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration" }, } }, - ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, - ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7788, 7788.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, - ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7789, 7789.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, - ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7787, 7787.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, - ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7809 }, level = 1, group = "LocalPrefixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, - ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7810 }, level = 1, group = "LocalSuffixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, - ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, - ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "Notable Passive Skills in Radius also grant +(5-7)% to Fire Resistance" }, } }, - ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "Notable Passive Skills in Radius also grant +(5-7)% to Cold Resistance" }, } }, - ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "Notable Passive Skills in Radius also grant +(5-7)% to Lightning Resistance" }, } }, - ["CraftedJewelRadiusChaosResistance"] = { type = "Suffix", affix = "", "+(4-5)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [248192092] = { "Notable Passive Skills in Radius also grant +(4-5)% to Chaos Resistance" }, } }, - ["CraftedJewelMaximumChaosResistance"] = { type = "Suffix", affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, - ["CraftedJewelAdditionalPrefixAllowed"] = { type = "Suffix", affix = "", "+1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["CraftedJewelAdditionalSuffixAllowed"] = { type = "Prefix", affix = "", "+1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, - ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4328 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [541021467] = { "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" }, } }, - ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { type = "Suffix", affix = "", "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", statOrder = { 4325 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3587953142] = { "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" }, } }, - ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { type = "Suffix", affix = "", "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", statOrder = { 4329 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [2951965588] = { "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9916 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5962 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9486 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, - ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9916 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5962 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, - ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9486 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, -} \ No newline at end of file + ["CraftedJewelAdditionalPrefixAllowed"] = { + "+1 Prefix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 18, + }, + ["tradeHashes"] = { + [3182714256] = { + "+1 Prefix Modifier allowed", + }, + [718638445] = { + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelAdditionalSuffixAllowed"] = { + "+1 Suffix Modifier allowed", + ["affix"] = "", + ["group"] = "PrefixSuffixAllowed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 19, + }, + ["tradeHashes"] = { + [3182714256] = { + }, + [718638445] = { + "+1 Suffix Modifier allowed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { + "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["affix"] = "", + ["group"] = "BlindOnHitWhileRubySapphireForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4325, + }, + ["tradeHashes"] = { + [3587953142] = { + "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { + "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["affix"] = "", + ["group"] = "DebilitateOnHitWhileEmeraldSapphireForJewel", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4328, + }, + ["tradeHashes"] = { + [541021467] = { + "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { + "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["affix"] = "", + ["group"] = "ExposureOnHitWhileRubyEmeraldForJewel", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 4329, + }, + ["tradeHashes"] = { + [2951965588] = { + "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelMaximumChaosResistance"] = { + "+1% to Maximum Chaos Resistance", + ["affix"] = "", + ["group"] = "MaximumChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["statOrder"] = { + 1012, + }, + ["tradeHashes"] = { + [1301765461] = { + "+1% to Maximum Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelPrefixEffect"] = { + "(40-60)% increased Effect of Prefixes", + ["affix"] = "", + ["group"] = "LocalPrefixEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7809, + }, + ["tradeHashes"] = { + [1443502073] = { + "(40-60)% increased Effect of Prefixes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelRadiusChaosResistance"] = { + "+(4-5)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "ChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "chaos", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1024, + }, + ["tradeHashes"] = { + [248192092] = { + "Notable Passive Skills in Radius also grant +(4-5)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelRadiusColdResistance"] = { + "+(5-7)% to Cold Resistance", + ["affix"] = "", + ["group"] = "ColdResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1020, + }, + ["tradeHashes"] = { + [3946450303] = { + "Notable Passive Skills in Radius also grant +(5-7)% to Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelRadiusExtraLargeSize"] = { + "Upgrades Radius to Very Large", + ["affix"] = "", + ["group"] = "JewelRadiusLargerRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7759, + }, + ["tradeHashes"] = { + [3891355829] = { + "Upgrades Radius to Very Large", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelRadiusFireResistance"] = { + "+(5-7)% to Fire Resistance", + ["affix"] = "", + ["group"] = "FireResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1014, + }, + ["tradeHashes"] = { + [2670212285] = { + "Notable Passive Skills in Radius also grant +(5-7)% to Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelRadiusLightningResistance"] = { + "+(5-7)% to Lightning Resistance", + ["affix"] = "", + ["group"] = "LightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1023, + }, + ["tradeHashes"] = { + [1687542781] = { + "Notable Passive Skills in Radius also grant +(5-7)% to Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["CraftedJewelSuffixEffect"] = { + "(40-60)% increased Effect of Suffixes", + ["affix"] = "", + ["group"] = "LocalSuffixEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7810, + }, + ["tradeHashes"] = { + [2475221757] = { + "(40-60)% increased Effect of Suffixes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelAccuracy"] = { + "(5-10)% increased Accuracy Rating", + ["affix"] = "Accurate", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [624954515] = { + "(5-10)% increased Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAilmentChance"] = { + "(5-15)% increased chance to inflict Ailments", + ["affix"] = "of Ailing", + ["group"] = "AilmentChance", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4255, + }, + ["tradeHashes"] = { + [1772247089] = { + "(5-15)% increased chance to inflict Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelAilmentEffect"] = { + "(5-15)% increased Magnitude of Ailments you inflict", + ["affix"] = "Acrimonious", + ["group"] = "AilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(5-15)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelAilmentThreshold"] = { + "(10-20)% increased Elemental Ailment Threshold", + ["affix"] = "of Enduring", + ["group"] = "IncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4266, + }, + ["tradeHashes"] = { + [3544800472] = { + "(10-20)% increased Elemental Ailment Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAilmentThresholdfromEnergyShield"] = { + "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", + ["affix"] = "of Inuring", + ["group"] = "AilmentThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 4265, + }, + ["tradeHashes"] = { + [3398301358] = { + "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAreaofEffect"] = { + "(4-6)% increased Area of Effect", + ["affix"] = "Blasting", + ["group"] = "AreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [280731498] = { + "(4-6)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelArmour"] = { + "(10-20)% increased Armour", + ["affix"] = "Armoured", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(10-20)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelArmourBreak"] = { + "Break (5-15)% increased Armour", + ["affix"] = "Shattering", + ["group"] = "ArmourBreak", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4407, + }, + ["tradeHashes"] = { + [1776411443] = { + "Break (5-15)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelArmourBreakDuration"] = { + "(10-20)% increased Armour Break Duration", + ["affix"] = "Resonating", + ["group"] = "ArmourBreakDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4409, + }, + ["tradeHashes"] = { + [2637470878] = { + "(10-20)% increased Armour Break Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAttackCriticalChance"] = { + "(6-16)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Deadliness", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [2194114101] = { + "(6-16)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAttackCriticalDamage"] = { + "(10-20)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Demolishing", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [3714003708] = { + "(10-20)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAttackDamage"] = { + "(5-15)% increased Attack Damage", + ["affix"] = "Combat", + ["group"] = "AttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(5-15)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelAttackSpeed"] = { + "(2-4)% increased Attack Speed", + ["affix"] = "of Alacrity", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(2-4)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelAuraEffect"] = { + "Aura Skills have (3-7)% increased Magnitudes", + ["affix"] = "Commanding", + ["group"] = "AuraEffectForJewel", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 2574, + }, + ["tradeHashes"] = { + [315791320] = { + "Aura Skills have (3-7)% increased Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelAxeDamage"] = { + "(5-15)% increased Damage with Axes", + ["affix"] = "Sinister", + ["group"] = "IncreasedAxeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1233, + }, + ["tradeHashes"] = { + [3314142259] = { + "(5-15)% increased Damage with Axes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelAxeSpeed"] = { + "(2-4)% increased Attack Speed with Axes", + ["affix"] = "of Cleaving", + ["group"] = "AxeAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1319, + }, + ["tradeHashes"] = { + [3550868361] = { + "(2-4)% increased Attack Speed with Axes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelBannerArea"] = { + "Banner Skills have (6-16)% increased Area of Effect", + ["affix"] = "Rallying", + ["group"] = "BannerArea", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4629, + }, + ["tradeHashes"] = { + [429143663] = { + "Banner Skills have (6-16)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBannerDuration"] = { + "Banner Skills have (15-25)% increased Duration", + ["affix"] = "of Inspiring", + ["group"] = "BannerDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4631, + }, + ["tradeHashes"] = { + [2720982137] = { + "Banner Skills have (15-25)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBannerValourGained"] = { + "(15-20)% increased Glory generation for Banner Skills", + ["affix"] = "of Valour", + ["group"] = "BannerValourGained", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6915, + }, + ["tradeHashes"] = { + [1869147066] = { + "(15-20)% increased Glory generation for Banner Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBleedingChance"] = { + "(3-7)% chance to inflict Bleeding on Hit", + ["affix"] = "Bleeding", + ["group"] = "BaseChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "(3-7)% chance to inflict Bleeding on Hit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBleedingDuration"] = { + "(5-10)% increased Bleeding Duration", + ["affix"] = "of Haemophilia", + ["group"] = "BleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1459321413] = { + "(5-10)% increased Bleeding Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBleedingEffect"] = { + "(5-15)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Haemorrhaging", + ["group"] = "BleedDotMultiplier", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(5-15)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBlindEffect"] = { + "(5-10)% increased Blind Effect", + ["affix"] = "Stifling", + ["group"] = "BlindEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4928, + }, + ["tradeHashes"] = { + [1585769763] = { + "(5-10)% increased Blind Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBlindonHit"] = { + "(3-7)% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "of Blinding", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [318953428] = { + "(3-7)% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBlock"] = { + "(3-7)% increased Block chance", + ["affix"] = "Protecting", + ["group"] = "IncreasedBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 1133, + }, + ["tradeHashes"] = { + [4147897060] = { + "(3-7)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBowAccuracyRating"] = { + "(5-15)% increased Accuracy Rating with Bows", + ["affix"] = "Precise", + ["group"] = "BowIncreasedAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 1341, + }, + ["tradeHashes"] = { + [169946467] = { + "(5-15)% increased Accuracy Rating with Bows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBowDamage"] = { + "(6-16)% increased Damage with Bows", + ["affix"] = "Perforating", + ["group"] = "IncreasedBowDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1253, + }, + ["tradeHashes"] = { + [4188894176] = { + "(6-16)% increased Damage with Bows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelBowSpeed"] = { + "(2-4)% increased Attack Speed with Bows", + ["affix"] = "of Nocking", + ["group"] = "BowAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1324, + }, + ["tradeHashes"] = { + [3759735052] = { + "(2-4)% increased Attack Speed with Bows", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCastSpeed"] = { + "(2-4)% increased Cast Speed", + ["affix"] = "of Enchanting", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(2-4)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelChainFromTerrain"] = { + "Projectiles have (3-5)% chance to Chain an additional time from terrain", + ["affix"] = "of Chaining", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (3-5)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelChaosDamage"] = { + "(7-13)% increased Chaos Damage", + ["affix"] = "Chaotic", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [736967255] = { + "(7-13)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCharmChargesGained"] = { + "(5-15)% increased Charm Charges gained", + ["affix"] = "of the Thicker", + ["group"] = "CharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [3585532255] = { + "(5-15)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCharmDamageWhileUsing"] = { + "(10-20)% increased Damage while you have an active Charm", + ["affix"] = "Verdant", + ["group"] = "CharmDamageWhileUsing", + ["level"] = 1, + ["modTags"] = { + "charm", + "damage", + }, + ["statOrder"] = { + 6023, + }, + ["tradeHashes"] = { + [627767961] = { + "(10-20)% increased Damage while you have an active Charm", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCharmDuration"] = { + "(5-15)% increased Charm Effect Duration", + ["affix"] = "of the Woodland", + ["group"] = "CharmDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [1389754388] = { + "(5-15)% increased Charm Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelChillDuration"] = { + "(15-25)% increased Chill Duration on Enemies", + ["affix"] = "of Frost", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [3485067555] = { + "(15-25)% increased Chill Duration on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelColdDamage"] = { + "(5-15)% increased Cold Damage", + ["affix"] = "Chilling", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [3291658075] = { + "(5-15)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelColdPenetration"] = { + "Damage Penetrates (5-10)% Cold Resistance", + ["affix"] = "Numbing", + ["group"] = "ColdResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [3417711605] = { + "Damage Penetrates (5-10)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCompanionDamage"] = { + "Companions deal (10-20)% increased Damage", + ["affix"] = "Kinship", + ["group"] = "CompanionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 5722, + }, + ["tradeHashes"] = { + [234296660] = { + "Companions deal (10-20)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCompanionLife"] = { + "Companions have (10-20)% increased maximum Life", + ["affix"] = "Kindred", + ["group"] = "CompanionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 5726, + }, + ["tradeHashes"] = { + [1805182458] = { + "Companions have (10-20)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCooldownSpeed"] = { + "(3-5)% increased Cooldown Recovery Rate", + ["affix"] = "of Chronomancy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(3-5)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCorpses"] = { + "(10-20)% increased Damage if you have Consumed a Corpse Recently", + ["affix"] = "Necromantic", + ["group"] = "DamageIfConsumedCorpse", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 3901, + }, + ["tradeHashes"] = { + [2118708619] = { + "(10-20)% increased Damage if you have Consumed a Corpse Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCriticalAilmentEffect"] = { + "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["affix"] = "Rancorous", + ["group"] = "CriticalAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + "ailment", + }, + ["statOrder"] = { + 5818, + }, + ["tradeHashes"] = { + [440490623] = { + "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelCriticalChance"] = { + "(5-15)% increased Critical Hit Chance", + ["affix"] = "of Annihilation", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(5-15)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCriticalDamage"] = { + "(10-20)% increased Critical Damage Bonus", + ["affix"] = "of Potency", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(10-20)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCrossbowDamage"] = { + "(6-16)% increased Damage with Crossbows", + ["affix"] = "Bolting", + ["group"] = "CrossbowDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3948, + }, + ["tradeHashes"] = { + [427684353] = { + "(6-16)% increased Damage with Crossbows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCrossbowReloadSpeed"] = { + "(10-15)% increased Crossbow Reload Speed", + ["affix"] = "of Reloading", + ["group"] = "CrossbowReloadSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 9734, + }, + ["tradeHashes"] = { + [3192728503] = { + "(10-15)% increased Crossbow Reload Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCrossbowSpeed"] = { + "(2-4)% increased Attack Speed with Crossbows", + ["affix"] = "of Rapidity", + ["group"] = "CrossbowSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 3952, + }, + ["tradeHashes"] = { + [1135928777] = { + "(2-4)% increased Attack Speed with Crossbows", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCurseArea"] = { + "(8-12)% increased Area of Effect of Curses", + ["affix"] = "Expanding", + ["group"] = "CurseAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(8-12)% increased Area of Effect of Curses", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCurseDelay"] = { + "(5-15)% faster Curse Activation", + ["affix"] = "of Chanting", + ["group"] = "CurseDelay", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 5924, + }, + ["tradeHashes"] = { + [1104825894] = { + "(5-15)% faster Curse Activation", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCurseDuration"] = { + "(15-25)% increased Curse Duration", + ["affix"] = "of Continuation", + ["group"] = "BaseCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 1540, + }, + ["tradeHashes"] = { + [3824372849] = { + "(15-25)% increased Curse Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelCurseEffect"] = { + "(2-4)% increased Curse Magnitudes", + ["affix"] = "Hexing", + ["group"] = "CurseEffectivenessForJewel", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(2-4)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelDaggerCriticalChance"] = { + "(6-16)% increased Critical Hit Chance with Daggers", + ["affix"] = "of Backstabbing", + ["group"] = "CritChanceWithDaggerForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1363, + }, + ["tradeHashes"] = { + [4018186542] = { + "(6-16)% increased Critical Hit Chance with Daggers", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelDaggerDamage"] = { + "(6-16)% increased Damage with Daggers", + ["affix"] = "Lethal", + ["group"] = "IncreasedDaggerDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1245, + }, + ["tradeHashes"] = { + [3586984690] = { + "(6-16)% increased Damage with Daggers", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelDaggerSpeed"] = { + "(2-4)% increased Attack Speed with Daggers", + ["affix"] = "of Slicing", + ["group"] = "DaggerAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1322, + }, + ["tradeHashes"] = { + [2538566497] = { + "(2-4)% increased Attack Speed with Daggers", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelDamageVsRareOrUnique"] = { + "(10-20)% increased Damage with Hits against Rare and Unique Enemies", + ["affix"] = "Slaying", + ["group"] = "DamageVsRareOrUnique", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 2926, + }, + ["tradeHashes"] = { + [1852872083] = { + "(10-20)% increased Damage with Hits against Rare and Unique Enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelDamagefromMana"] = { + "(2-4)% of Damage is taken from Mana before Life", + ["affix"] = "of Mind", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(2-4)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelDamagevsArmourBrokenEnemies"] = { + "(15-25)% increased Damage against Enemies with Fully Broken Armour", + ["affix"] = "Exploiting", + ["group"] = "DamagevsArmourBrokenEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5947, + }, + ["tradeHashes"] = { + [2301718443] = { + "(15-25)% increased Damage against Enemies with Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelDamagingAilmentDuration"] = { + "(5-10)% increased Duration of Damaging Ailments on Enemies", + ["affix"] = "of Suffusion", + ["group"] = "DamagingAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 6065, + }, + ["tradeHashes"] = { + [1829102168] = { + "(5-10)% increased Duration of Damaging Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelDazeBuildup"] = { + "(5-10)% chance to Daze on Hit", + ["affix"] = "of Dazing", + ["group"] = "DazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4669, + }, + ["tradeHashes"] = { + [3146310524] = { + "(5-10)% chance to Daze on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelDebuffExpiry"] = { + "Debuffs on you expire (5-10)% faster", + ["affix"] = "of Diminishing", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (5-10)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelElementalAilmentDuration"] = { + "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", + ["affix"] = "of Suffering", + ["group"] = "ElementalAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7266, + }, + ["tradeHashes"] = { + [1062710370] = { + "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelElementalDamage"] = { + "(5-15)% increased Elemental Damage", + ["affix"] = "Prismatic", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(5-15)% increased Elemental Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["JewelEmpoweredAttackDamage"] = { + "Empowered Attacks deal (10-20)% increased Damage", + ["affix"] = "Empowering", + ["group"] = "ExertedAttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 6322, + }, + ["tradeHashes"] = { + [1569101201] = { + "Empowered Attacks deal (10-20)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelEnergy"] = { + "Meta Skills gain (4-8)% increased Energy", + ["affix"] = "of Generation", + ["group"] = "EnergyGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6410, + }, + ["tradeHashes"] = { + [4236566306] = { + "Meta Skills gain (4-8)% increased Energy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelEnergyShield"] = { + "(10-20)% increased maximum Energy Shield", + ["affix"] = "Shimmering", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(10-20)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelEnergyShieldDelay"] = { + "(10-15)% faster start of Energy Shield Recharge", + ["affix"] = "Serene", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [1782086450] = { + "(10-15)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelEnergyShieldRecharge"] = { + "(10-20)% increased Energy Shield Recharge Rate", + ["affix"] = "Fevered", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [2339757871] = { + "(10-20)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelEvasion"] = { + "(10-20)% increased Evasion Rating", + ["affix"] = "Evasive", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(10-20)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFasterAilments"] = { + "Damaging Ailments deal damage (3-7)% faster", + ["affix"] = "of Decrepifying", + ["group"] = "FasterAilmentDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [538241406] = { + "Damaging Ailments deal damage (3-7)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelFireDamage"] = { + "(5-15)% increased Fire Damage", + ["affix"] = "Flaming", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [3962278098] = { + "(5-15)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFirePenetration"] = { + "Damage Penetrates (5-10)% Fire Resistance", + ["affix"] = "Searing", + ["group"] = "FireResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (5-10)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFlailCriticalChance"] = { + "(6-16)% increased Critical Hit Chance with Flails", + ["affix"] = "of Thrashing", + ["group"] = "FlailCriticalChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 3942, + }, + ["tradeHashes"] = { + [1484710594] = { + "(6-16)% increased Critical Hit Chance with Flails", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelFlailDamage"] = { + "(6-16)% increased Damage with Flails", + ["affix"] = "Flailing", + ["group"] = "FlailDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3937, + }, + ["tradeHashes"] = { + [1731242173] = { + "(6-16)% increased Damage with Flails", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelFlaskChargesGained"] = { + "(5-10)% increased Flask Charges gained", + ["affix"] = "of Gathering", + ["group"] = "IncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(5-10)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFlaskDuration"] = { + "(5-10)% increased Flask Effect Duration", + ["affix"] = "of Prolonging", + ["group"] = "FlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(5-10)% increased Flask Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFocusEnergyShield"] = { + "(30-50)% increased Energy Shield from Equipped Focus", + ["affix"] = "Focusing", + ["group"] = "FocusEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["statOrder"] = { + 6426, + }, + ["tradeHashes"] = { + [3174700878] = { + "(30-50)% increased Energy Shield from Equipped Focus", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelForkingProjectiles"] = { + "Projectiles have (10-15)% chance for an additional Projectile when Forking", + ["affix"] = "of Forking", + ["group"] = "ForkingProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [3003542304] = { + "Projectiles have (10-15)% chance for an additional Projectile when Forking", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFreezeAmount"] = { + "(10-20)% increased Freeze Buildup", + ["affix"] = "of Freezing", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [473429811] = { + "(10-20)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelFreezeThreshold"] = { + "(18-32)% increased Freeze Threshold", + ["affix"] = "of Snowbreathing", + ["group"] = "FreezeThreshold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 2984, + }, + ["tradeHashes"] = { + [3780644166] = { + "(18-32)% increased Freeze Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelHazardDamage"] = { + "(10-20)% increased Hazard Damage", + ["affix"] = "Hazardous", + ["group"] = "HazardDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6981, + }, + ["tradeHashes"] = { + [1697951953] = { + "(10-20)% increased Hazard Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelHeraldDamage"] = { + "Herald Skills deal (15-25)% increased Damage", + ["affix"] = "Heralding", + ["group"] = "HeraldDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 6028, + }, + ["tradeHashes"] = { + [21071013] = { + "Herald Skills deal (15-25)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelIgniteChance"] = { + "(10-20)% increased Flammability Magnitude", + ["affix"] = "of Ignition", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [2968503605] = { + "(10-20)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelIgniteEffect"] = { + "(5-15)% increased Ignite Magnitude", + ["affix"] = "Burning", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(5-15)% increased Ignite Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelIncisionChance"] = { + "(15-25)% chance for Attack Hits to apply Incision", + ["affix"] = "Incise", + ["group"] = "IncisionChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["statOrder"] = { + 5553, + }, + ["tradeHashes"] = { + [300723956] = { + "(15-25)% chance for Attack Hits to apply Incision", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelIncreasedDuration"] = { + "(5-10)% increased Skill Effect Duration", + ["affix"] = "of Lengthening", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(5-10)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelKnockback"] = { + "(5-15)% increased Knockback Distance", + ["affix"] = "of Fending", + ["group"] = "KnockbackDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1744, + }, + ["tradeHashes"] = { + [565784293] = { + "(5-15)% increased Knockback Distance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeCost"] = { + "(4-6)% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "of Sacrifice", + ["group"] = "LifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "(4-6)% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeFlaskChargeGen"] = { + "(10-20)% increased Life Flask Charges gained", + ["affix"] = "of Pathfinding", + ["group"] = "LifeFlaskChargePercentGeneration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 7433, + }, + ["tradeHashes"] = { + [4009879772] = { + "(10-20)% increased Life Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeFlaskRecovery"] = { + "(5-15)% increased Life Recovery from Flasks", + ["affix"] = "of Recovery", + ["group"] = "GlobalFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [821241191] = { + "(5-15)% increased Life Recovery from Flasks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeLeech"] = { + "(5-15)% increased amount of Life Leeched", + ["affix"] = "of Frenzy", + ["group"] = "LifeLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(5-15)% increased amount of Life Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeRecoup"] = { + "(2-3)% of Damage taken Recouped as Life", + ["affix"] = "of Infusion", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(2-3)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeRegeneration"] = { + "(5-10)% increased Life Regeneration rate", + ["affix"] = "of Regeneration", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "(5-10)% increased Life Regeneration rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLifeonKill"] = { + "Recover (1-2)% of maximum Life on Kill", + ["affix"] = "of Success", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (1-2)% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLightningDamage"] = { + "(5-15)% increased Lightning Damage", + ["affix"] = "Humming", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2231156303] = { + "(5-15)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelLightningPenetration"] = { + "Damage Penetrates (5-10)% Lightning Resistance", + ["affix"] = "Surging", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [818778753] = { + "Damage Penetrates (5-10)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaceDamage"] = { + "(6-16)% increased Damage with Maces", + ["affix"] = "Beating", + ["group"] = "IncreasedMaceDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1249, + }, + ["tradeHashes"] = { + [1181419800] = { + "(6-16)% increased Damage with Maces", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaceStun"] = { + "(15-25)% increased Stun Buildup with Maces", + ["affix"] = "of Thumping", + ["group"] = "MaceStun", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 7945, + }, + ["tradeHashes"] = { + [872504239] = { + "(15-25)% increased Stun Buildup with Maces", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelManaFlaskChargeGen"] = { + "(10-20)% increased Mana Flask Charges gained", + ["affix"] = "of Fountains", + ["group"] = "ManaFlaskChargePercentGeneration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["statOrder"] = { + 7978, + }, + ["tradeHashes"] = { + [3590792340] = { + "(10-20)% increased Mana Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelManaFlaskRecovery"] = { + "(5-15)% increased Mana Recovery from Flasks", + ["affix"] = "of Quenching", + ["group"] = "FlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [2222186378] = { + "(5-15)% increased Mana Recovery from Flasks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelManaLeech"] = { + "(5-15)% increased amount of Mana Leeched", + ["affix"] = "of Thirsting", + ["group"] = "ManaLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1897, + }, + ["tradeHashes"] = { + [2839066308] = { + "(5-15)% increased amount of Mana Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelManaRegeneration"] = { + "(5-15)% increased Mana Regeneration Rate", + ["affix"] = "of Energy", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(5-15)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelManaonKill"] = { + "Recover (1-2)% of maximum Mana on Kill", + ["affix"] = "of Osmosis", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [1604736568] = { + "Recover (1-2)% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMarkCastSpeed"] = { + "Mark Skills have (5-15)% increased Use Speed", + ["affix"] = "of Targeting", + ["group"] = "MarkCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1946, + }, + ["tradeHashes"] = { + [1714971114] = { + "Mark Skills have (5-15)% increased Use Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMarkDuration"] = { + "Mark Skills have (18-32)% increased Skill Effect Duration", + ["affix"] = "of Tracking", + ["group"] = "MarkDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 8822, + }, + ["tradeHashes"] = { + [2594634307] = { + "Mark Skills have (18-32)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMarkEffect"] = { + "(4-8)% increased Effect of your Mark Skills", + ["affix"] = "Marking", + ["group"] = "MarkEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [712554801] = { + "(4-8)% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaximumColdResistance"] = { + "+1% to Maximum Cold Resistance", + ["affix"] = "of the Kraken", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaximumFireResistance"] = { + "+1% to Maximum Fire Resistance", + ["affix"] = "of the Phoenix", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaximumLightningResistance"] = { + "+1% to Maximum Lightning Resistance", + ["affix"] = "of the Leviathan", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMaximumRage"] = { + "+(1-2) to Maximum Rage", + ["affix"] = "Angry", + ["group"] = "MaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1181501418] = { + "+(1-2) to Maximum Rage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMeleeDamage"] = { + "(5-15)% increased Melee Damage", + ["affix"] = "Clashing", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1002362373] = { + "(5-15)% increased Melee Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { + "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["affix"] = "Engaging", + ["group"] = "MeleeDamageIfProjectileHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 8914, + }, + ["tradeHashes"] = { + [3028809864] = { + "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionAccuracy"] = { + "(10-20)% increased Minion Accuracy Rating", + ["affix"] = "Training", + ["group"] = "MinionAccuracyRatingForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "minion", + }, + ["statOrder"] = { + 8996, + }, + ["tradeHashes"] = { + [1718147982] = { + "(10-20)% increased Minion Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelMinionArea"] = { + "Minions have (5-8)% increased Area of Effect", + ["affix"] = "Companion", + ["group"] = "MinionAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [3811191316] = { + "Minions have (5-8)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionAttackandCastSpeed"] = { + "Minions have (2-4)% increased Attack and Cast Speed", + ["affix"] = "of Orchestration", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (2-4)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionChaosResistance"] = { + "Minions have +(7-13)% to Chaos Resistance", + ["affix"] = "of Righteousness", + ["group"] = "MinionChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "minion_resistance", + "chaos", + "resistance", + "minion", + }, + ["statOrder"] = { + 2668, + }, + ["tradeHashes"] = { + [3837707023] = { + "Minions have +(7-13)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionCriticalChance"] = { + "Minions have (10-20)% increased Critical Hit Chance", + ["affix"] = "of Marshalling", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (10-20)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionCriticalMultiplier"] = { + "Minions have (15-25)% increased Critical Damage Bonus", + ["affix"] = "of Gripping", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [1854213750] = { + "Minions have (15-25)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionDamage"] = { + "Minions deal (5-15)% increased Damage", + ["affix"] = "Authoritative", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (5-15)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionLife"] = { + "Minions have (5-15)% increased maximum Life", + ["affix"] = "Fortuitous", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (5-15)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionPhysicalDamageReduction"] = { + "Minions have (6-16)% additional Physical Damage Reduction", + ["affix"] = "of Confidence", + ["group"] = "MinionPhysicalDamageReduction", + ["level"] = 1, + ["modTags"] = { + "physical", + "minion", + }, + ["statOrder"] = { + 2022, + }, + ["tradeHashes"] = { + [3119612865] = { + "Minions have (6-16)% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionResistances"] = { + "Minions have +(5-10)% to all Elemental Resistances", + ["affix"] = "of Acclimatisation", + ["group"] = "MinionElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(5-10)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelMinionReviveSpeed"] = { + "Minions Revive (5-15)% faster", + ["affix"] = "of Revival", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (5-15)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelMovementSpeed"] = { + "(1-2)% increased Movement Speed", + ["affix"] = "of Speed", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(1-2)% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelOfferingDuration"] = { + "Offering Skills have (15-25)% increased Duration", + ["affix"] = "of Offering", + ["group"] = "OfferingDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2957407601] = { + "Offering Skills have (15-25)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelOfferingLife"] = { + "Offerings have (15-25)% increased Maximum Life", + ["affix"] = "Sacrificial", + ["group"] = "OfferingLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["statOrder"] = { + 9356, + }, + ["tradeHashes"] = { + [3787460122] = { + "Offerings have (15-25)% increased Maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelParriedDebuffDuration"] = { + "(10-15)% increased Parried Debuff Duration", + ["affix"] = "of Unsettling", + ["group"] = "ParriedDebuffDuration", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9392, + }, + ["tradeHashes"] = { + [3401186585] = { + "(10-15)% increased Parried Debuff Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelParryDamage"] = { + "(15-25)% increased Parry Damage", + ["affix"] = "Parrying", + ["group"] = "ParryDamage", + ["level"] = 1, + ["modTags"] = { + "block", + "damage", + }, + ["statOrder"] = { + 9384, + }, + ["tradeHashes"] = { + [1569159338] = { + "(15-25)% increased Parry Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPhysicalDamage"] = { + "(5-15)% increased Global Physical Damage", + ["affix"] = "Sharpened", + ["group"] = "PhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1310194496] = { + "(5-15)% increased Global Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPiercingProjectiles"] = { + "(10-20)% chance to Pierce an Enemy", + ["affix"] = "of Piercing", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(10-20)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPinBuildup"] = { + "(10-20)% increased Pin Buildup", + ["affix"] = "of Pinning", + ["group"] = "PinBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7195, + }, + ["tradeHashes"] = { + [3473929743] = { + "(10-20)% increased Pin Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPlantDamage"] = { + "(5-15)% increased Damage with Plant Skills", + ["affix"] = "Overgrown", + ["group"] = "PlantDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 9486, + }, + ["tradeHashes"] = { + [2518900926] = { + "(5-15)% increased Damage with Plant Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "strjewel", + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["JewelPoisonChance"] = { + "(5-10)% chance to Poison on Hit", + ["affix"] = "of Poisoning", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(5-10)% chance to Poison on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPoisonDamage"] = { + "(5-15)% increased Magnitude of Poison you inflict", + ["affix"] = "Venomous", + ["group"] = "PoisonEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(5-15)% increased Magnitude of Poison you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPoisonDuration"] = { + "(5-10)% increased Poison Duration", + ["affix"] = "of Infection", + ["group"] = "PoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [2011656677] = { + "(5-10)% increased Poison Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelPresenceRadius"] = { + "(15-25)% increased Presence Area of Effect", + ["affix"] = "Iconic", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(15-25)% increased Presence Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelProjectileDamage"] = { + "(5-15)% increased Projectile Damage", + ["affix"] = "Archer's", + ["group"] = "ProjectileDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [1839076647] = { + "(5-15)% increased Projectile Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { + "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "Retreating", + ["group"] = "ProjectileDamageIfMeleeHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 9547, + }, + ["tradeHashes"] = { + [3596695232] = { + "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelProjectileSpeed"] = { + "(4-8)% increased Projectile Speed", + ["affix"] = "Soaring", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [3759663284] = { + "(4-8)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelQuarterstaffDamage"] = { + "(6-16)% increased Damage with Quarterstaves", + ["affix"] = "Monk's", + ["group"] = "IncreasedStaffDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1238, + }, + ["tradeHashes"] = { + [4045894391] = { + "(6-16)% increased Damage with Quarterstaves", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelQuarterstaffFreezeBuildup"] = { + "(10-20)% increased Freeze Buildup with Quarterstaves", + ["affix"] = "of Glaciers", + ["group"] = "QuarterstaffFreezeBuildup", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 9597, + }, + ["tradeHashes"] = { + [1697447343] = { + "(10-20)% increased Freeze Buildup with Quarterstaves", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelQuarterstaffSpeed"] = { + "(2-4)% increased Attack Speed with Quarterstaves", + ["affix"] = "of Sequencing", + ["group"] = "StaffAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1320, + }, + ["tradeHashes"] = { + [3283482523] = { + "(2-4)% increased Attack Speed with Quarterstaves", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelQuiverEffect"] = { + "(4-6)% increased bonuses gained from Equipped Quiver", + ["affix"] = "Fletching", + ["group"] = "QuiverModifierEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9605, + }, + ["tradeHashes"] = { + [1200678966] = { + "(4-6)% increased bonuses gained from Equipped Quiver", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAccuracy"] = { + "(1-2)% increased Accuracy Rating", + ["affix"] = "Accurate", + ["group"] = "IncreasedAccuracyPercent", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1332, + }, + ["tradeHashes"] = { + [533892981] = { + "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAilmentChance"] = { + "(3-7)% increased chance to inflict Ailments", + ["affix"] = "of Ailing", + ["group"] = "AilmentChance", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4255, + }, + ["tradeHashes"] = { + [412709880] = { + "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusAilmentEffect"] = { + "(3-7)% increased Magnitude of Ailments you inflict", + ["affix"] = "Acrimonious", + ["group"] = "AilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1321104829] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusAilmentThreshold"] = { + "(2-3)% increased Elemental Ailment Threshold", + ["affix"] = "of Enduring", + ["group"] = "IncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4266, + }, + ["tradeHashes"] = { + [3409275777] = { + "Small Passive Skills in Radius also grant (2-3)% increased Elemental Ailment Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAilmentThresholdfromEnergyShield"] = { + "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", + ["affix"] = "of Inuring", + ["group"] = "AilmentThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4265, + }, + ["tradeHashes"] = { + [693237939] = { + "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAreaofEffect"] = { + "(2-3)% increased Area of Effect", + ["affix"] = "Blasting", + ["group"] = "AreaOfEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1630, + }, + ["tradeHashes"] = { + [3391917254] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusArmour"] = { + "(2-3)% increased Armour", + ["affix"] = "Armoured", + ["group"] = "GlobalPhysicalDamageReductionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "armour", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 882, + }, + ["tradeHashes"] = { + [3858398337] = { + "Small Passive Skills in Radius also grant (2-3)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusArmourBreak"] = { + "Break (1-2)% increased Armour", + ["affix"] = "Shattering", + ["group"] = "ArmourBreak", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4407, + }, + ["tradeHashes"] = { + [4089835882] = { + "Small Passive Skills in Radius also grant Break (1-2)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusArmourBreakDuration"] = { + "(5-10)% increased Armour Break Duration", + ["affix"] = "Resonating", + ["group"] = "ArmourBreakDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4409, + }, + ["tradeHashes"] = { + [504915064] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Armour Break Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAttackCriticalChance"] = { + "(3-7)% increased Critical Hit Chance for Attacks", + ["affix"] = "of Deadliness", + ["group"] = "AttackCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 977, + }, + ["tradeHashes"] = { + [3865605585] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAttackCriticalDamage"] = { + "(5-10)% increased Critical Damage Bonus for Attack Damage", + ["affix"] = "of Demolishing", + ["group"] = "AttackCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 981, + }, + ["tradeHashes"] = { + [1352561456] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus for Attack Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAttackDamage"] = { + "(1-2)% increased Attack Damage", + ["affix"] = "Combat", + ["group"] = "AttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1156, + }, + ["tradeHashes"] = { + [1426522529] = { + "Small Passive Skills in Radius also grant (1-2)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusAttackSpeed"] = { + "(1-2)% increased Attack Speed", + ["affix"] = "of Alacrity", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [2822644689] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusAuraEffect"] = { + "Aura Skills have (1-3)% increased Magnitudes", + ["affix"] = "Commanding", + ["group"] = "AuraEffectForJewel", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2574, + }, + ["tradeHashes"] = { + [3243034867] = { + "Notable Passive Skills in Radius also grant Aura Skills have (1-3)% increased Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusAxeDamage"] = { + "(2-3)% increased Damage with Axes", + ["affix"] = "Sinister", + ["group"] = "IncreasedAxeDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1233, + }, + ["tradeHashes"] = { + [2508922991] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Axes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusAxeSpeed"] = { + "(1-2)% increased Attack Speed with Axes", + ["affix"] = "of Cleaving", + ["group"] = "AxeAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1319, + }, + ["tradeHashes"] = { + [2433102767] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Axes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusBannerArea"] = { + "Banner Skills have (2-3)% increased Area of Effect", + ["affix"] = "Rallying", + ["group"] = "BannerArea", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4629, + }, + ["tradeHashes"] = { + [4142814612] = { + "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBannerDuration"] = { + "Banner Skills have (3-4)% increased Duration", + ["affix"] = "of Inspiring", + ["group"] = "BannerDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4631, + }, + ["tradeHashes"] = { + [2690740379] = { + "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBannerValourGained"] = { + "(8-12)% increased Glory generation for Banner Skills", + ["affix"] = "of Valour", + ["group"] = "BannerValourGained", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6915, + }, + ["tradeHashes"] = { + [2907381231] = { + "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBleedingChance"] = { + "1% chance to inflict Bleeding on Hit", + ["affix"] = "Bleeding", + ["group"] = "BaseChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [944643028] = { + "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBleedingDuration"] = { + "(3-7)% increased Bleeding Duration", + ["affix"] = "of Haemophilia", + ["group"] = "BleedDuration", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "attack", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4660, + }, + ["tradeHashes"] = { + [1505023559] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBleedingEffect"] = { + "(3-7)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Haemorrhaging", + ["group"] = "BleedDotMultiplier", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "damage", + "physical", + "attack", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [391602279] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBlindEffect"] = { + "(3-5)% increased Blind Effect", + ["affix"] = "Stifling", + ["group"] = "BlindEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4928, + }, + ["tradeHashes"] = { + [2912416697] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBlindonHit"] = { + "1% chance to Blind Enemies on Hit with Attacks", + ["affix"] = "of Blinding", + ["group"] = "AttacksBlindOnHitChance", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4588, + }, + ["tradeHashes"] = { + [2610562860] = { + "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBlock"] = { + "(1-3)% increased Block chance", + ["affix"] = "Protecting", + ["group"] = "IncreasedBlockChance", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1133, + }, + ["tradeHashes"] = { + [3821543413] = { + "Notable Passive Skills in Radius also grant (1-3)% increased Block chance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBowAccuracyRating"] = { + "(1-2)% increased Accuracy Rating with Bows", + ["affix"] = "Precise", + ["group"] = "BowIncreasedAccuracyRating", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1341, + }, + ["tradeHashes"] = { + [1285594161] = { + "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating with Bows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBowDamage"] = { + "(2-3)% increased Damage with Bows", + ["affix"] = "Perforating", + ["group"] = "IncreasedBowDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1253, + }, + ["tradeHashes"] = { + [945774314] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Bows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusBowSpeed"] = { + "(1-2)% increased Attack Speed with Bows", + ["affix"] = "of Nocking", + ["group"] = "BowAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1324, + }, + ["tradeHashes"] = { + [3641543553] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Bows", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCastSpeed"] = { + "(1-2)% increased Cast Speed", + ["affix"] = "of Enchanting", + ["group"] = "IncreasedCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "caster", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [1022759479] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusChainFromTerrain"] = { + "Projectiles have (1-2)% chance to Chain an additional time from terrain", + ["affix"] = "of Chaining", + ["group"] = "ChainFromTerrain", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [2334956771] = { + "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusChaosDamage"] = { + "(1-2)% increased Chaos Damage", + ["affix"] = "Chaotic", + ["group"] = "IncreasedChaosDamage", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "damage", + "chaos", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 876, + }, + ["tradeHashes"] = { + [1309799717] = { + "Small Passive Skills in Radius also grant (1-2)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCharmChargesGained"] = { + "(3-7)% increased Charm Charges gained", + ["affix"] = "of the Thicker", + ["group"] = "CharmChargesGained", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 5605, + }, + ["tradeHashes"] = { + [2320654813] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCharmDamageWhileUsing"] = { + "(2-3)% increased Damage while you have an active Charm", + ["affix"] = "Verdant", + ["group"] = "CharmDamageWhileUsing", + ["level"] = 1, + ["modTags"] = { + "charm", + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 6023, + }, + ["tradeHashes"] = { + [3752589831] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCharmDuration"] = { + "(1-2)% increased Charm Effect Duration", + ["affix"] = "of the Woodland", + ["group"] = "CharmDuration", + ["level"] = 1, + ["modTags"] = { + "charm", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 900, + }, + ["tradeHashes"] = { + [3088348485] = { + "Small Passive Skills in Radius also grant (1-2)% increased Charm Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusChillDuration"] = { + "(6-12)% increased Chill Duration on Enemies", + ["affix"] = "of Frost", + ["group"] = "IncreasedChillDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1612, + }, + ["tradeHashes"] = { + [61644361] = { + "Notable Passive Skills in Radius also grant (6-12)% increased Chill Duration on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusColdDamage"] = { + "(1-2)% increased Cold Damage", + ["affix"] = "Chilling", + ["group"] = "ColdDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 874, + }, + ["tradeHashes"] = { + [2442527254] = { + "Small Passive Skills in Radius also grant (1-2)% increased Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusColdPenetration"] = { + "Damage Penetrates (1-2)% Cold Resistance", + ["affix"] = "Numbing", + ["group"] = "ColdResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2725, + }, + ["tradeHashes"] = { + [1896066427] = { + "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCompanionDamage"] = { + "Companions deal (2-3)% increased Damage", + ["affix"] = "Kinship", + ["group"] = "CompanionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 5722, + }, + ["tradeHashes"] = { + [1494950893] = { + "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCompanionLife"] = { + "Companions have (2-3)% increased maximum Life", + ["affix"] = "Kindred", + ["group"] = "CompanionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 5726, + }, + ["tradeHashes"] = { + [2638756573] = { + "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCooldownSpeed"] = { + "(1-3)% increased Cooldown Recovery Rate", + ["affix"] = "of Chronomancy", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [2149603090] = { + "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCorpses"] = { + "(2-3)% increased Damage if you have Consumed a Corpse Recently", + ["affix"] = "Necromantic", + ["group"] = "DamageIfConsumedCorpse", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 3901, + }, + ["tradeHashes"] = { + [1892122971] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage if you have Consumed a Corpse Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCriticalAilmentEffect"] = { + "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["affix"] = "Rancorous", + ["group"] = "CriticalAilmentEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 5818, + }, + ["tradeHashes"] = { + [4092130601] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusCriticalChance"] = { + "(3-7)% increased Critical Hit Chance", + ["affix"] = "of Annihilation", + ["group"] = "CriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [2077117738] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCriticalDamage"] = { + "(5-10)% increased Critical Damage Bonus", + ["affix"] = "of Potency", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "damage", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [2359002191] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCrossbowDamage"] = { + "(2-3)% increased Damage with Crossbows", + ["affix"] = "Bolting", + ["group"] = "CrossbowDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 3948, + }, + ["tradeHashes"] = { + [517664839] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Crossbows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCrossbowReloadSpeed"] = { + "(5-7)% increased Crossbow Reload Speed", + ["affix"] = "of Reloading", + ["group"] = "CrossbowReloadSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9734, + }, + ["tradeHashes"] = { + [3856744003] = { + "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCrossbowSpeed"] = { + "(1-2)% increased Attack Speed with Crossbows", + ["affix"] = "of Rapidity", + ["group"] = "CrossbowSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 3952, + }, + ["tradeHashes"] = { + [715957346] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Crossbows", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCurseArea"] = { + "(3-6)% increased Area of Effect of Curses", + ["affix"] = "Expanding", + ["group"] = "CurseAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [3859848445] = { + "Notable Passive Skills in Radius also grant (3-6)% increased Area of Effect of Curses", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCurseDuration"] = { + "(2-4)% increased Curse Duration", + ["affix"] = "of Continuation", + ["group"] = "BaseCurseDuration", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1540, + }, + ["tradeHashes"] = { + [1087108135] = { + "Small Passive Skills in Radius also grant (2-4)% increased Curse Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusCurseEffect"] = { + "1% increased Curse Magnitudes", + ["affix"] = "Hexing", + ["group"] = "CurseEffectivenessForJewel", + ["level"] = 1, + ["modTags"] = { + "caster", + "curse", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2770044702] = { + "Notable Passive Skills in Radius also grant 1% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusDaggerCriticalChance"] = { + "(3-7)% increased Critical Hit Chance with Daggers", + ["affix"] = "of Backstabbing", + ["group"] = "CritChanceWithDaggerForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1363, + }, + ["tradeHashes"] = { + [4260437915] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Daggers", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusDaggerDamage"] = { + "(2-3)% increased Damage with Daggers", + ["affix"] = "Lethal", + ["group"] = "IncreasedDaggerDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1245, + }, + ["tradeHashes"] = { + [1441232665] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Daggers", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusDaggerSpeed"] = { + "(1-2)% increased Attack Speed with Daggers", + ["affix"] = "of Slicing", + ["group"] = "DaggerAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1322, + }, + ["tradeHashes"] = { + [2172391939] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Daggers", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusDamageVsRareOrUnique"] = { + "(2-3)% increased Damage with Hits against Rare and Unique Enemies", + ["affix"] = "Slaying", + ["group"] = "DamageVsRareOrUnique", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2926, + }, + ["tradeHashes"] = { + [147764878] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Hits against Rare and Unique Enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusDamagefromMana"] = { + "1% of Damage is taken from Mana before Life", + ["affix"] = "of Mind", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [2709646369] = { + "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusDamagevsArmourBrokenEnemies"] = { + "(2-4)% increased Damage against Enemies with Fully Broken Armour", + ["affix"] = "Exploiting", + ["group"] = "DamagevsArmourBrokenEnemies", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 5947, + }, + ["tradeHashes"] = { + [1834658952] = { + "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusDamagingAilmentDuration"] = { + "(3-5)% increased Duration of Damaging Ailments on Enemies", + ["affix"] = "of Suffusion", + ["group"] = "DamagingAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6065, + }, + ["tradeHashes"] = { + [2272980012] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusDazeBuildup"] = { + "1% chance to Daze on Hit", + ["affix"] = "of Dazing", + ["group"] = "DazeBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 4669, + }, + ["tradeHashes"] = { + [4258000627] = { + "Small Passive Skills in Radius also grant 1% chance to Daze on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusDebuffExpiry"] = { + "Debuffs on you expire (3-5)% faster", + ["affix"] = "of Diminishing", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [2256120736] = { + "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusElementalAilmentDuration"] = { + "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", + ["affix"] = "of Suffering", + ["group"] = "ElementalAilmentDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 7266, + }, + ["tradeHashes"] = { + [1323216174] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusElementalDamage"] = { + "(1-2)% increased Elemental Damage", + ["affix"] = "Prismatic", + ["group"] = "ElementalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3222402650] = { + "Small Passive Skills in Radius also grant (1-2)% increased Elemental Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["JewelRadiusEmpoweredAttackDamage"] = { + "Empowered Attacks deal (2-3)% increased Damage", + ["affix"] = "Empowering", + ["group"] = "ExertedAttackDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 6322, + }, + ["tradeHashes"] = { + [3395186672] = { + "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusEnergy"] = { + "Meta Skills gain (2-4)% increased Energy", + ["affix"] = "of Generation", + ["group"] = "EnergyGeneration", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6410, + }, + ["tradeHashes"] = { + [2849546516] = { + "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusEnergyShield"] = { + "(2-3)% increased maximum Energy Shield", + ["affix"] = "Shimmering", + ["group"] = "GlobalEnergyShieldPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 886, + }, + ["tradeHashes"] = { + [3665922113] = { + "Small Passive Skills in Radius also grant (2-3)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusEnergyShieldDelay"] = { + "(5-7)% faster start of Energy Shield Recharge", + ["affix"] = "Serene", + ["group"] = "EnergyShieldDelay", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1033, + }, + ["tradeHashes"] = { + [3394832998] = { + "Notable Passive Skills in Radius also grant (5-7)% faster start of Energy Shield Recharge", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusEnergyShieldRecharge"] = { + "(2-3)% increased Energy Shield Recharge Rate", + ["affix"] = "Fevered", + ["group"] = "EnergyShieldRegeneration", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1032, + }, + ["tradeHashes"] = { + [1552666713] = { + "Small Passive Skills in Radius also grant (2-3)% increased Energy Shield Recharge Rate", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusEvasion"] = { + "(2-3)% increased Evasion Rating", + ["affix"] = "Evasive", + ["group"] = "GlobalEvasionRatingPercent", + ["level"] = 1, + ["modTags"] = { + "defences", + "evasion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 884, + }, + ["tradeHashes"] = { + [1994296038] = { + "Small Passive Skills in Radius also grant (2-3)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFasterAilments"] = { + "Damaging Ailments deal damage (2-3)% faster", + ["affix"] = "of Decrepifying", + ["group"] = "FasterAilmentDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [3173882956] = { + "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusFireDamage"] = { + "(1-2)% increased Fire Damage", + ["affix"] = "Flaming", + ["group"] = "FireDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 873, + }, + ["tradeHashes"] = { + [139889694] = { + "Small Passive Skills in Radius also grant (1-2)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFirePenetration"] = { + "Damage Penetrates (1-2)% Fire Resistance", + ["affix"] = "Searing", + ["group"] = "FireResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2724, + }, + ["tradeHashes"] = { + [1432756708] = { + "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFlailCriticalChance"] = { + "(3-7)% increased Critical Hit Chance with Flails", + ["affix"] = "of Thrashing", + ["group"] = "FlailCriticalChance", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 3942, + }, + ["tradeHashes"] = { + [1441673288] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Flails", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusFlailDamage"] = { + "(1-2)% increased Damage with Flails", + ["affix"] = "Flailing", + ["group"] = "FlailDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 3937, + }, + ["tradeHashes"] = { + [2482383489] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Flails", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusFlaskChargesGained"] = { + "(3-5)% increased Flask Charges gained", + ["affix"] = "of Gathering", + ["group"] = "IncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [2066964205] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFlaskDuration"] = { + "(1-2)% increased Flask Effect Duration", + ["affix"] = "of Prolonging", + ["group"] = "FlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [1773308808] = { + "Small Passive Skills in Radius also grant (1-2)% increased Flask Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFocusEnergyShield"] = { + "(15-25)% increased Energy Shield from Equipped Focus", + ["affix"] = "Focusing", + ["group"] = "FocusEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "energy_shield", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6426, + }, + ["tradeHashes"] = { + [3419203492] = { + "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusForkingProjectiles"] = { + "Projectiles have (5-7)% chance for an additional Projectile when Forking", + ["affix"] = "of Forking", + ["group"] = "ForkingProjectiles", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 5515, + }, + ["tradeHashes"] = { + [4258720395] = { + "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFreezeAmount"] = { + "(5-10)% increased Freeze Buildup", + ["affix"] = "of Freezing", + ["group"] = "FreezeDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1057, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1087531620] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusFreezeThreshold"] = { + "(2-4)% increased Freeze Threshold", + ["affix"] = "of Snowbreathing", + ["group"] = "FreezeThreshold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2984, + }, + ["tradeHashes"] = { + [830345042] = { + "Small Passive Skills in Radius also grant (2-4)% increased Freeze Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusHazardDamage"] = { + "(2-3)% increased Hazard Damage", + ["affix"] = "Hazardous", + ["group"] = "HazardDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 6981, + }, + ["tradeHashes"] = { + [255840549] = { + "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusHeraldDamage"] = { + "Herald Skills deal (2-4)% increased Damage", + ["affix"] = "Heralding", + ["group"] = "HeraldDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 6028, + }, + ["tradeHashes"] = { + [3065378291] = { + "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusIgniteChance"] = { + "(2-3)% increased Flammability Magnitude", + ["affix"] = "of Ignition", + ["group"] = "IgniteChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1055, + }, + ["tags"] = { + "no_cold_spell_mods", + "no_lightning_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [394473632] = { + "Small Passive Skills in Radius also grant (2-3)% increased Flammability Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusIgniteEffect"] = { + "(3-7)% increased Ignite Magnitude", + ["affix"] = "Burning", + ["group"] = "IgniteEffect", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1077, + }, + ["tradeHashes"] = { + [253641217] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Ignite Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusIncColdFreToLightning"] = { + "Increases and Reductions to", + " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", + ["affix"] = "Wrath", + ["group"] = "IncreasedColdFreToLightning", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 7787, + 7787.1, + }, + ["tradeHashes"] = { + [895564377] = { + "Increases and Reductions to", + " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelRadiusIncLightningColdToFire"] = { + "Increases and Reductions to", + " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", + ["affix"] = "Anger", + ["group"] = "IncreasedLightningColdToFire", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 7788, + 7788.1, + }, + ["tradeHashes"] = { + [1400313697] = { + "Increases and Reductions to", + " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelRadiusIncLightningFireToCold"] = { + "Increases and Reductions to", + " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", + ["affix"] = "Hatred", + ["group"] = "IncreasedLightningFireToCold", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 7789, + 7789.1, + }, + ["tradeHashes"] = { + [3368921525] = { + "Increases and Reductions to", + " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelRadiusIncisionChance"] = { + "(3-5)% chance for Attack Hits to apply Incision", + ["affix"] = "Incise", + ["group"] = "IncisionChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 5553, + }, + ["tradeHashes"] = { + [318092306] = { + "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusIncreasedDuration"] = { + "(3-5)% increased Skill Effect Duration", + ["affix"] = "of Lengthening", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3113764475] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusKnockback"] = { + "(3-7)% increased Knockback Distance", + ["affix"] = "of Fending", + ["group"] = "KnockbackDistance", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1744, + }, + ["tradeHashes"] = { + [2976476845] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Knockback Distance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLargeSize"] = { + "Upgrades Radius to Large", + ["affix"] = "Grand", + ["group"] = "JewelRadiusLargerRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7759, + }, + ["tradeHashes"] = { + [3891355829] = { + "Upgrades Radius to Large", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeCost"] = { + "(2-3)% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "of Sacrifice", + ["group"] = "LifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [3386297724] = { + "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeFlaskChargeGen"] = { + "(5-10)% increased Life Flask Charges gained", + ["affix"] = "of Pathfinding", + ["group"] = "LifeFlaskChargePercentGeneration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 7433, + }, + ["tradeHashes"] = { + [942519401] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeFlaskRecovery"] = { + "(2-3)% increased Life Recovery from Flasks", + ["affix"] = "of Recovery", + ["group"] = "GlobalFlaskLifeRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "life", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1794, + }, + ["tradeHashes"] = { + [980177976] = { + "Small Passive Skills in Radius also grant (2-3)% increased Life Recovery from Flasks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeLeech"] = { + "(2-3)% increased amount of Life Leeched", + ["affix"] = "of Frenzy", + ["group"] = "LifeLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [3666476747] = { + "Small Passive Skills in Radius also grant (2-3)% increased amount of Life Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeRecoup"] = { + "1% of Damage taken Recouped as Life", + ["affix"] = "of Infusion", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [3669820740] = { + "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeRegeneration"] = { + "(3-5)% increased Life Regeneration rate", + ["affix"] = "of Regeneration", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [1185341308] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Life Regeneration rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLifeonKill"] = { + "Recover 1% of maximum Life on Kill", + ["affix"] = "of Success", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2726713579] = { + "Notable Passive Skills in Radius also grant Recover 1% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLightningDamage"] = { + "(1-2)% increased Lightning Damage", + ["affix"] = "Humming", + ["group"] = "LightningDamagePercentage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 875, + }, + ["tradeHashes"] = { + [2768899959] = { + "Small Passive Skills in Radius also grant (1-2)% increased Lightning Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusLightningPenetration"] = { + "Damage Penetrates (1-2)% Lightning Resistance", + ["affix"] = "Surging", + ["group"] = "LightningResistancePenetration", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2726, + }, + ["tradeHashes"] = { + [868556494] = { + "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMaceDamage"] = { + "(1-2)% increased Damage with Maces", + ["affix"] = "Beating", + ["group"] = "IncreasedMaceDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1249, + }, + ["tradeHashes"] = { + [1852184471] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Maces", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMaceStun"] = { + "(6-12)% increased Stun Buildup with Maces", + ["affix"] = "of Thumping", + ["group"] = "MaceStun", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 7945, + }, + ["tradeHashes"] = { + [2392824305] = { + "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusManaFlaskChargeGen"] = { + "(5-10)% increased Mana Flask Charges gained", + ["affix"] = "of Fountains", + ["group"] = "ManaFlaskChargePercentGeneration", + ["level"] = 1, + ["modTags"] = { + "flask", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 7978, + }, + ["tradeHashes"] = { + [3171212276] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusManaFlaskRecovery"] = { + "(1-2)% increased Mana Recovery from Flasks", + ["affix"] = "of Quenching", + ["group"] = "FlaskManaRecovery", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "mana", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1795, + }, + ["tradeHashes"] = { + [3774951878] = { + "Small Passive Skills in Radius also grant (1-2)% increased Mana Recovery from Flasks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusManaLeech"] = { + "(1-2)% increased amount of Mana Leeched", + ["affix"] = "of Thirsting", + ["group"] = "ManaLeechAmount", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1897, + }, + ["tradeHashes"] = { + [3700202631] = { + "Small Passive Skills in Radius also grant (1-2)% increased amount of Mana Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusManaRegeneration"] = { + "(1-2)% increased Mana Regeneration Rate", + ["affix"] = "of Energy", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [3256879910] = { + "Small Passive Skills in Radius also grant (1-2)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusManaonKill"] = { + "Recover 1% of maximum Mana on Kill", + ["affix"] = "of Osmosis", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [525523040] = { + "Notable Passive Skills in Radius also grant Recover 1% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMarkCastSpeed"] = { + "Mark Skills have (2-3)% increased Use Speed", + ["affix"] = "of Targeting", + ["group"] = "MarkCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1946, + }, + ["tradeHashes"] = { + [2202308025] = { + "Small Passive Skills in Radius also grant Mark Skills have (2-3)% increased Use Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMarkDuration"] = { + "Mark Skills have (3-4)% increased Skill Effect Duration", + ["affix"] = "of Tracking", + ["group"] = "MarkDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 8822, + }, + ["tradeHashes"] = { + [4162678661] = { + "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMarkEffect"] = { + "(2-3)% increased Effect of your Mark Skills", + ["affix"] = "Marking", + ["group"] = "MarkEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2378, + }, + ["tradeHashes"] = { + [179541474] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Effect of your Mark Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMaximumRage"] = { + "+1 to Maximum Rage", + ["affix"] = "Angry", + ["group"] = "MaximumRage", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9609, + }, + ["tradeHashes"] = { + [1846980580] = { + "Notable Passive Skills in Radius also grant +1 to Maximum Rage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMediumSize"] = { + "Upgrades Radius to Medium", + ["affix"] = "Greater", + ["group"] = "JewelRadiusLargerRadius", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7759, + }, + ["tradeHashes"] = { + [3891355829] = { + "Upgrades Radius to Medium", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMeleeDamage"] = { + "(1-2)% increased Melee Damage", + ["affix"] = "Clashing", + ["group"] = "MeleeDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1187, + }, + ["tradeHashes"] = { + [1337740333] = { + "Small Passive Skills in Radius also grant (1-2)% increased Melee Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { + "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["affix"] = "Engaging", + ["group"] = "MeleeDamageIfProjectileHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 8914, + }, + ["tradeHashes"] = { + [2421151933] = { + "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionAccuracy"] = { + "(2-3)% increased Minion Accuracy Rating", + ["affix"] = "Training", + ["group"] = "MinionAccuracyRatingForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 8996, + }, + ["tradeHashes"] = { + [793875384] = { + "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusMinionArea"] = { + "Minions have (3-5)% increased Area of Effect", + ["affix"] = "Companion", + ["group"] = "MinionAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2759, + }, + ["tradeHashes"] = { + [2534359663] = { + "Notable Passive Skills in Radius also grant Minions have (3-5)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionAttackandCastSpeed"] = { + "Minions have (1-2)% increased Attack and Cast Speed", + ["affix"] = "of Orchestration", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "attack", + "caster", + "speed", + "minion", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3106718406] = { + "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionChaosResistance"] = { + "Minions have +(1-2)% to Chaos Resistance", + ["affix"] = "of Righteousness", + ["group"] = "MinionChaosResistance", + ["level"] = 1, + ["modTags"] = { + "chaos_resistance", + "minion_resistance", + "chaos", + "resistance", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2668, + }, + ["tradeHashes"] = { + [1756380435] = { + "Small Passive Skills in Radius also grant Minions have +(1-2)% to Chaos Resistance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionCriticalChance"] = { + "Minions have (5-10)% increased Critical Hit Chance", + ["affix"] = "of Marshalling", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "minion", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [3628935286] = { + "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionCriticalMultiplier"] = { + "Minions have (6-12)% increased Critical Damage Bonus", + ["affix"] = "of Gripping", + ["group"] = "MinionCriticalStrikeMultiplier", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9032, + }, + ["tradeHashes"] = { + [593241812] = { + "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionDamage"] = { + "Minions deal (1-2)% increased Damage", + ["affix"] = "Authoritative", + ["group"] = "MinionDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1720, + }, + ["tradeHashes"] = { + [2954360902] = { + "Small Passive Skills in Radius also grant Minions deal (1-2)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionLife"] = { + "Minions have (1-2)% increased maximum Life", + ["affix"] = "Fortuitous", + ["group"] = "MinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [378796798] = { + "Small Passive Skills in Radius also grant Minions have (1-2)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionPhysicalDamageReduction"] = { + "Minions have (1-2)% additional Physical Damage Reduction", + ["affix"] = "of Confidence", + ["group"] = "MinionPhysicalDamageReduction", + ["level"] = 1, + ["modTags"] = { + "physical", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2022, + }, + ["tradeHashes"] = { + [30438393] = { + "Small Passive Skills in Radius also grant Minions have (1-2)% additional Physical Damage Reduction", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionResistances"] = { + "Minions have +(1-2)% to all Elemental Resistances", + ["affix"] = "of Acclimatisation", + ["group"] = "MinionElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [3225608889] = { + "Small Passive Skills in Radius also grant Minions have +(1-2)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusMinionReviveSpeed"] = { + "Minions Revive (3-7)% faster", + ["affix"] = "of Revival", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [50413020] = { + "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusMovementSpeed"] = { + "1% increased Movement Speed", + ["affix"] = "of Speed", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [844449513] = { + "Notable Passive Skills in Radius also grant 1% increased Movement Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusNotableEffect"] = { + "(15-25)% increased Effect of Small Passive Skills in Radius", + ["affix"] = "of Influence", + ["group"] = "JewelRadiusSmallNodeEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7783, + }, + ["tradeHashes"] = { + [1060572482] = { + "(15-25)% increased Effect of Small Passive Skills in Radius", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusNotableEffectNew"] = { + "(15-25)% increased Effect of Notable Passive Skills in Radius", + ["affix"] = "of Supremacy", + ["group"] = "JewelRadiusNotableEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7778, + }, + ["tradeHashes"] = { + [4234573345] = { + "(15-25)% increased Effect of Notable Passive Skills in Radius", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusOfferingDuration"] = { + "Offering Skills have (6-12)% increased Duration", + ["affix"] = "of Offering", + ["group"] = "OfferingDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9355, + }, + ["tradeHashes"] = { + [2374711847] = { + "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusOfferingLife"] = { + "Offerings have (2-3)% increased Maximum Life", + ["affix"] = "Sacrificial", + ["group"] = "OfferingLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "minion", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 9356, + }, + ["tradeHashes"] = { + [2107703111] = { + "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusParriedDebuffDuration"] = { + "(5-10)% increased Parried Debuff Duration", + ["affix"] = "of Unsettling", + ["group"] = "ParriedDebuffDuration", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9392, + }, + ["tradeHashes"] = { + [1514844108] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusParryDamage"] = { + "(2-3)% increased Parry Damage", + ["affix"] = "Parrying", + ["group"] = "ParryDamage", + ["level"] = 1, + ["modTags"] = { + "block", + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 9384, + }, + ["tradeHashes"] = { + [1007380041] = { + "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPhysicalDamage"] = { + "(1-2)% increased Global Physical Damage", + ["affix"] = "Sharpened", + ["group"] = "PhysicalDamagePercent", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "damage", + "physical", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1185, + }, + ["tradeHashes"] = { + [1417267954] = { + "Small Passive Skills in Radius also grant (1-2)% increased Global Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPiercingProjectiles"] = { + "(5-10)% chance to Pierce an Enemy", + ["affix"] = "of Piercing", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [1800303440] = { + "Notable Passive Skills in Radius also grant (5-10)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPinBuildup"] = { + "(5-10)% increased Pin Buildup", + ["affix"] = "of Pinning", + ["group"] = "PinBuildup", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 7195, + }, + ["tradeHashes"] = { + [1944020877] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPlantDamage"] = { + "(1-2)% increased Damage with Plant Skills", + ["affix"] = "Overgrown", + ["group"] = "PlantDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 9486, + }, + ["tradeHashes"] = { + [1590846356] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["JewelRadiusPoisonChance"] = { + "1% chance to Poison on Hit", + ["affix"] = "of Poisoning", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [2840989393] = { + "Small Passive Skills in Radius also grant 1% chance to Poison on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPoisonDamage"] = { + "(3-7)% increased Magnitude of Poison you inflict", + ["affix"] = "Venomous", + ["group"] = "PoisonEffect", + ["level"] = 1, + ["modTags"] = { + "damage", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9498, + }, + ["tradeHashes"] = { + [462424929] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPoisonDuration"] = { + "(3-7)% increased Poison Duration", + ["affix"] = "of Infection", + ["group"] = "PoisonDuration", + ["level"] = 1, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2896, + }, + ["tradeHashes"] = { + [221701169] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Poison Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusPresenceRadius"] = { + "(8-12)% increased Presence Area of Effect", + ["affix"] = "Iconic", + ["group"] = "PresenceRadius", + ["level"] = 1, + ["modTags"] = { + "aura", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [4032352472] = { + "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusProjectileDamage"] = { + "(1-2)% increased Projectile Damage", + ["affix"] = "Archer's", + ["group"] = "ProjectileDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1738, + }, + ["tradeHashes"] = { + [455816363] = { + "Small Passive Skills in Radius also grant (1-2)% increased Projectile Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { + "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["affix"] = "Retreating", + ["group"] = "ProjectileDamageIfMeleeHitRecently", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 9547, + }, + ["tradeHashes"] = { + [288364275] = { + "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusProjectileSpeed"] = { + "(2-3)% increased Projectile Speed", + ["affix"] = "Soaring", + ["group"] = "ProjectileSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 897, + }, + ["tradeHashes"] = { + [1777421941] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Projectile Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusQuarterstaffDamage"] = { + "(1-2)% increased Damage with Quarterstaves", + ["affix"] = "Monk's", + ["group"] = "IncreasedStaffDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1238, + }, + ["tradeHashes"] = { + [821948283] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Quarterstaves", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { + "(5-10)% increased Freeze Buildup with Quarterstaves", + ["affix"] = "of Glaciers", + ["group"] = "QuarterstaffFreezeBuildup", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9597, + }, + ["tradeHashes"] = { + [127081978] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusQuarterstaffSpeed"] = { + "(1-2)% increased Attack Speed with Quarterstaves", + ["affix"] = "of Sequencing", + ["group"] = "StaffAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1320, + }, + ["tradeHashes"] = { + [111835965] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Quarterstaves", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusQuiverEffect"] = { + "(2-3)% increased bonuses gained from Equipped Quiver", + ["affix"] = "Fletching", + ["group"] = "QuiverModifierEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9605, + }, + ["tradeHashes"] = { + [4180952808] = { + "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusRageonHit"] = { + "Gain 1 Rage on Melee Hit", + ["affix"] = "of Raging", + ["group"] = "RageOnHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2969557004] = { + "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusRagewhenHit"] = { + "Gain (1-2) Rage when Hit by an Enemy", + ["affix"] = "of Retribution", + ["group"] = "GainRageWhenHit", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [2131720304] = { + "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusShapeshiftDamage"] = { + "(1-2)% increased Damage while Shapeshifted", + ["affix"] = "Bestial", + ["group"] = "ShapeshiftDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 5962, + }, + ["tradeHashes"] = { + [266564538] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusShapeshiftSpeed"] = { + "(1-2)% increased Skill Speed while Shapeshifted", + ["affix"] = "of the Wild", + ["group"] = "ShapeshiftSkillSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9916, + }, + ["tradeHashes"] = { + [3579898587] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusShieldDefences"] = { + "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["affix"] = "Shielding", + ["group"] = "ShieldArmourIncrease", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9838, + }, + ["tradeHashes"] = { + [3429148113] = { + "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusShockChance"] = { + "(2-3)% increased chance to Shock", + ["affix"] = "of Shocking", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [1039268420] = { + "Small Passive Skills in Radius also grant (2-3)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusShockDuration"] = { + "(2-3)% increased Shock Duration", + ["affix"] = "of Paralyzing", + ["group"] = "ShockDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1613, + }, + ["tradeHashes"] = { + [3513818125] = { + "Small Passive Skills in Radius also grant (2-3)% increased Shock Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusShockEffect"] = { + "(5-7)% increased Magnitude of Shock you inflict", + ["affix"] = "Jolting", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [1166140625] = { + "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelRadiusSlowEffectOnSelf"] = { + "(2-5)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "of Hastening", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [2580617872] = { + "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSmallNodeEffect"] = { + "(15-25)% increased Effect of Small Passive Skills in Radius", + ["affix"] = "of Potency", + ["group"] = "JewelRadiusSmallNodeEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7783, + }, + ["tradeHashes"] = { + [1060572482] = { + "(15-25)% increased Effect of Small Passive Skills in Radius", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpearAttackSpeed"] = { + "(1-2)% increased Attack Speed with Spears", + ["affix"] = "of Spearing", + ["group"] = "SpearAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1327, + }, + ["tradeHashes"] = { + [1266413530] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Spears", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpearCriticalDamage"] = { + "(5-10)% increased Critical Damage Bonus with Spears", + ["affix"] = "of Hunting", + ["group"] = "SpearCriticalDamage", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1393, + }, + ["tradeHashes"] = { + [138421180] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus with Spears", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpearDamage"] = { + "(1-2)% increased Damage with Spears", + ["affix"] = "Spearheaded", + ["group"] = "SpearDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1267, + }, + ["tradeHashes"] = { + [2809428780] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Spears", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpellCriticalChance"] = { + "(3-7)% increased Critical Hit Chance for Spells", + ["affix"] = "of Annihilating", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [2704905000] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpellCriticalDamage"] = { + "(5-10)% increased Critical Spell Damage Bonus", + ["affix"] = "of Unmaking", + ["group"] = "SpellCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster_damage", + "damage", + "caster", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [2466785537] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSpellDamage"] = { + "(1-2)% increased Spell Damage", + ["affix"] = "Mystic", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [1137305356] = { + "Small Passive Skills in Radius also grant (1-2)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusStunBuildup"] = { + "(5-10)% increased Stun Buildup", + ["affix"] = "of Stunning", + ["group"] = "StunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [4173554949] = { + "Notable Passive Skills in Radius also grant (5-10)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusStunThreshold"] = { + "(1-2)% increased Stun Threshold", + ["affix"] = "of Withstanding", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [484792219] = { + "Small Passive Skills in Radius also grant (1-2)% increased Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusStunThresholdDuringParry"] = { + "(8-12)% increased Stun Threshold while Parrying", + ["affix"] = "of Biding", + ["group"] = "StunThresholdDuringParry", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 9393, + }, + ["tradeHashes"] = { + [1495814176] = { + "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { + "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", + ["affix"] = "of Stoutness", + ["group"] = "IncreasedStunThresholdIfNoRecentStun", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10140, + }, + ["tradeHashes"] = { + [654207792] = { + "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { + "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", + ["affix"] = "of Barriers", + ["group"] = "StunThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10138, + }, + ["tradeHashes"] = { + [1653682082] = { + "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusSwordDamage"] = { + "(1-2)% increased Damage with Swords", + ["affix"] = "Vicious", + ["group"] = "IncreasedSwordDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1259, + }, + ["tradeHashes"] = { + [1417549986] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Swords", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusSwordSpeed"] = { + "(1-2)% increased Attack Speed with Swords", + ["affix"] = "of Fencing", + ["group"] = "SwordAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1325, + }, + ["tradeHashes"] = { + [3492019295] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Swords", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusThorns"] = { + "(2-3)% increased Thorns damage", + ["affix"] = "Retaliating", + ["group"] = "ThornsDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10254, + }, + ["tradeHashes"] = { + [1320662475] = { + "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusTotemDamage"] = { + "(2-3)% increased Totem Damage", + ["affix"] = "Shaman's", + ["group"] = "TotemDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1152, + }, + ["tradeHashes"] = { + [2108821127] = { + "Small Passive Skills in Radius also grant (2-3)% increased Totem Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusTotemLife"] = { + "(2-3)% increased Totem Life", + ["affix"] = "Carved", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [442393998] = { + "Small Passive Skills in Radius also grant (2-3)% increased Totem Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusTotemPlacementSpeed"] = { + "(2-3)% increased Totem Placement speed", + ["affix"] = "of Ancestry", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [1145481685] = { + "Small Passive Skills in Radius also grant (2-3)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusTrapDamage"] = { + "(1-2)% increased Trap Damage", + ["affix"] = "Trapping", + ["group"] = "TrapDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [836472423] = { + "Small Passive Skills in Radius also grant (1-2)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusTrapThrowSpeed"] = { + "(2-4)% increased Trap Throwing Speed", + ["affix"] = "of Preparation", + ["group"] = "TrapThrowSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1667, + }, + ["tradeHashes"] = { + [2391207117] = { + "Notable Passive Skills in Radius also grant (2-4)% increased Trap Throwing Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusTriggeredSpellDamage"] = { + "Triggered Spells deal (2-3)% increased Spell Damage", + ["affix"] = "Triggered", + ["group"] = "DamageWithTriggeredSpells", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10323, + }, + ["tradeHashes"] = { + [473917671] = { + "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusUnarmedAttackSpeed"] = { + "(1-2)% increased Unarmed Attack Speed", + ["affix"] = "of Jabbing", + ["group"] = "UnarmedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 10381, + }, + ["tradeHashes"] = { + [541647121] = { + "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusUnarmedDamage"] = { + "(1-2)% increased Damage with Unarmed Attacks", + ["affix"] = "Punching", + ["group"] = "UnarmedDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 3259, + }, + ["tradeHashes"] = { + [347569644] = { + "Small Passive Skills in Radius also grant (1-2)% increased Damage with Unarmed Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dex_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusVolatilityOnKillChance"] = { + "1% chance to gain Volatility on Kill", + ["affix"] = "of Volatility", + ["group"] = "VolatilityOnKillChance", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 10484, + }, + ["tradeHashes"] = { + [4225700219] = { + "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelRadiusWarcryBuffEffect"] = { + "(3-7)% increased Warcry Buff Effect", + ["affix"] = "of Warcries", + ["group"] = "WarcryEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 10506, + }, + ["tradeHashes"] = { + [2675129731] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelRadiusWarcryCooldown"] = { + "(3-7)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of Rallying", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["nodeType"] = 2, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [2056107438] = { + "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusWarcryDamage"] = { + "(2-3)% increased Damage with Warcries", + ["affix"] = "Yelling", + ["group"] = "WarcryDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10509, + }, + ["tradeHashes"] = { + [1160637284] = { + "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusWarcrySpeed"] = { + "(2-3)% increased Warcry Speed", + ["affix"] = "of Lungs", + ["group"] = "WarcrySpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1602294220] = { + "Small Passive Skills in Radius also grant (2-3)% increased Warcry Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRadiusWeaponSwapSpeed"] = { + "(2-4)% increased Weapon Swap Speed", + ["affix"] = "of Swapping", + ["group"] = "WeaponSwapSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["nodeType"] = 1, + ["statOrder"] = { + 10535, + }, + ["tradeHashes"] = { + [1129429646] = { + "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelRadiusWitheredEffect"] = { + "(3-5)% increased Withered Magnitude", + ["affix"] = "Withering", + ["group"] = "WitheredEffect", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 10556, + }, + ["tradeHashes"] = { + [3936121440] = { + "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRageonHit"] = { + "Gain 1 Rage on Melee Hit", + ["affix"] = "of Raging", + ["group"] = "RageOnHit", + ["level"] = 1, + ["modTags"] = { + "attack", + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain 1 Rage on Melee Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelRagewhenHit"] = { + "Gain (1-3) Rage when Hit by an Enemy", + ["affix"] = "of Retribution", + ["group"] = "GainRageWhenHit", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [3292710273] = { + "Gain (1-3) Rage when Hit by an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelShapeshiftDamage"] = { + "(5-15)% increased Damage while Shapeshifted", + ["affix"] = "Bestial", + ["group"] = "ShapeshiftDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 5962, + }, + ["tradeHashes"] = { + [2440073079] = { + "(5-15)% increased Damage while Shapeshifted", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelShapeshiftSpeed"] = { + "(2-4)% increased Skill Speed while Shapeshifted", + ["affix"] = "of the Wild", + ["group"] = "ShapeshiftSkillSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 9916, + }, + ["tradeHashes"] = { + [918325986] = { + "(2-4)% increased Skill Speed while Shapeshifted", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelShieldDefences"] = { + "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["affix"] = "Shielding", + ["group"] = "ShieldArmourIncrease", + ["level"] = 1, + ["modTags"] = { + "defences", + }, + ["statOrder"] = { + 9838, + }, + ["tradeHashes"] = { + [2523933828] = { + "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelShockChance"] = { + "(10-20)% increased chance to Shock", + ["affix"] = "of Shocking", + ["group"] = "ShockChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1059, + }, + ["tags"] = { + "no_fire_spell_mods", + "no_cold_spell_mods", + "no_chaos_spell_mods", + }, + ["tradeHashes"] = { + [293638271] = { + "(10-20)% increased chance to Shock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelShockDuration"] = { + "(15-25)% increased Shock Duration", + ["affix"] = "of Paralyzing", + ["group"] = "ShockDuration", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1613, + }, + ["tradeHashes"] = { + [3668351662] = { + "(15-25)% increased Shock Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelShockEffect"] = { + "(10-15)% increased Magnitude of Shock you inflict", + ["affix"] = "Jolting", + ["group"] = "ShockEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 9845, + }, + ["tradeHashes"] = { + [2527686725] = { + "(10-15)% increased Magnitude of Shock you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 1, + 0, + }, + }, + ["JewelSlowEffectOnSelf"] = { + "(5-10)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "of Hastening", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(5-10)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpearAttackSpeed"] = { + "(2-4)% increased Attack Speed with Spears", + ["affix"] = "of Spearing", + ["group"] = "SpearAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1327, + }, + ["tradeHashes"] = { + [1165163804] = { + "(2-4)% increased Attack Speed with Spears", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpearCriticalDamage"] = { + "(10-20)% increased Critical Damage Bonus with Spears", + ["affix"] = "of Hunting", + ["group"] = "SpearCriticalDamage", + ["level"] = 1, + ["modTags"] = { + "attack", + "critical", + }, + ["statOrder"] = { + 1393, + }, + ["tradeHashes"] = { + [2456523742] = { + "(10-20)% increased Critical Damage Bonus with Spears", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpearDamage"] = { + "(6-16)% increased Damage with Spears", + ["affix"] = "Spearheaded", + ["group"] = "SpearDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1267, + }, + ["tradeHashes"] = { + [2696027455] = { + "(6-16)% increased Damage with Spears", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpellCriticalChance"] = { + "(5-15)% increased Critical Hit Chance for Spells", + ["affix"] = "of Annihilating", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(5-15)% increased Critical Hit Chance for Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpellCriticalDamage"] = { + "(10-20)% increased Critical Spell Damage Bonus", + ["affix"] = "of Unmaking", + ["group"] = "SpellCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster_damage", + "damage", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(10-20)% increased Critical Spell Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSpellDamage"] = { + "(5-15)% increased Spell Damage", + ["affix"] = "Mystic", + ["group"] = "WeaponSpellDamage", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + }, + ["tradeHashes"] = { + [2974417149] = { + "(5-15)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelStunBuildup"] = { + "(10-20)% increased Stun Buildup", + ["affix"] = "of Stunning", + ["group"] = "StunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [239367161] = { + "(10-20)% increased Stun Buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelStunThreshold"] = { + "(6-16)% increased Stun Threshold", + ["affix"] = "of Withstanding", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(6-16)% increased Stun Threshold", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelStunThresholdDuringParry"] = { + "(15-25)% increased Stun Threshold while Parrying", + ["affix"] = "of Biding", + ["group"] = "StunThresholdDuringParry", + ["level"] = 1, + ["modTags"] = { + "block", + }, + ["statOrder"] = { + 9393, + }, + ["tradeHashes"] = { + [1911237468] = { + "(15-25)% increased Stun Threshold while Parrying", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelStunThresholdIfNotStunnedRecently"] = { + "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", + ["affix"] = "of Stoutness", + ["group"] = "IncreasedStunThresholdIfNoRecentStun", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10140, + }, + ["tradeHashes"] = { + [1405298142] = { + "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelStunThresholdfromEnergyShield"] = { + "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", + ["affix"] = "of Barriers", + ["group"] = "StunThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10138, + }, + ["tradeHashes"] = { + [416040624] = { + "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelSwordDamage"] = { + "(6-16)% increased Damage with Swords", + ["affix"] = "Vicious", + ["group"] = "IncreasedSwordDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 1259, + }, + ["tradeHashes"] = { + [83050999] = { + "(6-16)% increased Damage with Swords", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelSwordSpeed"] = { + "(2-4)% increased Attack Speed with Swords", + ["affix"] = "of Fencing", + ["group"] = "SwordAttackSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 1325, + }, + ["tradeHashes"] = { + [3293699237] = { + "(2-4)% increased Attack Speed with Swords", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelThorns"] = { + "(10-20)% increased Thorns damage", + ["affix"] = "Retaliating", + ["group"] = "ThornsDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(10-20)% increased Thorns damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelTotemDamage"] = { + "(10-18)% increased Totem Damage", + ["affix"] = "Shaman's", + ["group"] = "TotemDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 1152, + }, + ["tradeHashes"] = { + [3851254963] = { + "(10-18)% increased Totem Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelTotemLife"] = { + "(10-20)% increased Totem Life", + ["affix"] = "Carved", + ["group"] = "IncreasedTotemLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + }, + ["statOrder"] = { + 1533, + }, + ["tradeHashes"] = { + [686254215] = { + "(10-20)% increased Totem Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelTotemPlacementSpeed"] = { + "(10-20)% increased Totem Placement speed", + ["affix"] = "of Ancestry", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(10-20)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelTrapDamage"] = { + "(6-16)% increased Trap Damage", + ["affix"] = "Trapping", + ["group"] = "TrapDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 872, + }, + ["tradeHashes"] = { + [2941585404] = { + "(6-16)% increased Trap Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelTrapThrowSpeed"] = { + "(4-8)% increased Trap Throwing Speed", + ["affix"] = "of Preparation", + ["group"] = "TrapThrowSpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 1667, + }, + ["tradeHashes"] = { + [118398748] = { + "(4-8)% increased Trap Throwing Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelTriggeredSpellDamage"] = { + "Triggered Spells deal (10-18)% increased Spell Damage", + ["affix"] = "Triggered", + ["group"] = "DamageWithTriggeredSpells", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "damage", + "caster", + }, + ["statOrder"] = { + 10323, + }, + ["tradeHashes"] = { + [3067892458] = { + "Triggered Spells deal (10-18)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelUnarmedAttackSpeed"] = { + "(2-4)% increased Unarmed Attack Speed", + ["affix"] = "of Jabbing", + ["group"] = "UnarmedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 10381, + }, + ["tradeHashes"] = { + [662579422] = { + "(2-4)% increased Unarmed Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelUnarmedDamage"] = { + "(6-16)% increased Damage with Unarmed Attacks", + ["affix"] = "Punching", + ["group"] = "UnarmedDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + "attack", + }, + ["statOrder"] = { + 3259, + }, + ["tradeHashes"] = { + [2037855018] = { + "(6-16)% increased Damage with Unarmed Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "dexjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelVolatilityOnKillChance"] = { + "(2-3)% chance to gain Volatility on Kill", + ["affix"] = "of Volatility", + ["group"] = "VolatilityOnKillChance", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10484, + }, + ["tradeHashes"] = { + [3749502527] = { + "(2-3)% chance to gain Volatility on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelWarcryBuffEffect"] = { + "(5-15)% increased Warcry Buff Effect", + ["affix"] = "of Warcries", + ["group"] = "WarcryEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 10506, + }, + ["tradeHashes"] = { + [3037553757] = { + "(5-15)% increased Warcry Buff Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["JewelWarcryCooldown"] = { + "(5-15)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of Rallying", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [4159248054] = { + "(5-15)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelWarcryDamage"] = { + "(10-20)% increased Damage with Warcries", + ["affix"] = "Yelling", + ["group"] = "WarcryDamage", + ["level"] = 1, + ["modTags"] = { + "damage", + }, + ["statOrder"] = { + 10509, + }, + ["tradeHashes"] = { + [1594812856] = { + "(10-20)% increased Damage with Warcries", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelWarcrySpeed"] = { + "(10-20)% increased Warcry Speed", + ["affix"] = "of Lungs", + ["group"] = "WarcrySpeed", + ["level"] = 1, + ["modTags"] = { + "speed", + }, + ["statOrder"] = { + 2989, + }, + ["tradeHashes"] = { + [1316278494] = { + "(10-20)% increased Warcry Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["JewelWeaponSwapSpeed"] = { + "(15-25)% increased Weapon Swap Speed", + ["affix"] = "of Swapping", + ["group"] = "WeaponSwapSpeed", + ["level"] = 1, + ["modTags"] = { + "attack", + "speed", + }, + ["statOrder"] = { + 10535, + }, + ["tradeHashes"] = { + [3233599707] = { + "(15-25)% increased Weapon Swap Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "jewel", + }, + ["weightVal"] = { + 0, + }, + }, + ["JewelWitheredEffect"] = { + "(5-10)% increased Withered Magnitude", + ["affix"] = "Withering", + ["group"] = "WitheredEffect", + ["level"] = 1, + ["modTags"] = { + "chaos", + }, + ["statOrder"] = { + 10556, + }, + ["tradeHashes"] = { + [3973629633] = { + "(5-10)% increased Withered Magnitude", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "intjewel", + "jewel", + }, + ["weightVal"] = { + 1, + 0, + }, + }, +} diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index d407a88dd5..5c4bf1d51f 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -1,393 +1,12217 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games +-- Item modifier data generated by mods.lua + +-- spell-checker: disable return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7713 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7712 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7710 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7711 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7709 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7720 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7715 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7719 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7722 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7721 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7725 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7716 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7718 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7724 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7717 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7723 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7726 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7714 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, - ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, - ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2666 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5961 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, - ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4240 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5405 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9697 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4958 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4957 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10320 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8021 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5914 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9451 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7238 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9663 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7516 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9699 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5633 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5612 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, - ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4568 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, - ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, - ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, - ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, - ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, - ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, - ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, - ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, - ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, - ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, - ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, - ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, - ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(3-4)% to all Elemental Resistances" }, } }, - ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, - ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [85367160] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 894 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2589572664] = { "Notable Passive Skills in Radius also grant 1% increased maximum Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 889 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [160888068] = { "Notable Passive Skills in Radius also grant 1% increased maximum Life" }, } }, - ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "evasion", "energy_shield" }, nodeType = 2, tradeHashes = { [2783157569] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, - ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3566150527] = { "Notable Passive Skills in Radius also grant Regenerate (0.03-0.07)% of maximum Life per second" }, } }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, - ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "critical" }, nodeType = 2, tradeHashes = { [2135541924] = { "Notable Passive Skills in Radius also grant Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6893 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6892 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6889 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, - ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 871, 882 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "armour", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 871, 884 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "evasion", "damage", "caster" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2974417149] = { "(4-8)% increased Spell Damage" }, } }, - ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 871, 886 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "energy_shield", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 882, 1156 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 884, 1156 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 886, 1156 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 882, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "armour", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 884, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "evasion", "damage", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, - ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 886, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "energy_shield", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 882, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 884, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 886, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 882, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 884, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, - ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 886, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 873, 2724 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, - ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 875, 2726 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, - ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 874, 2725 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4806, 4809 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9490, 9498 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10506, 10509 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5722, 5726 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, - ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1185, 4407 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, - ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1726, 4259 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 876, 10556 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, - ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, - ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1069, 2574 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 999 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, - ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, - ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 995 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6553 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 996 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5674 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 997 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8828 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, - ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6914 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, - ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1069 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "aura" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, - ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, - ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9490 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4806 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9914 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, - ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4669 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7425 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7193 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6747 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, - ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1742 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, - ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1067 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, - ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6200 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7969 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, - ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6892 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7506 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9936 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6889 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10256 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5634 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6893 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7968 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, - ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1911 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, - ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9658 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, - ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9764 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1734 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9379 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2205, 4943 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Shield Skills fully Break Armour when they Heavy Stun targets", statOrder = { 6699 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Shield Skills fully Break Armour when they Heavy Stun targets" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6987 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, - ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1493 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1520 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6445 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 10032 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 10010 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, - ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3719 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, - ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5924 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7389 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9991 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, - ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4193, 4193.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, - ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4438 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9541 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9549 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9548 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5831 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, - ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 837 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, - ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9736 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1645 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9738 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, - ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2810 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6533 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1517 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9846 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7263 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, - ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1895 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7192 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, - ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4958 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6119 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5570 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9765 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, - ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 949 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4957 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, - ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1177404658] = { "(15-25)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2335 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, - ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2574 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7386 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 975 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 10015 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6067 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, - ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1741 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 10011 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 896 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, - ["AbyssModStaffAmanamuPrefixDamageAsChaos"] = { type = "Prefix", affix = "Amanamu's", "Gain (40-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 65, group = "DamageGainedAsChaos", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "chaos_damage", "unveiled_mod", "amanamu_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (40-50)% of Damage as Extra Chaos Damage" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4344 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, - ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(20-25)% to Block chance", statOrder = { 1123 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(20-25)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 10017 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, - ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4343 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5347 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { type = "Suffix", affix = "of Kurgal", "+(3-4) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1484026495] = { "+(3-4) maximum stacks of Puppet Master" }, } }, - ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, - ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4407 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, - ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4411 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7185 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, - ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1726 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, - ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 871, 1720 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 10011 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9991 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4743, 10038 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7184 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7389 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5335 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7183 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, - ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3439 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3437 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3438 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, - ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8911 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 830, 946 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, - ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, - ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9894 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10620 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6322 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, - ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, - ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9894 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10620 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6322 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, - ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 875, 9845 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9698 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, - ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 873, 1077 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, - ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, - ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 874, 1057 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9701 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, - ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3783 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6941 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6943, 6944 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6939 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9549 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, - ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2760344900] = { "(15-20)% chance when you Reload a Crossbow to be immediate" }, } }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9548 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9541 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 946, 4556 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5722, 5961 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, - ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 946, 5716 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, - ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5831 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7193 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6873 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10510 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, - ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, - ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, - ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 920 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 921 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 916 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4762, 6978 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, - ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 876, 3012 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 878, 4671 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, - ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 876, 3716 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 895, 4755 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1617, 1726 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7528 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, - ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6590 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4727 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9800 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, - ["GenesisTreeRingOfferingEffect"] = { type = "Prefix", affix = "Dedicated", "Offering Skills have (23-30)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (23-30)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10202 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, - ["GenesisTreeRingSpellDamageAsExtraLightning"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraFire"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraCold"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, - ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7385 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10027 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6561 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7543 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5675 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5565 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10025 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5401 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6036 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, - ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 876, 4259 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, -} \ No newline at end of file + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { + "(41-59)% increased Damage against Enemies with Fully Broken Armour", + ["affix"] = "Amanamu's", + ["group"] = "DamagevsArmourBrokenEnemies", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "damage", + }, + ["statOrder"] = { + 5947, + }, + ["tradeHashes"] = { + [2301718443] = { + "(41-59)% increased Damage against Enemies with Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { + "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", + ["affix"] = "of Amanamu", + ["group"] = "AdditionalFissureChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attack", + }, + ["statOrder"] = { + 9894, + }, + ["tradeHashes"] = { + [2544540062] = { + "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { + "Break Armour equal to (2-4)% of Physical Damage dealt", + ["affix"] = "of Amanamu", + ["group"] = "ArmourPenetration", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "physical", + }, + ["statOrder"] = { + 4414, + }, + ["tradeHashes"] = { + [1103616075] = { + "Break Armour equal to (2-4)% of Physical Damage dealt", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { + "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["affix"] = "of Amanamu", + ["group"] = "MaceSkillSlamAftershockChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attack", + }, + ["statOrder"] = { + 10620, + }, + ["tradeHashes"] = { + [3950000557] = { + "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { + "Empowered Attacks deal (41-59)% increased Damage", + ["affix"] = "Kurgal's", + ["group"] = "ExertedAttackDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "damage", + "attack", + }, + ["statOrder"] = { + 6322, + }, + ["tradeHashes"] = { + [1569101201] = { + "Empowered Attacks deal (41-59)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { + "(17-25)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of Kurgal", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [4159248054] = { + "(17-25)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { + "(41-59)% increased Damage while you have a Totem", + ["affix"] = "Ulaman's", + ["group"] = "IncreasedDamageWhileTotemActive", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "damage", + }, + ["statOrder"] = { + 2923, + }, + ["tradeHashes"] = { + [2543331226] = { + "(41-59)% increased Damage while you have a Totem", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { + "(17-25)% increased Totem Placement speed", + ["affix"] = "of Ulaman", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(17-25)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "two_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { + "(86-99)% increased Damage against Enemies with Fully Broken Armour", + ["affix"] = "Amanamu's", + ["group"] = "DamagevsArmourBrokenEnemies", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "damage", + }, + ["statOrder"] = { + 5947, + }, + ["tradeHashes"] = { + [2301718443] = { + "(86-99)% increased Damage against Enemies with Fully Broken Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { + "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", + ["affix"] = "of Amanamu", + ["group"] = "AdditionalFissureChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attack", + }, + ["statOrder"] = { + 9894, + }, + ["tradeHashes"] = { + [2544540062] = { + "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { + "Break Armour equal to (4-7)% of Physical Damage dealt", + ["affix"] = "of Amanamu", + ["group"] = "ArmourPenetration", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "physical", + }, + ["statOrder"] = { + 4414, + }, + ["tradeHashes"] = { + [1103616075] = { + "Break Armour equal to (4-7)% of Physical Damage dealt", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { + "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["affix"] = "of Amanamu", + ["group"] = "MaceSkillSlamAftershockChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attack", + }, + ["statOrder"] = { + 10620, + }, + ["tradeHashes"] = { + [3950000557] = { + "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { + "Empowered Attacks deal (86-99)% increased Damage", + ["affix"] = "Kurgal's", + ["group"] = "ExertedAttackDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "damage", + "attack", + }, + ["statOrder"] = { + 6322, + }, + ["tradeHashes"] = { + [1569101201] = { + "Empowered Attacks deal (86-99)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { + "(25-31)% increased Warcry Cooldown Recovery Rate", + ["affix"] = "of Kurgal", + ["group"] = "WarcryCooldownSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 3035, + }, + ["tradeHashes"] = { + [4159248054] = { + "(25-31)% increased Warcry Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { + "(86-99)% increased Damage while you have a Totem", + ["affix"] = "Ulaman's", + ["group"] = "IncreasedDamageWhileTotemActive", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "damage", + }, + ["statOrder"] = { + 2923, + }, + ["tradeHashes"] = { + [2543331226] = { + "(86-99)% increased Damage while you have a Totem", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { + "(25-31)% increased Totem Placement speed", + ["affix"] = "of Ulaman", + ["group"] = "SummonTotemCastSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "speed", + }, + ["statOrder"] = { + 2360, + }, + ["tradeHashes"] = { + [3374165039] = { + "(25-31)% increased Totem Placement speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "one_hand_weapon", + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { + "(110-154)% increased Physical Damage", + "15% reduced Attack Speed", + ["affix"] = "Kurgal's", + ["group"] = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "physical", + "attack", + "speed", + }, + ["statOrder"] = { + 830, + 946, + }, + ["tradeHashes"] = { + [1509134228] = { + "(110-154)% increased Physical Damage", + }, + [210067635] = { + "15% reduced Attack Speed", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mace", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { + "(8-15)% increased Cost Efficiency of Attacks", + ["affix"] = "of Kurgal", + ["group"] = "AttackSkillCostEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attack", + }, + ["statOrder"] = { + 4653, + }, + ["tradeHashes"] = { + [3350279336] = { + "(8-15)% increased Cost Efficiency of Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "mace", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { + "Melee Attack Skills have +1 to maximum number of Summoned Totems", + ["affix"] = "Ulaman's", + ["group"] = "AdditionalMeleeTotem", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 8911, + }, + ["tradeHashes"] = { + [2013356568] = { + "Melee Attack Skills have +1 to maximum number of Summoned Totems", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "mace", + "talisman", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { + "(35-50)% increased Armour from Equipped Body Armour", + ["affix"] = "Amanamu's", + ["group"] = "BodyArmourFromBodyArmour", + ["level"] = 65, + ["modTags"] = { + "defences", + "unveiled_mod", + "amanamu_mod", + "armour", + }, + ["statOrder"] = { + 4957, + }, + ["tradeHashes"] = { + [1015576579] = { + "(35-50)% increased Armour from Equipped Body Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { + "(15-25)% increased Global Armour, Evasion and Energy Shield", + ["affix"] = "Amanamu's", + ["group"] = "AllDefences", + ["level"] = 65, + ["modTags"] = { + "defences", + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 2588, + }, + ["tradeHashes"] = { + [1177404658] = { + "(15-25)% increased Global Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { + "Aura Skills have (8-16)% increased Magnitudes", + ["affix"] = "of Amanamu", + ["group"] = "AuraMagnitude", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 2574, + }, + ["tradeHashes"] = { + [315791320] = { + "Aura Skills have (8-16)% increased Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { + "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", + ["affix"] = "of Amanamu", + ["group"] = "GlobalItemAttributeRequirements", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 2335, + }, + ["tradeHashes"] = { + [752930724] = { + "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { + "Invocated Spells have (10-20)% chance to consume half as much Energy", + ["affix"] = "Kurgal's", + ["group"] = "InvocatedSpellHalfEnergyChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "caster", + }, + ["statOrder"] = { + 7386, + }, + ["tradeHashes"] = { + [3711973554] = { + "Invocated Spells have (10-20)% chance to consume half as much Energy", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { + "(35-50)% increased Energy Shield from Equipped Body Armour", + ["affix"] = "Kurgal's", + ["group"] = "MaximumEnergyShieldFromBodyArmour", + ["level"] = 65, + ["modTags"] = { + "defences", + "unveiled_mod", + "kurgal_mod", + "energy_shield", + }, + ["statOrder"] = { + 8863, + }, + ["tradeHashes"] = { + [1195319608] = { + "(35-50)% increased Energy Shield from Equipped Body Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { + "Minions have (12-20)% increased Cooldown Recovery Rate", + ["affix"] = "of Kurgal", + ["group"] = "MinionCooldownRecoveryRate", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "minion", + }, + ["statOrder"] = { + 9029, + }, + ["tradeHashes"] = { + [1691403182] = { + "Minions have (12-20)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { + "(8-16)% of Damage is taken from Mana before Life", + ["affix"] = "of Kurgal", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(8-16)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { + "+(3-5)% to Quality of all Skills", + ["affix"] = "of Kurgal", + ["group"] = "GlobalSkillGemQuality", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "gem", + }, + ["statOrder"] = { + 975, + }, + ["tradeHashes"] = { + [3655769732] = { + "+(3-5)% to Quality of all Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { + "(20-30)% chance for Skills to retain 40% of Glory on use", + ["affix"] = "Ulaman's", + ["group"] = "ChanceToRefund40PercentGlory", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 5570, + }, + ["tradeHashes"] = { + [2749595652] = { + "(20-30)% chance for Skills to retain 40% of Glory on use", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { + "(35-50)% increased Evasion Rating from Equipped Body Armour", + ["affix"] = "Ulaman's", + ["group"] = "EvasionRatingFromBodyArmour", + ["level"] = 65, + ["modTags"] = { + "defences", + "unveiled_mod", + "ulaman_mod", + "evasion", + }, + ["statOrder"] = { + 4958, + }, + ["tradeHashes"] = { + [3509362078] = { + "(35-50)% increased Evasion Rating from Equipped Body Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { + "(10-20)% increased Deflection Rating", + ["affix"] = "Ulaman's", + ["group"] = "GlobalDeflectionRating", + ["level"] = 65, + ["modTags"] = { + "defences", + "unveiled_mod", + "ulaman_mod", + "evasion", + }, + ["statOrder"] = { + 6119, + }, + ["tradeHashes"] = { + [3040571529] = { + "(10-20)% increased Deflection Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { + "+1 to Level of all Skills", + ["affix"] = "of Ulaman", + ["group"] = "GlobalSkillGemLevel", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "gem", + }, + ["statOrder"] = { + 949, + }, + ["tradeHashes"] = { + [4283407333] = { + "+1 to Level of all Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { + "(10-20)% increased Reservation Efficiency of Herald Skills", + ["affix"] = "of Ulaman", + ["group"] = "HeraldReservationEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9765, + }, + ["tradeHashes"] = { + [1697191405] = { + "(10-20)% increased Reservation Efficiency of Herald Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { + "+(13-17)% to Fire and Chaos Resistances", + ["affix"] = "of Amanamu", + ["group"] = "FireAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "fire_resistance", + "unveiled_mod", + "amanamu_mod", + "elemental", + "fire", + "chaos", + "resistance", + }, + ["statOrder"] = { + 6553, + }, + ["tradeHashes"] = { + [378817135] = { + "+(13-17)% to Fire and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { + "+(9-15) to Strength and Intelligence", + ["affix"] = "of Amanamu", + ["group"] = "StrengthAndIntelligence", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attribute", + }, + ["statOrder"] = { + 996, + }, + ["tradeHashes"] = { + [1535626285] = { + "+(9-15) to Strength and Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { + "+(13-17)% to Cold and Chaos Resistances", + ["affix"] = "of Kurgal", + ["group"] = "ColdAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "cold_resistance", + "elemental_resistance", + "unveiled_mod", + "kurgal_mod", + "elemental", + "cold", + "chaos", + "resistance", + }, + ["statOrder"] = { + 5674, + }, + ["tradeHashes"] = { + [3393628375] = { + "+(13-17)% to Cold and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { + "+(9-15) to Dexterity and Intelligence", + ["affix"] = "of Kurgal", + ["group"] = "DexterityAndIntelligence", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attribute", + }, + ["statOrder"] = { + 997, + }, + ["tradeHashes"] = { + [2300185227] = { + "+(9-15) to Dexterity and Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { + "+(13-17)% to Lightning and Chaos Resistances", + ["affix"] = "of Ulaman", + ["group"] = "LightningAndChaosDamageResistance", + ["level"] = 65, + ["modTags"] = { + "chaos_resistance", + "elemental_resistance", + "lightning_resistance", + "unveiled_mod", + "ulaman_mod", + "elemental", + "lightning", + "chaos", + "resistance", + }, + ["statOrder"] = { + 7537, + }, + ["tradeHashes"] = { + [3465022881] = { + "+(13-17)% to Lightning and Chaos Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { + "+(9-15) to Strength and Dexterity", + ["affix"] = "of Ulaman", + ["group"] = "StrengthAndDexterity", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "attribute", + }, + ["statOrder"] = { + 995, + }, + ["tradeHashes"] = { + [538848803] = { + "+(9-15) to Strength and Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "armour", + "belt", + "ring", + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { + "(10-18)% chance for Charms you use to not consume Charges", + ["affix"] = "Amanamu's", + ["group"] = "CharmChanceToNotConsumeCharges", + ["level"] = 65, + ["modTags"] = { + "charm", + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 5634, + }, + ["tradeHashes"] = { + [501873429] = { + "(10-18)% chance for Charms you use to not consume Charges", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { + "Charms gain (0.1-0.2) charges per Second", + ["affix"] = "Amanamu's", + ["group"] = "CharmChargeGeneration", + ["level"] = 65, + ["modTags"] = { + "charm", + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [185580205] = { + "Charms gain (0.1-0.2) charges per Second", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { + "2 to 4 Fire Thorns damage per 100 maximum Life", + ["affix"] = "Amanamu's", + ["group"] = "ThornsFirePerOneHundredLife", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "elemental", + "fire", + }, + ["statOrder"] = { + 10256, + }, + ["tradeHashes"] = { + [287294012] = { + "2 to 4 Fire Thorns damage per 100 maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { + "+(2-4)% to Thorns Critical Hit Chance", + ["affix"] = "of Amanamu", + ["group"] = "ThornsCriticalStrikeChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "damage", + "critical", + }, + ["statOrder"] = { + 4758, + }, + ["tradeHashes"] = { + [2715190555] = { + "+(2-4)% to Thorns Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { + "(10-15)% chance for Flasks you use to not consume Charges", + ["affix"] = "Kurgal's", + ["group"] = "FlaskChanceToNotConsumeCharges", + ["level"] = 65, + ["modTags"] = { + "flask", + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 3881, + }, + ["tradeHashes"] = { + [311641062] = { + "(10-15)% chance for Flasks you use to not consume Charges", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { + "Gain (6-12)% of Maximum Mana as Armour", + ["affix"] = "Kurgal's", + ["group"] = "GainPercentManaAsArmour", + ["level"] = 65, + ["modTags"] = { + "defences", + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + "armour", + }, + ["statOrder"] = { + 7968, + }, + ["tradeHashes"] = { + [514290151] = { + "Gain (6-12)% of Maximum Mana as Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { + "Mana Flasks gain (0.1-0.2) charges per Second", + ["affix"] = "Kurgal's", + ["group"] = "ManaFlaskChargeGeneration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [2200293569] = { + "Mana Flasks gain (0.1-0.2) charges per Second", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { + "(30-40)% increased Mana Regeneration Rate", + ["affix"] = "of Kurgal", + ["group"] = "ManaRegeneration", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(30-40)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { + "(10-18)% chance for Flasks you use to not consume Charges", + ["affix"] = "Ulaman's", + ["group"] = "FlaskChanceToNotConsumeCharges", + ["level"] = 65, + ["modTags"] = { + "flask", + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 3881, + }, + ["tradeHashes"] = { + [311641062] = { + "(10-18)% chance for Flasks you use to not consume Charges", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { + "Life Flasks gain (0.1-0.2) charges per Second", + ["affix"] = "Ulaman's", + ["group"] = "LifeFlaskChargeGeneration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1102738251] = { + "Life Flasks gain (0.1-0.2) charges per Second", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { + "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", + ["affix"] = "Ulaman's", + ["group"] = "LifeRegenerationRateDuringFlaskEffect", + ["level"] = 65, + ["modTags"] = { + "life_flask", + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 7506, + }, + ["tradeHashes"] = { + [1261076060] = { + "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "belt", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { + "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["affix"] = "of Ulaman", + ["group"] = "SlowEffectIfCharmedRecently", + ["level"] = 65, + ["modTags"] = { + "charm", + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9936, + }, + ["tradeHashes"] = { + [3839676903] = { + "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "belt", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { + "(6-12)% increased Spirit Reservation Efficiency", + ["affix"] = "of Amanamu", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(6-12)% increased Spirit Reservation Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { + "(10-20)% of Damage is taken from Mana before Life", + ["affix"] = "of Kurgal", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(10-20)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "body_armour", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { + "(12-18)% increased Reservation Efficiency of Companion Skills", + ["affix"] = "of Ulaman", + ["group"] = "CompanionReservationEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9764, + }, + ["tradeHashes"] = { + [3413635271] = { + "(12-18)% increased Reservation Efficiency of Companion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "body_armour", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { + "Prevent +(3-5)% of Damage from Deflected Hits", + ["affix"] = "of Ulaman", + ["group"] = "DeflectDamageTaken", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4679, + }, + ["tradeHashes"] = { + [3552135623] = { + "Prevent +(3-5)% of Damage from Deflected Hits", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "body_armour", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { + "(10-20)% of Damage taken Recouped as Life", + ["affix"] = "of Amanamu", + ["group"] = "DamageTakenGainedAsLife", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "amanamu_mod", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(10-20)% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_armour", + "int_armour", + "dex_int_armour", + "helmet", + "shield", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { + "(25-35)% reduced effect of Curses on you", + ["affix"] = "of Amanamu", + ["group"] = "ReducedCurseEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + "curse", + }, + ["statOrder"] = { + 1911, + }, + ["tradeHashes"] = { + [3407849389] = { + "(25-35)% reduced effect of Curses on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "shield", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { + "+(23-31)% of Armour also applies to Chaos Damage", + ["affix"] = "of Kurgal", + ["group"] = "ArmourPercentAppliesToChaosDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 4645, + }, + ["tradeHashes"] = { + [3972229254] = { + "+(23-31)% of Armour also applies to Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_armour", + "int_armour", + "dex_int_armour", + "helmet", + "shield", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { + "(10-20)% of Elemental Damage taken Recouped as Energy Shield", + ["affix"] = "of Kurgal", + ["group"] = "ElementalDamageTakenGoesToEnergyShield", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 9658, + }, + ["tradeHashes"] = { + [2896115339] = { + "(10-20)% of Elemental Damage taken Recouped as Energy Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "dex_shield", + "str_dex_shield", + "helmet", + "shield", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { + "(10-20)% of Damage taken Recouped as Mana", + ["affix"] = "of Kurgal", + ["group"] = "PercentDamageGoesToMana", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "life", + "mana", + }, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [472520716] = { + "(10-20)% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "shield", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { + "Hits have (17-25)% reduced Critical Hit Chance against you", + ["affix"] = "of Ulaman", + ["group"] = "ChanceToTakeCriticalStrikeUpdated", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "critical", + }, + ["statOrder"] = { + 2857, + }, + ["tradeHashes"] = { + [4270096386] = { + "Hits have (17-25)% reduced Critical Hit Chance against you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "body_armour", + "shield", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { + "+(0.1-0.2) metres to Dodge Roll distance", + ["affix"] = "of Amanamu", + ["group"] = "DodgeRollDistance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6200, + }, + ["tradeHashes"] = { + [258119672] = { + "+(0.1-0.2) metres to Dodge Roll distance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { + "(12-20)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "of Amanamu", + ["group"] = "SlowPotency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(12-20)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { + "(20-30)% reduced Ignite Duration on you", + ["affix"] = "of Amanamu", + ["group"] = "ReducedIgniteDurationOnSelf", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 1063, + }, + ["tradeHashes"] = { + [986397080] = { + "(20-30)% reduced Ignite Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "belt", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { + "(20-30)% reduced Duration of Bleeding on You", + ["affix"] = "of Kurgal", + ["group"] = "ReducedBleedDuration", + ["level"] = 65, + ["modTags"] = { + "bleed", + "unveiled_mod", + "kurgal_mod", + "physical", + "ailment", + }, + ["statOrder"] = { + 9804, + }, + ["tradeHashes"] = { + [1692879867] = { + "(20-30)% reduced Duration of Bleeding on You", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "belt", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { + "(20-30)% reduced Poison Duration on you", + ["affix"] = "of Ulaman", + ["group"] = "ReducedPoisonDuration", + ["level"] = 65, + ["modTags"] = { + "poison", + "unveiled_mod", + "ulaman_mod", + "chaos", + "ailment", + }, + ["statOrder"] = { + 1067, + }, + ["tradeHashes"] = { + [3301100256] = { + "(20-30)% reduced Poison Duration on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "belt", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { + "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["affix"] = "of Kurgal", + ["group"] = "ManaCostEfficiencyIfDodgeRolledRecently", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 7969, + }, + ["tradeHashes"] = { + [3396435291] = { + "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { + "(40-50)% increased Mana Regeneration Rate while stationary", + ["affix"] = "of Kurgal", + ["group"] = "ManaRegenerationWhileStationary", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 3986, + }, + ["tradeHashes"] = { + [3308030688] = { + "(40-50)% increased Mana Regeneration Rate while stationary", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { + "Corrupted Blood cannot be inflicted on you", + ["affix"] = "of Ulaman", + ["group"] = "CorruptedBloodImmunity", + ["level"] = 65, + ["modTags"] = { + "bleed", + "unveiled_mod", + "ulaman_mod", + "physical", + "ailment", + }, + ["statOrder"] = { + 5272, + }, + ["tradeHashes"] = { + [1658498488] = { + "Corrupted Blood cannot be inflicted on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { + "(40-50)% increased Life Regeneration Rate while moving", + ["affix"] = "of Ulaman", + ["group"] = "LifeRegenerationPlusPercentWhileMoving", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 7528, + }, + ["tradeHashes"] = { + [2116424886] = { + "(40-50)% increased Life Regeneration Rate while moving", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "boots", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { + "(6-10)% reduced Movement Speed Penalty from using Skills while moving", + ["affix"] = "of Ulaman", + ["group"] = "MovementVelocityPenaltyWhilePerformingAction", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "speed", + }, + ["statOrder"] = { + 9154, + }, + ["tradeHashes"] = { + [2590797182] = { + "(6-10)% reduced Movement Speed Penalty from using Skills while moving", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { + "(30-40)% increased bonuses gained from Equipped Quiver", + ["affix"] = "Kurgal's", + ["group"] = "QuiverModifierEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 9605, + }, + ["tradeHashes"] = { + [1200678966] = { + "(30-40)% increased bonuses gained from Equipped Quiver", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { + "(12-23)% increased Area of Effect for Attacks", + ["affix"] = "Amanamu's", + ["group"] = "IncreasedAttackAreaOfEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "attack", + }, + ["statOrder"] = { + 4493, + }, + ["tradeHashes"] = { + [1840985759] = { + "(12-23)% increased Area of Effect for Attacks", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "spear", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { + "Companions deal (40-59)% increased Damage", + "(40-59)% increased Damage while your Companion is in your Presence", + ["affix"] = "Amanamu's", + ["group"] = "CompanionDamageAndDamageWithCompanion", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 5722, + 5961, + }, + ["tradeHashes"] = { + [234296660] = { + "Companions deal (40-59)% increased Damage", + }, + [693180608] = { + "(40-59)% increased Damage while your Companion is in your Presence", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "spear", + "talisman", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { + "(40-60)% chance to Pierce an Enemy", + ["affix"] = "of Amanamu", + ["group"] = "ChanceToPierce", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(40-60)% chance to Pierce an Enemy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { + "(12-18)% increased Attack Speed", + "Companions have (12-18)% increased Attack Speed", + ["affix"] = "of Amanamu", + ["group"] = "CompanionAndLocalAttackSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 946, + 5716, + }, + ["tradeHashes"] = { + [210067635] = { + "(12-18)% increased Attack Speed", + }, + [666077204] = { + "Companions have (12-18)% increased Attack Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "talisman", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { + "Projectiles have (25-35)% chance to Chain an additional time from terrain", + ["affix"] = "Kurgal's", + ["group"] = "ChainFromTerrain", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 9543, + }, + ["tradeHashes"] = { + [4081947835] = { + "Projectiles have (25-35)% chance to Chain an additional time from terrain", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "spear", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { + "(25-34)% increased Immobilisation buildup", + ["affix"] = "of Kurgal", + ["group"] = "ImmobilisationBuildup", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 7193, + }, + ["tradeHashes"] = { + [330530785] = { + "(25-34)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { + "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", + ["affix"] = "of Kurgal", + ["group"] = "ProjectileCriticalHitChanceFar", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 5831, + }, + ["tradeHashes"] = { + [2706625504] = { + "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { + "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", + ["affix"] = "Ulaman's", + ["group"] = "ProjectileDamageFar", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9548, + }, + ["tradeHashes"] = { + [2825946427] = { + "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "bow", + "spear", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { + "(8-13)% increased Attack Speed", + "(8-13)% increased Attack Speed while your Companion is in your Presence", + ["affix"] = "of Ulaman", + ["group"] = "LocalAttackSpeedAndAttackSpeedWithCompanion", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 946, + 4556, + }, + ["tradeHashes"] = { + [210067635] = { + "(8-13)% increased Attack Speed", + }, + [299996] = { + "(8-13)% increased Attack Speed while your Companion is in your Presence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { + "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", + ["affix"] = "of Ulaman", + ["group"] = "ChanceAttackFiresAdditionalProjectilesWhileMoving", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9541, + }, + ["tradeHashes"] = { + [3932115504] = { + "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "bow", + "spear", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { + "Grenade Skills have +1 Cooldown Use", + ["affix"] = "Amanamu's", + ["group"] = "GrenadeCooldownUse", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6941, + }, + ["tradeHashes"] = { + [2250681686] = { + "Grenade Skills have +1 Cooldown Use", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "crossbow", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { + "(101-121)% increased Grenade Damage", + "(20-30)% increased Grenade Duration", + ["affix"] = "Amanamu's", + ["group"] = "GrenadeDamageLongFuse", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "damage", + }, + ["statOrder"] = { + 6943, + 6944, + }, + ["tradeHashes"] = { + [1365232741] = { + "(20-30)% increased Grenade Duration", + }, + [3131442032] = { + "(101-121)% increased Grenade Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "crossbow", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { + "Grenades have (15-25)% chance to activate a second time", + ["affix"] = "of Amanamu", + ["group"] = "GrenadeAdditionalTriggerChance", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6939, + }, + ["tradeHashes"] = { + [538981065] = { + "Grenades have (15-25)% chance to activate a second time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { + "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", + ["affix"] = "Kurgal's", + ["group"] = "ProjectileDamageCloseRange", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "damage", + }, + ["statOrder"] = { + 9549, + }, + ["tradeHashes"] = { + [2468595624] = { + "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "crossbow", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { + "(15-20)% chance when you Reload a Crossbow to be immediate", + ["affix"] = "of Kurgal", + ["group"] = "ChanceForInstantReload", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 2, + }, + ["tradeHashes"] = { + [2760344900] = { + "(15-20)% chance when you Reload a Crossbow to be immediate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { + "(17-25)% increased Reload Speed", + ["affix"] = "of Kurgal", + ["group"] = "LocalReloadSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attack", + "speed", + }, + ["statOrder"] = { + 947, + }, + ["tradeHashes"] = { + [710476746] = { + "(17-25)% increased Reload Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { + "+1 to maximum number of Summoned Ballista Totems", + ["affix"] = "Ulaman's", + ["group"] = "AdditionalBallistaTotem", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4175, + }, + ["tradeHashes"] = { + [1823942939] = { + "+1 to maximum number of Summoned Ballista Totems", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "crossbow", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { + "Attacks Chain an additional time", + ["affix"] = "of Ulaman", + ["group"] = "AttacksChainAdditionalTimes", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 3783, + }, + ["tradeHashes"] = { + [3868118796] = { + "Attacks Chain an additional time", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { + "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", + ["affix"] = "of Ulaman", + ["group"] = "ProjectileCriticalDamageCloseRange", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 5817, + }, + ["tradeHashes"] = { + [2573406169] = { + "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "crossbow", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { + "(8-16)% increased Curse Magnitudes", + ["affix"] = "Amanamu's", + ["group"] = "CurseEffectiveness", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(8-16)% increased Curse Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { + "Offering Skills have (12-20)% increased Buff effect", + ["affix"] = "Amanamu's", + ["group"] = "OfferingEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 3719, + }, + ["tradeHashes"] = { + [3191479793] = { + "Offering Skills have (12-20)% increased Buff effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { + "(10-20)% faster Curse Activation", + ["affix"] = "of Amanamu", + ["group"] = "CurseDelay", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + "curse", + }, + ["statOrder"] = { + 5924, + }, + ["tradeHashes"] = { + [1104825894] = { + "(10-20)% faster Curse Activation", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { + "+(1-2) to Level of all Minion Skills", + ["affix"] = "of Amanamu", + ["group"] = "GlobalIncreaseMinionSpellSkillGemLevel", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "minion", + "gem", + }, + ["statOrder"] = { + 972, + }, + ["tradeHashes"] = { + [2162097452] = { + "+(1-2) to Level of all Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { + "Invocated Spells deal (61-79)% increased Damage", + ["affix"] = "Kurgal's", + ["group"] = "InvocationSpellDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "caster", + }, + ["statOrder"] = { + 7389, + }, + ["tradeHashes"] = { + [1078309513] = { + "Invocated Spells deal (61-79)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { + "Spell Skills have (10-20)% increased Area of Effect", + ["affix"] = "Kurgal's", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (10-20)% increased Area of Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { + "(15-25)% chance when collecting an Elemental Infusion to gain an", + "additional Elemental Infusion of the same type", + ["affix"] = "of Kurgal", + ["group"] = "ChanceToGainAdditionalInfusion", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 4193, + 4193.1, + }, + ["tradeHashes"] = { + [3927679277] = { + "(15-25)% chance when collecting an Elemental Infusion to gain an", + "additional Elemental Infusion of the same type", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { + "Spell Skills have +1 to maximum number of Summoned Totems", + ["affix"] = "Ulaman's", + ["group"] = "AdditionalSpellTotem", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "caster", + }, + ["statOrder"] = { + 10032, + }, + ["tradeHashes"] = { + [2474424958] = { + "Spell Skills have +1 to maximum number of Summoned Totems", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { + "(61-79)% increased Spell Damage while wielding a Melee Weapon", + ["affix"] = "Ulaman's", + ["group"] = "SpellDamageIfWieldingMeleeWeapon", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "caster", + }, + ["statOrder"] = { + 10010, + }, + ["tradeHashes"] = { + [4136346606] = { + "(61-79)% increased Spell Damage while wielding a Melee Weapon", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "focus", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { + "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "of Ulaman", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { + "(10-20)% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "of Ulaman", + ["group"] = "SpellLifeCostPercent", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + "caster", + }, + ["statOrder"] = { + 10038, + }, + ["tradeHashes"] = { + [3544050945] = { + "(10-20)% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "focus", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { + "(6-10)% increased Mana Cost Efficiency", + ["affix"] = "of Kurgal", + ["group"] = "ManaCostEfficiency", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(6-10)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "gloves", + "focus", + "quiver", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { + "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", + ["affix"] = "Amanamu's", + ["group"] = "LocalFirePenetration", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "elemental", + "fire", + "attack", + }, + ["statOrder"] = { + 3437, + }, + ["tradeHashes"] = { + [3398283493] = { + "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { + "(5-10)% increased Spirit Reservation Efficiency", + ["affix"] = "of Amanamu", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(5-10)% increased Spirit Reservation Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { + "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", + ["affix"] = "Kurgal's", + ["group"] = "LocalColdPenetration", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "kurgal_mod", + "damage", + "elemental", + "cold", + "attack", + }, + ["statOrder"] = { + 3438, + }, + ["tradeHashes"] = { + [1740229525] = { + "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { + "(8-15)% increased Cost Efficiency of Attacks", + ["affix"] = "of Kurgal", + ["group"] = "AttackSkillCostEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attack", + }, + ["statOrder"] = { + 4653, + }, + ["tradeHashes"] = { + [3350279336] = { + "(8-15)% increased Cost Efficiency of Attacks", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { + "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", + ["affix"] = "Ulaman's", + ["group"] = "LocalLightningPenetration", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "ulaman_mod", + "damage", + "elemental", + "lightning", + "attack", + }, + ["statOrder"] = { + 3439, + }, + ["tradeHashes"] = { + [2387539034] = { + "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "weapon", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { + "(15-20)% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "of Ulaman", + ["group"] = "LifeCost", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "(15-20)% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "weapon", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { + "(12-20)% increased Area of Effect of Curses", + ["affix"] = "of Amanamu", + ["group"] = "CurseAreaOfEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(12-20)% increased Area of Effect of Curses", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "gloves", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesAmanamuSuffixDazeChance"] = { + "(10-20)% chance to Daze on Hit", + ["affix"] = "of Amanamu", + ["group"] = "DazeBuildup", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4669, + }, + ["tradeHashes"] = { + [3146310524] = { + "(10-20)% chance to Daze on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { + "(10-20)% increased Immobilisation buildup", + ["affix"] = "of Amanamu", + ["group"] = "ImmobilisationBuildup", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 7193, + }, + ["tradeHashes"] = { + [330530785] = { + "(10-20)% increased Immobilisation buildup", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "gloves", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { + "(8-15)% of Leech is Instant", + ["affix"] = "of Amanamu", + ["group"] = "PercentOfLeechIsInstant", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 7425, + }, + ["tradeHashes"] = { + [3561837752] = { + "(8-15)% of Leech is Instant", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_armour", + "int_armour", + "dex_int_armour", + "gloves", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 0, + 0, + 0, + }, + }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { + "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", + ["affix"] = "of Kurgal", + ["group"] = "GainArcaneSurgeOnCrit", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "critical", + }, + ["statOrder"] = { + 6747, + }, + ["tradeHashes"] = { + [446027070] = { + "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "gloves", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { + "(8-15)% increased Cast Speed when on Full Life", + ["affix"] = "of Kurgal", + ["group"] = "CastSpeedOnFullLife", + ["level"] = 65, + ["modTags"] = { + "caster_speed", + "unveiled_mod", + "kurgal_mod", + "caster", + "speed", + }, + ["statOrder"] = { + 1742, + }, + ["tradeHashes"] = { + [656291658] = { + "(8-15)% increased Cast Speed when on Full Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "gloves", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { + "(10-20)% increased Magnitude of Ailments you inflict", + ["affix"] = "of Ulaman", + ["group"] = "AilmentEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "damage", + "ailment", + }, + ["statOrder"] = { + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(10-20)% increased Magnitude of Ailments you inflict", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { + "(20-30)% increased chance to inflict Bleeding", + ["affix"] = "of Ulaman", + ["group"] = "BleedChanceIncrease", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4806, + }, + ["tradeHashes"] = { + [242637938] = { + "(20-30)% increased chance to inflict Bleeding", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { + "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["affix"] = "of Ulaman", + ["group"] = "SkillSpeedIfConsumedFrenzyChargeRecently", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "speed", + }, + ["statOrder"] = { + 9914, + }, + ["tradeHashes"] = { + [3313255158] = { + "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "gloves", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { + "(15-25)% chance for Attack Hits to apply Incision", + ["affix"] = "of Ulaman", + ["group"] = "IncisionChance", + ["level"] = 65, + ["modTags"] = { + "bleed", + "unveiled_mod", + "ulaman_mod", + "physical", + "ailment", + }, + ["statOrder"] = { + 5553, + }, + ["tradeHashes"] = { + [300723956] = { + "(15-25)% chance for Attack Hits to apply Incision", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "gloves", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { + "(20-30)% increased chance to Poison", + ["affix"] = "of Ulaman", + ["group"] = "PoisonChanceIncrease", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9490, + }, + ["tradeHashes"] = { + [3481083201] = { + "(20-30)% increased chance to Poison", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "gloves", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { + "(10-20)% increased Glory generation", + ["affix"] = "of Amanamu", + ["group"] = "GloryGeneration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6914, + }, + ["tradeHashes"] = { + [3143918757] = { + "(10-20)% increased Glory generation", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_armour", + "int_armour", + "dex_int_armour", + "helmet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { + "(25-35)% increased Presence Area of Effect", + ["affix"] = "of Amanamu", + ["group"] = "PresenceRadius", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(25-35)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { + "(4-8)% increased Spirit Reservation Efficiency", + ["affix"] = "of Amanamu", + ["group"] = "SpiritReservationEfficiency", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(4-8)% increased Spirit Reservation Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { + "(20-30)% increased effect of Arcane Surge on you", + ["affix"] = "of Kurgal", + ["group"] = "ArcaneSurgeEffect", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + "caster", + }, + ["statOrder"] = { + 2996, + }, + ["tradeHashes"] = { + [2103650854] = { + "(20-30)% increased effect of Arcane Surge on you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "dex_armour", + "str_dex_armour", + "helmet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { + "(13-20)% increased Critical Damage Bonus", + ["affix"] = "of Ulaman", + ["group"] = "CriticalStrikeMultiplier", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(13-20)% increased Critical Damage Bonus", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "helmet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { + "(8-12)% increased Life Cost Efficiency", + ["affix"] = "of Ulaman", + ["group"] = "LifeCostEfficiency", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 4708, + }, + ["tradeHashes"] = { + [310945763] = { + "(8-12)% increased Life Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "helmet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { + "Enemies you Mark take (4-8)% increased Damage", + ["affix"] = "of Ulaman", + ["group"] = "MarkedEnemyTakesIncreasedDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 8828, + }, + ["tradeHashes"] = { + [2083058281] = { + "Enemies you Mark take (4-8)% increased Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_armour", + "int_armour", + "str_int_armour", + "helmet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModJewelPrefixAbyssalWastingEffect"] = { + "(10-20)% increased Magnitude of Abyssal Wasting you inflict", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelAbyssalWastingEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + }, + ["statOrder"] = { + 4121, + }, + ["tradeHashes"] = { + [4043376133] = { + "(10-20)% increased Magnitude of Abyssal Wasting you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixAttackDamageArmour"] = { + "(5-10)% increased Armour", + "(4-8)% increased Attack Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelAttackDamageArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "armour", + "damage", + "attack", + }, + ["statOrder"] = { + 882, + 1156, + }, + ["tradeHashes"] = { + [2843214518] = { + "(4-8)% increased Attack Damage", + }, + [2866361420] = { + "(5-10)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { + "(5-10)% increased maximum Energy Shield", + "(4-8)% increased Attack Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelAttackDamageEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "energy_shield", + "damage", + "attack", + }, + ["statOrder"] = { + 886, + 1156, + }, + ["tradeHashes"] = { + [2482852589] = { + "(5-10)% increased maximum Energy Shield", + }, + [2843214518] = { + "(4-8)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixAttackDamageEvasion"] = { + "(5-10)% increased Evasion Rating", + "(4-8)% increased Attack Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelAttackDamageEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "evasion", + "damage", + "attack", + }, + ["statOrder"] = { + 884, + 1156, + }, + ["tradeHashes"] = { + [2106365538] = { + "(5-10)% increased Evasion Rating", + }, + [2843214518] = { + "(4-8)% increased Attack Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { + "(8-15)% increased Presence Area of Effect", + "Aura Skills have (2-4)% increased Magnitudes", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "aura", + }, + ["statOrder"] = { + 1069, + 2574, + }, + ["tradeHashes"] = { + [101878827] = { + "(8-15)% increased Presence Area of Effect", + }, + [315791320] = { + "Aura Skills have (2-4)% increased Magnitudes", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { + "15% increased chance to inflict Bleeding", + "(5-10)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelBleedChanceAndMagnitude", + ["level"] = 1, + ["modTags"] = { + "bleed", + "physical_damage", + "unveiled_mod", + "damage", + "physical", + "ailment", + }, + ["statOrder"] = { + 4806, + 4809, + }, + ["tradeHashes"] = { + [242637938] = { + "15% increased chance to inflict Bleeding", + }, + [3166958180] = { + "(5-10)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { + "(4-8)% increased Chaos Damage", + "(3-6)% increased Withered Magnitude", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelChaosDamageWitherEffect", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + 10556, + }, + ["tradeHashes"] = { + [3973629633] = { + "(3-6)% increased Withered Magnitude", + }, + [736967255] = { + "(4-8)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixColdDamageAndPen"] = { + "(4-8)% increased Cold Damage", + "Damage Penetrates (4-7)% Cold Resistance", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelColdDamageAndPen", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 874, + 2725, + }, + ["tradeHashes"] = { + [3291658075] = { + "(4-8)% increased Cold Damage", + }, + [3417711605] = { + "Damage Penetrates (4-7)% Cold Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { + "Companions deal (5-10)% increased Damage", + "Companions have (5-10)% increased maximum Life", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelCompanionLifeAndDamage", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "resource", + "unveiled_mod", + "life", + "damage", + "minion", + }, + ["statOrder"] = { + 5722, + 5726, + }, + ["tradeHashes"] = { + [1805182458] = { + "Companions have (5-10)% increased maximum Life", + }, + [234296660] = { + "Companions deal (5-10)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { + "(4-8)% increased Elemental Damage", + "(4-8)% increased Magnitude of Ailments you inflict", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelElementalDamageAilmentMagnitude", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 1726, + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(4-8)% increased Magnitude of Ailments you inflict", + }, + [3141070085] = { + "(4-8)% increased Elemental Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { + "(4-8)% increased Exposure Effect", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelElementalExposureEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(4-8)% increased Exposure Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixFireDamageAndPen"] = { + "(4-8)% increased Fire Damage", + "Damage Penetrates (4-7)% Fire Resistance", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelFireDamageAndPen", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 873, + 2724, + }, + ["tradeHashes"] = { + [2653955271] = { + "Damage Penetrates (4-7)% Fire Resistance", + }, + [3962278098] = { + "(4-8)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { + "(4-8)% increased Global Physical Damage", + "Break (4-8)% increased Armour", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", + ["level"] = 1, + ["modTags"] = { + "defences", + "physical_damage", + "unveiled_mod", + "armour", + "damage", + "physical", + }, + ["statOrder"] = { + 1185, + 4407, + }, + ["tradeHashes"] = { + [1310194496] = { + "(4-8)% increased Global Physical Damage", + }, + [1776411443] = { + "Break (4-8)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixLightningDamageAndPen"] = { + "(4-8)% increased Lightning Damage", + "Damage Penetrates (4-7)% Lightning Resistance", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelLightningDamageAndPen", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 875, + 2726, + }, + ["tradeHashes"] = { + [2231156303] = { + "(4-8)% increased Lightning Damage", + }, + [818778753] = { + "Damage Penetrates (4-7)% Lightning Resistance", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixMinionAreaAndLife"] = { + "Minions have (4-8)% increased maximum Life", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelMinionAreaAndLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (4-8)% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixMinionDamageArmour"] = { + "(5-10)% increased Armour", + "Minions deal (4-8)% increased Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelMinionDamageArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "minion_damage", + "unveiled_mod", + "armour", + "damage", + "minion", + }, + ["statOrder"] = { + 882, + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (4-8)% increased Damage", + }, + [2866361420] = { + "(5-10)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { + "(5-10)% increased maximum Energy Shield", + "Minions deal (4-8)% increased Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelMinionDamageEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "minion_damage", + "unveiled_mod", + "energy_shield", + "damage", + "minion", + }, + ["statOrder"] = { + 886, + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (4-8)% increased Damage", + }, + [2482852589] = { + "(5-10)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixMinionDamageEvasion"] = { + "(5-10)% increased Evasion Rating", + "Minions deal (4-8)% increased Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelMinionDamageEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "minion_damage", + "unveiled_mod", + "evasion", + "damage", + "minion", + }, + ["statOrder"] = { + 884, + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (4-8)% increased Damage", + }, + [2106365538] = { + "(5-10)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { + "15% increased chance to Poison", + "(5-10)% increased Magnitude of Poison you inflict", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelPoisonChanceAndMagnitude", + ["level"] = 1, + ["modTags"] = { + "poison", + "unveiled_mod", + "damage", + "ailment", + }, + ["statOrder"] = { + 9490, + 9498, + }, + ["tradeHashes"] = { + [2487305362] = { + "(5-10)% increased Magnitude of Poison you inflict", + }, + [3481083201] = { + "15% increased chance to Poison", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixSpellDamageArmour"] = { + "(4-8)% increased Spell Damage", + "(5-10)% increased Armour", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelSpellDamageArmour", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "defences", + "unveiled_mod", + "armour", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 882, + }, + ["tradeHashes"] = { + [2866361420] = { + "(5-10)% increased Armour", + }, + [2974417149] = { + "(4-8)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { + "(4-8)% increased Spell Damage", + "(5-10)% increased maximum Energy Shield", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelSpellDamageEnergyShield", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "defences", + "unveiled_mod", + "energy_shield", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 886, + }, + ["tradeHashes"] = { + [2482852589] = { + "(5-10)% increased maximum Energy Shield", + }, + [2974417149] = { + "(4-8)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixSpellDamageEvasion"] = { + "(4-8)% increased Spell Damage", + "(5-10)% increased Evasion Rating", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelSpellDamageEvasion", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "defences", + "unveiled_mod", + "evasion", + "damage", + "caster", + }, + ["statOrder"] = { + 871, + 884, + }, + ["tradeHashes"] = { + [2106365538] = { + "(5-10)% increased Evasion Rating", + }, + [2974417149] = { + "(4-8)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { + "(5-10)% increased Armour", + "(4-8)% increased Thorns damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelThornsDamageArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "armour", + "damage", + }, + ["statOrder"] = { + 882, + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(4-8)% increased Thorns damage", + }, + [2866361420] = { + "(5-10)% increased Armour", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { + "(5-10)% increased maximum Energy Shield", + "(4-8)% increased Thorns damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelThornsDamageEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "energy_shield", + "damage", + }, + ["statOrder"] = { + 886, + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(4-8)% increased Thorns damage", + }, + [2482852589] = { + "(5-10)% increased maximum Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { + "(5-10)% increased Evasion Rating", + "(4-8)% increased Thorns damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelThornsDamageEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "evasion", + "damage", + }, + ["statOrder"] = { + 884, + 10254, + }, + ["tradeHashes"] = { + [1315743832] = { + "(4-8)% increased Thorns damage", + }, + [2106365538] = { + "(5-10)% increased Evasion Rating", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixTotemDamageArmour"] = { + "(5-10)% increased Armour", + "(4-8)% increased Totem Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelTotemDamageArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "armour", + "damage", + }, + ["statOrder"] = { + 882, + 1152, + }, + ["tradeHashes"] = { + [2866361420] = { + "(5-10)% increased Armour", + }, + [3851254963] = { + "(4-8)% increased Totem Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { + "(5-10)% increased maximum Energy Shield", + "(4-8)% increased Totem Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelTotemDamageEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "energy_shield", + "damage", + }, + ["statOrder"] = { + 886, + 1152, + }, + ["tradeHashes"] = { + [2482852589] = { + "(5-10)% increased maximum Energy Shield", + }, + [3851254963] = { + "(4-8)% increased Totem Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixTotemDamageEvasion"] = { + "(5-10)% increased Evasion Rating", + "(4-8)% increased Totem Damage", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelTotemDamageEvasion", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "evasion", + "damage", + }, + ["statOrder"] = { + 884, + 1152, + }, + ["tradeHashes"] = { + [2106365538] = { + "(5-10)% increased Evasion Rating", + }, + [3851254963] = { + "(4-8)% increased Totem Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { + "(4-8)% increased Warcry Buff Effect", + "(5-10)% increased Damage with Warcries", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModJewelWarcryBuffEffectAndDamage", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "damage", + }, + ["statOrder"] = { + 10506, + 10509, + }, + ["tradeHashes"] = { + [1594812856] = { + "(5-10)% increased Damage with Warcries", + }, + [3037553757] = { + "(4-8)% increased Warcry Buff Effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelSuffixIncreasedDexterity"] = { + "(1-2)% increased Dexterity", + ["affix"] = "of the Abyss", + ["group"] = "HybridAbyssModJewelIncreasedDexterity", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "attribute", + }, + ["statOrder"] = { + 1000, + }, + ["tradeHashes"] = { + [4139681126] = { + "(1-2)% increased Dexterity", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelSuffixIncreasedIntelligence"] = { + "(1-2)% increased Intelligence", + ["affix"] = "of the Abyss", + ["group"] = "HybridAbyssModJewelIncreasedIntelligence", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "attribute", + }, + ["statOrder"] = { + 1001, + }, + ["tradeHashes"] = { + [656461285] = { + "(1-2)% increased Intelligence", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModJewelSuffixIncreasedStrength"] = { + "(1-2)% increased Strength", + ["affix"] = "of the Abyss", + ["group"] = "HybridAbyssModJewelIncreasedStrength", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "attribute", + }, + ["statOrder"] = { + 999, + }, + ["tradeHashes"] = { + [734614379] = { + "(1-2)% increased Strength", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "strjewel", + "intjewel", + "dexjewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { + "(86-99)% increased Fire Damage", + "(14-23)% increased Ignite Magnitude", + ["affix"] = "Amanamu's", + ["group"] = "FireDamageIgniteMagnitudeHybrid", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "elemental", + "fire", + "ailment", + }, + ["statOrder"] = { + 873, + 1077, + }, + ["tradeHashes"] = { + [3791899485] = { + "(14-23)% increased Ignite Magnitude", + }, + [3962278098] = { + "(86-99)% increased Fire Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "warstaff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { + "(25-40)% chance to build an additional Combo on Hit", + ["affix"] = "of Amanamu", + ["group"] = "ChanceToGenerateAdditionalCombo", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4185, + }, + ["tradeHashes"] = { + [4258524206] = { + "(25-40)% chance to build an additional Combo on Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "warstaff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { + "(86-99)% increased Cold Damage", + "(14-23)% increased Freeze Buildup", + ["affix"] = "Kurgal's", + ["group"] = "ColdDamageFreezeBuildupHybrid", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "elemental", + "cold", + "ailment", + }, + ["statOrder"] = { + 874, + 1057, + }, + ["tradeHashes"] = { + [3291658075] = { + "(86-99)% increased Cold Damage", + }, + [473429811] = { + "(14-23)% increased Freeze Buildup", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "warstaff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { + "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", + ["affix"] = "of Kurgal", + ["group"] = "SkillUseRecoverPercentManaOnExpendingTenCombo", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 9701, + }, + ["tradeHashes"] = { + [2991045011] = { + "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "warstaff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { + "(86-99)% increased Lightning Damage", + "(14-23)% increased Magnitude of Shock you inflict", + ["affix"] = "Ulaman's", + ["group"] = "LightningDamageShockMagnitudeHybrid", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "elemental", + "lightning", + "ailment", + }, + ["statOrder"] = { + 875, + 9845, + }, + ["tradeHashes"] = { + [2231156303] = { + "(86-99)% increased Lightning Damage", + }, + [2527686725] = { + "(14-23)% increased Magnitude of Shock you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "warstaff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { + "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", + ["affix"] = "of Ulaman", + ["group"] = "SkillUseRecoverPercentLifeOnExpendingTenCombo", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 9698, + }, + ["tradeHashes"] = { + [4033618138] = { + "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "warstaff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { + "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", + ["affix"] = "Amanamu's", + ["group"] = "ProjectileDamageCloseRange", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "damage", + }, + ["statOrder"] = { + 9549, + }, + ["tradeHashes"] = { + [2468595624] = { + "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { + "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", + ["affix"] = "of Amanamu", + ["group"] = "ProjectileCriticalDamageCloseRange", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 5817, + }, + ["tradeHashes"] = { + [2573406169] = { + "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { + "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", + ["affix"] = "Kurgal's", + ["group"] = "ProjectileDamageFar", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 9548, + }, + ["tradeHashes"] = { + [2825946427] = { + "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { + "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", + ["affix"] = "of Kurgal", + ["group"] = "ProjectileCriticalHitChanceFar", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 5831, + }, + ["tradeHashes"] = { + [2706625504] = { + "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["affix"] = "Ulaman's", + ["group"] = "IncreasesToProjectileDamageApplyToBowDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4438, + }, + ["tradeHashes"] = { + [414821772] = { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "quiver", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { + "(10-14)% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "of Ulaman", + ["group"] = "LifeCost", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "(10-14)% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { + "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", + ["affix"] = "of Ulaman", + ["group"] = "ChanceAttackFiresAdditionalProjectilesWhileMoving", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9541, + }, + ["tradeHashes"] = { + [3932115504] = { + "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "quiver", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { + "Charms gain 0.1 charges per Second", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelCharmChargesPerSecond", + ["level"] = 1, + ["modTags"] = { + "charm", + "unveiled_mod", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6889, + }, + ["tradeHashes"] = { + [1034611536] = { + "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { + "1% of Damage is taken from Mana before Life", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [2709646369] = { + "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { + "1% of Damage taken Recouped as Life", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [3669820740] = { + "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { + "1% of Damage taken Recouped as Mana", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1044, + }, + ["tradeHashes"] = { + [85367160] = { + "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixGlobalDefences"] = { + "(2-3)% increased Global Armour, Evasion and Energy Shield", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelGlobalDefences", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "armour", + "evasion", + "energy_shield", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2588, + }, + ["tradeHashes"] = { + [2783157569] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Global Armour, Evasion and Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { + "Life Flasks gain 0.1 charges per Second", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", + ["level"] = 1, + ["modTags"] = { + "flask", + "unveiled_mod", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6892, + }, + ["tradeHashes"] = { + [1148433552] = { + "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { + "(2-3)% increased Mana Cost Efficiency", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4257790560] = { + "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { + "Mana Flasks gain 0.1 charges per Second", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", + ["level"] = 1, + ["modTags"] = { + "flask", + "unveiled_mod", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 6893, + }, + ["tradeHashes"] = { + [3939216292] = { + "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { + "1% increased maximum Life", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelPercentMaximumLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 889, + }, + ["tradeHashes"] = { + [160888068] = { + "Notable Passive Skills in Radius also grant 1% increased maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { + "1% increased maximum Mana", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelPercentMaximumMana", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "mana", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 894, + }, + ["tradeHashes"] = { + [2589572664] = { + "Notable Passive Skills in Radius also grant 1% increased maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { + "Hits have (3-5)% reduced Critical Hit Chance against you", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "critical", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 2857, + }, + ["tradeHashes"] = { + [2135541924] = { + "Notable Passive Skills in Radius also grant Hits have (3-5)% reduced Critical Hit Chance against you", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { + "Regenerate (0.03-0.07)% of maximum Life per second", + ["affix"] = "Lightless", + ["group"] = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "life", + }, + ["nodeType"] = 2, + ["statOrder"] = { + 1691, + }, + ["tradeHashes"] = { + [3566150527] = { + "Notable Passive Skills in Radius also grant Regenerate (0.03-0.07)% of maximum Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "int_radius_jewel", + "str_radius_jewel", + "dex_radius_jewel", + "default", + }, + ["weightVal"] = { + 1, + 1, + 1, + 0, + }, + }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { + "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["affix"] = "Amanamu's", + ["group"] = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", + ["level"] = 65, + ["modTags"] = { + "endurance_charge", + "unveiled_mod", + "amanamu_mod", + "ailment", + }, + ["statOrder"] = { + 7263, + }, + ["tradeHashes"] = { + [916833363] = { + "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { + "(12-20)% increased amount of Life Leeched", + ["affix"] = "of Amanamu", + ["group"] = "LifeLeechAmount", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "amanamu_mod", + "life", + }, + ["statOrder"] = { + 1895, + }, + ["tradeHashes"] = { + [2112395885] = { + "(12-20)% increased amount of Life Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { + "Minions deal (15-25)% increased Damage if you've Hit Recently", + ["affix"] = "Amanamu's", + ["group"] = "IncreasedMinionDamageIfYouHitEnemy", + ["level"] = 65, + ["modTags"] = { + "minion_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "minion", + }, + ["statOrder"] = { + 9039, + }, + ["tradeHashes"] = { + [2337295272] = { + "Minions deal (15-25)% increased Damage if you've Hit Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { + "Remnants you create have (8-15)% increased effect", + ["affix"] = "Amanamu's", + ["group"] = "RemnantEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 9736, + }, + ["tradeHashes"] = { + [1999910726] = { + "Remnants you create have (8-15)% increased effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { + "Remnants can be collected from (20-30)% further away", + ["affix"] = "of Amanamu", + ["group"] = "RemnantPickupRadiusIncrease", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 9738, + }, + ["tradeHashes"] = { + [3482326075] = { + "Remnants can be collected from (20-30)% further away", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { + "(8-12)% increased Skill Effect Duration", + ["affix"] = "of Amanamu", + ["group"] = "SkillEffectDuration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(8-12)% increased Skill Effect Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { + "(15-25)% increased Spell Damage while on Full Energy Shield", + ["affix"] = "Kurgal's", + ["group"] = "IncreasedSpellDamageOnFullEnergyShield", + ["level"] = 65, + ["modTags"] = { + "caster_damage", + "unveiled_mod", + "kurgal_mod", + "damage", + "caster", + }, + ["statOrder"] = { + 2810, + }, + ["tradeHashes"] = { + [3176481473] = { + "(15-25)% increased Spell Damage while on Full Energy Shield", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { + "(8-12)% increased Cooldown Recovery Rate", + ["affix"] = "of Kurgal", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(8-12)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { + "(10-15)% increased Exposure Effect", + ["affix"] = "of Kurgal", + ["group"] = "ElementalExposureEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(10-15)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { + "Recover (2-3)% of maximum Mana on Kill", + ["affix"] = "of Kurgal", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [1604736568] = { + "Recover (2-3)% of maximum Mana on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { + "(15-25)% increased Attack Damage while on Low Life", + ["affix"] = "Ulaman's", + ["group"] = "AttackDamageOnLowLife", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4530, + }, + ["tradeHashes"] = { + [4246007234] = { + "(15-25)% increased Attack Damage while on Low Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { + "Recover (2-3)% of maximum Life on Kill", + ["affix"] = "of Ulaman", + ["group"] = "RecoverPercentMaxLifeOnKill", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (2-3)% of maximum Life on Kill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { + "(3-6)% increased Skill Speed", + ["affix"] = "of Ulaman", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(3-6)% increased Skill Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "amulet", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 1, + 0, + 1, + }, + }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { + "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["affix"] = "Kurgal's", + ["group"] = "FreezeBuildupIfConsumedPowerChargeRecently", + ["level"] = 65, + ["modTags"] = { + "power_charge", + "unveiled_mod", + "kurgal_mod", + "ailment", + }, + ["statOrder"] = { + 7192, + }, + ["tradeHashes"] = { + [232701452] = { + "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModRingKurgalSuffixManaLeechAmount"] = { + "(12-20)% increased amount of Mana Leeched", + ["affix"] = "of Kurgal", + ["group"] = "ManaLeechAmount", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 1897, + }, + ["tradeHashes"] = { + [2839066308] = { + "(12-20)% increased amount of Mana Leeched", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { + "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["affix"] = "Ulaman's", + ["group"] = "ShockMagnitudeIfConsumedFrenzyChargeRecently", + ["level"] = 65, + ["modTags"] = { + "frenzy_charge", + "unveiled_mod", + "ulaman_mod", + "ailment", + }, + ["statOrder"] = { + 9846, + }, + ["tradeHashes"] = { + [324210709] = { + "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { + "+1% to all maximum Resistances", + ["affix"] = "of Amanamu", + ["group"] = "MaximumResistances", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "resistance", + }, + ["statOrder"] = { + 1493, + }, + ["tradeHashes"] = { + [569299859] = { + "+1% to all maximum Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { + "Your Heavy Stun buildup empties (30-40)% faster", + ["affix"] = "of Amanamu", + ["group"] = "HeavyStunDecayRate", + ["level"] = 65, + ["modTags"] = { + "block", + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6987, + }, + ["tradeHashes"] = { + [886088880] = { + "Your Heavy Stun buildup empties (30-40)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_shield", + "dex_int_shield", + "shield", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { + "Shield Skills fully Break Armour when they Heavy Stun targets", + ["affix"] = "of Amanamu", + ["group"] = "StunningHitsWithShieldSkillsFullyBreakArmour", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 6699, + }, + ["tradeHashes"] = { + [1689748350] = { + "Shield Skills fully Break Armour when they Heavy Stun targets", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_shield", + "dex_int_shield", + "shield", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { + "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["affix"] = "of Kurgal", + ["group"] = "EnergyShieldRechargeBlockedRecently", + ["level"] = 65, + ["modTags"] = { + "block", + "defences", + "unveiled_mod", + "kurgal_mod", + "energy_shield", + }, + ["statOrder"] = { + 6445, + }, + ["tradeHashes"] = { + [1079292660] = { + "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "dex_shield", + "str_dex_shield", + "shield", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 0, + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { + "(6-12) Mana gained when you Block", + ["affix"] = "of Kurgal", + ["group"] = "GainManaOnBlock", + ["level"] = 65, + ["modTags"] = { + "block", + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + }, + ["statOrder"] = { + 1520, + }, + ["tradeHashes"] = { + [2122183138] = { + "(6-12) Mana gained when you Block", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { + "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", + "You take (8-15)% of damage from Blocked Hits with a raised Shield", + ["affix"] = "of Ulaman", + ["group"] = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", + ["level"] = 65, + ["modTags"] = { + "block", + "unveiled_mod", + "ulaman_mod", + "physical", + "elemental", + "lightning", + }, + ["statOrder"] = { + 2205, + 4943, + }, + ["tradeHashes"] = { + [321970274] = { + "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", + }, + [3694078435] = { + "You take (8-15)% of damage from Blocked Hits with a raised Shield", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "dex_shield", + "dex_int_shield", + "shield", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { + "+(1-2)% to maximum Block chance", + ["affix"] = "of Ulaman", + ["group"] = "MaximumBlockChance", + ["level"] = 65, + ["modTags"] = { + "block", + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 1734, + }, + ["tradeHashes"] = { + [480796730] = { + "+(1-2)% to maximum Block chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "shield", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { + "(25-35)% increased Parried Debuff Duration", + ["affix"] = "of Ulaman", + ["group"] = "ParryDuration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9392, + }, + ["tradeHashes"] = { + [3401186585] = { + "(25-35)% increased Parried Debuff Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "str_int_shield", + "shield", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { + "(20-30)% increased Parried Debuff Magnitude", + ["affix"] = "of Ulaman", + ["group"] = "ParryDebuffMagnitude", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 9379, + }, + ["tradeHashes"] = { + [818877178] = { + "(20-30)% increased Parried Debuff Magnitude", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "str_shield", + "str_int_shield", + "shield", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + 1, + }, + }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { + "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["affix"] = "Kurgal's", + ["group"] = "MeleeDamageIfProjectileAttackHitRecently", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 8914, + }, + ["tradeHashes"] = { + [3028809864] = { + "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "spear", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuPrefixDamageAsChaos"] = { + "Gain (40-50)% of Damage as Extra Chaos Damage", + ["affix"] = "Amanamu's", + ["group"] = "DamageGainedAsChaos", + ["level"] = 65, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (40-50)% of Damage as Extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { + "+(35-50) to Spirit", + ["affix"] = "Amanamu's", + ["group"] = "BaseSpirit", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 896, + }, + ["tradeHashes"] = { + [3981240776] = { + "+(35-50) to Spirit", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { + "(148-178)% increased Spell Damage with Spells that cost Life", + ["affix"] = "Amanamu's", + ["group"] = "SpellDamageForSpellsCostingLife", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 10011, + }, + ["tradeHashes"] = { + [1373860425] = { + "(148-178)% increased Spell Damage with Spells that cost Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuSuffixArchonDuration"] = { + "(25-35)% increased Archon Buff duration", + ["affix"] = "of Amanamu", + ["group"] = "ArchonDuration", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 4344, + }, + ["tradeHashes"] = { + [2158617060] = { + "(25-35)% increased Archon Buff duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuSuffixBlockChance"] = { + "+(20-25)% to Block chance", + ["affix"] = "of Amanamu", + ["group"] = "AdditionalBlock", + ["level"] = 65, + ["modTags"] = { + "block", + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 1123, + }, + ["tradeHashes"] = { + [1702195217] = { + "+(20-25)% to Block chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { + "(25-35)% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "of Amanamu", + ["group"] = "SpellLifeCostPercent", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "amanamu_mod", + "life", + "caster", + }, + ["statOrder"] = { + 10038, + }, + ["tradeHashes"] = { + [3544050945] = { + "(25-35)% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { + "+(1-2) to maximum number of Elemental Infusions", + ["affix"] = "Kurgal's", + ["group"] = "MaximumElementalInfusion", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "elemental", + }, + ["statOrder"] = { + 8875, + }, + ["tradeHashes"] = { + [4097212302] = { + "+(1-2) to maximum number of Elemental Infusions", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { + "(4-5)% increased Spell Damage per 100 maximum Mana", + ["affix"] = "Kurgal's", + ["group"] = "SpellDamagePer100Mana", + ["level"] = 65, + ["modTags"] = { + "caster_damage", + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + "damage", + "caster", + }, + ["statOrder"] = { + 10017, + }, + ["tradeHashes"] = { + [1850249186] = { + "(4-5)% increased Spell Damage per 100 maximum Mana", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { + "Archon recovery period expires (25-35)% faster", + ["affix"] = "of Kurgal", + ["group"] = "ArchonDelayRecovery", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 4343, + }, + ["tradeHashes"] = { + [2586152168] = { + "Archon recovery period expires (25-35)% faster", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { + "(26-36)% increased Cast Speed while on Full Mana", + ["affix"] = "of Kurgal", + ["group"] = "CastSpeedOnFullMana", + ["level"] = 65, + ["modTags"] = { + "caster_speed", + "resource", + "unveiled_mod", + "kurgal_mod", + "mana", + "caster", + "speed", + }, + ["statOrder"] = { + 5347, + }, + ["tradeHashes"] = { + [1914226331] = { + "(26-36)% increased Cast Speed while on Full Mana", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { + "+(3-4) maximum stacks of Puppet Master", + ["affix"] = "of Kurgal", + ["group"] = "MaximumPuppeteerStacks", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "minion", + }, + ["statOrder"] = { + 8839, + }, + ["tradeHashes"] = { + [1484026495] = { + "+(3-4) maximum stacks of Puppet Master", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { + "(40-64)% increased Magnitude of Damaging Ailments you inflict", + ["affix"] = "Ulaman's", + ["group"] = "DamagingAilmentEffect", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "ailment", + }, + ["statOrder"] = { + 6067, + }, + ["tradeHashes"] = { + [1381474422] = { + "(40-64)% increased Magnitude of Damaging Ailments you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { + "(4-5)% increased Spell Damage per 100 Maximum Life", + ["affix"] = "Ulaman's", + ["group"] = "SpellDamagePer100Life", + ["level"] = 65, + ["modTags"] = { + "caster_damage", + "resource", + "unveiled_mod", + "ulaman_mod", + "life", + "damage", + "caster", + }, + ["statOrder"] = { + 10015, + }, + ["tradeHashes"] = { + [3491815140] = { + "(4-5)% increased Spell Damage per 100 Maximum Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "staff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { + "(30-40)% increased Cast Speed when on Low Life", + ["affix"] = "of Ulaman", + ["group"] = "CastSpeedOnLowLife", + ["level"] = 65, + ["modTags"] = { + "caster_speed", + "unveiled_mod", + "ulaman_mod", + "caster", + "speed", + }, + ["statOrder"] = { + 1741, + }, + ["tradeHashes"] = { + [1136768410] = { + "(30-40)% increased Cast Speed when on Low Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { + "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", + ["affix"] = "of Ulaman", + ["group"] = "SpellChanceToFireTwoAdditionalProjectiles", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + "caster", + }, + ["statOrder"] = { + 10034, + }, + ["tradeHashes"] = { + [2910761524] = { + "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "staff", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { + "Minions deal (60-79)% increased Damage if you've Hit Recently", + ["affix"] = "Amanamu's", + ["group"] = "IncreasedMinionDamageIfYouHitEnemy", + ["level"] = 65, + ["modTags"] = { + "minion_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "minion", + }, + ["statOrder"] = { + 9039, + }, + ["tradeHashes"] = { + [2337295272] = { + "Minions deal (60-79)% increased Damage if you've Hit Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "talisman", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { + "Warcries Empower an additional Attack", + ["affix"] = "Kurgal's", + ["group"] = "WarcriesExertAnAdditionalAttack", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attack", + }, + ["statOrder"] = { + 10510, + }, + ["tradeHashes"] = { + [1434716233] = { + "Warcries Empower an additional Attack", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "talisman", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { + "(39-51)% increased Critical Hit Chance against Marked Enemies", + ["affix"] = "of Kurgal", + ["group"] = "CriticalHitChanceAgainstMarkedEnemies", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "critical", + }, + ["statOrder"] = { + 5834, + }, + ["tradeHashes"] = { + [1045789614] = { + "(39-51)% increased Critical Hit Chance against Marked Enemies", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "talisman", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { + "Gain (3-6) Rage on Melee Hit", + ["affix"] = "of Ulaman", + ["group"] = "RageOnHit", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "attack", + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain (3-6) Rage on Melee Hit", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "talisman", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { + "(55-64)% increased Spell Damage", + "Minions deal (55-64)% increased Damage", + ["affix"] = "Amanamu's", + ["group"] = "MinionAndSpellDamageHybrid", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + "minion", + }, + ["statOrder"] = { + 871, + 1720, + }, + ["tradeHashes"] = { + [1589917703] = { + "Minions deal (55-64)% increased Damage", + }, + [2974417149] = { + "(55-64)% increased Spell Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { + "(74-89)% increased Elemental Damage", + ["affix"] = "Amanamu's", + ["group"] = "CasterElementalDamagePercent", + ["level"] = 65, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "amanamu_mod", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 1726, + }, + ["tradeHashes"] = { + [3141070085] = { + "(74-89)% increased Elemental Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { + "(74-89)% increased Spell Damage with Spells that cost Life", + ["affix"] = "Amanamu's", + ["group"] = "SpellDamageForSpellsCostingLife", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 10011, + }, + ["tradeHashes"] = { + [1373860425] = { + "(74-89)% increased Spell Damage with Spells that cost Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { + "Enemies Hindered by you take (4-7)% increased Elemental Damage", + ["affix"] = "of Amanamu", + ["group"] = "HinderedEnemiesTakeIncreasedElementalDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + }, + ["statOrder"] = { + 7184, + }, + ["tradeHashes"] = { + [212649958] = { + "Enemies Hindered by you take (4-7)% increased Elemental Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { + "Spell Skills have (8-16)% increased Area of Effect", + ["affix"] = "of Amanamu", + ["group"] = "SpellAreaOfEffectPercent", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "amanamu_mod", + "caster", + }, + ["statOrder"] = { + 9991, + }, + ["tradeHashes"] = { + [1967040409] = { + "Spell Skills have (8-16)% increased Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { + "(5-10)% increased Cost Efficiency", + "(15-25)% of Spell Mana Cost Converted to Life Cost", + ["affix"] = "of Amanamu", + ["group"] = "SpellLifeCostPercentAndSkillCostEfficiency", + ["level"] = 65, + ["modTags"] = { + "resource", + "unveiled_mod", + "amanamu_mod", + "life", + "caster", + }, + ["statOrder"] = { + 4743, + 10038, + }, + ["tradeHashes"] = { + [263495202] = { + "(5-10)% increased Cost Efficiency", + }, + [3544050945] = { + "(15-25)% of Spell Mana Cost Converted to Life Cost", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "amanamu_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { + "Invocated Spells deal (75-89)% increased Damage", + ["affix"] = "Kurgal's", + ["group"] = "InvocationSpellDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + "caster", + }, + ["statOrder"] = { + 7389, + }, + ["tradeHashes"] = { + [1078309513] = { + "Invocated Spells deal (75-89)% increased Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { + "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["affix"] = "of Kurgal", + ["group"] = "CastSpeedPerDifferentSpellCastRecently", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 5335, + }, + ["tradeHashes"] = { + [1518586897] = { + "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { + "Enemies Hindered by you take (4-7)% increased Chaos Damage", + ["affix"] = "of Kurgal", + ["group"] = "HinderedEnemiesTakeIncreasedChaosDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "kurgal_mod", + }, + ["statOrder"] = { + 7183, + }, + ["tradeHashes"] = { + [1746561819] = { + "Enemies Hindered by you take (4-7)% increased Chaos Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "kurgal_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { + "(27-38)% increased Magnitude of Bleeding you inflict", + ["affix"] = "Ulaman's", + ["group"] = "BleedDotMultiplier", + ["level"] = 65, + ["modTags"] = { + "bleed", + "physical_damage", + "unveiled_mod", + "ulaman_mod", + "damage", + "physical", + "attack", + "ailment", + }, + ["statOrder"] = { + 4809, + }, + ["tradeHashes"] = { + [3166958180] = { + "(27-38)% increased Magnitude of Bleeding you inflict", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { + "Gain (21-25)% of Damage as Extra Physical Damage", + ["affix"] = "Ulaman's", + ["group"] = "DamageasExtraPhysical", + ["level"] = 65, + ["modTags"] = { + "physical_damage", + "unveiled_mod", + "ulaman_mod", + "damage", + "physical", + }, + ["statOrder"] = { + 1671, + }, + ["tradeHashes"] = { + [4019237939] = { + "Gain (21-25)% of Damage as Extra Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { + "Break (31-39)% increased Armour", + ["affix"] = "of Ulaman", + ["group"] = "ArmourBreak", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 4407, + }, + ["tradeHashes"] = { + [1776411443] = { + "Break (31-39)% increased Armour", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { + "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", + ["affix"] = "of Ulaman", + ["group"] = "ArmourBreakPercentOnSpellCrit", + ["level"] = 65, + ["modTags"] = { + "caster_critical", + "unveiled_mod", + "ulaman_mod", + "caster", + "critical", + }, + ["statOrder"] = { + 4411, + }, + ["tradeHashes"] = { + [1286199571] = { + "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { + "Enemies Hindered by you take (4-7)% increased Physical Damage", + ["affix"] = "of Ulaman", + ["group"] = "HinderedEnemiesTakeIncreasedPhysicalDamage", + ["level"] = 65, + ["modTags"] = { + "unveiled_mod", + "ulaman_mod", + }, + ["statOrder"] = { + 7185, + }, + ["tradeHashes"] = { + [359357545] = { + "Enemies Hindered by you take (4-7)% increased Physical Damage", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "wand", + "default", + "ulaman_mod", + }, + ["weightVal"] = { + 1, + 0, + 1, + }, + }, + ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { + "(86-99)% increased Chaos Damage", + "(14-23)% increased Magnitude of Ailments you inflict", + ["affix"] = "Lich's", + ["group"] = "ChaosDamageAndAilmentMagnitude", + ["level"] = 65, + ["modTags"] = { + "poison", + "chaos", + "ailment", + }, + ["statOrder"] = { + 876, + 4259, + }, + ["tradeHashes"] = { + [1303248024] = { + "(14-23)% increased Magnitude of Ailments you inflict", + }, + [736967255] = { + "(86-99)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "default", + }, + ["weightVal"] = { + 0, + }, + }, + ["GenesisTreeAdditionalMaximumSeals"] = { + "Sealed Skills have +1 to maximum Seals", + ["affix"] = "of Esh", + ["group"] = "AdditionalMaximumSeals", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4727, + }, + ["tradeHashes"] = { + [4147510958] = { + "Sealed Skills have +1 to maximum Seals", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeAmuletAnaemiaOnHit"] = { + "Inflict Anaemia on Hit", + "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", + ["affix"] = "Uul-Netol's", + ["group"] = "AnaemiaOnHit", + ["level"] = 1, + ["modTags"] = { + "physical", + }, + ["statOrder"] = { + 4324, + 4324.1, + }, + ["tradeHashes"] = { + [971590056] = { + "Inflict Anaemia on Hit", + "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { + "Gain (10-20)% of Physical Damage as Extra Cold Damage", + ["affix"] = "Tul's", + ["group"] = "ColdDamageAsPortionOfDamage", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "physical_damage", + "damage", + "physical", + "elemental", + "cold", + }, + ["statOrder"] = { + 1675, + }, + ["tradeHashes"] = { + [758893621] = { + "Gain (10-20)% of Physical Damage as Extra Cold Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "ring", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltArchonDuration"] = { + "(40-50)% increased Archon Buff duration", + ["affix"] = "of Exertion", + ["group"] = "ArchonDuration", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4344, + }, + ["tradeHashes"] = { + [2158617060] = { + "(40-50)% increased Archon Buff duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltArchonEffect"] = { + "(20-39)% increased effect of Archon Buffs on you", + ["affix"] = "Unshackling", + ["group"] = "ArchonEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 4345, + }, + ["tradeHashes"] = { + [1180552088] = { + "(20-39)% increased effect of Archon Buffs on you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { + "(35-50)% to gain Archon of Undeath when you create an Offering", + ["affix"] = "of Unending", + ["group"] = "ArchonUndeathOnOfferingUse", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 5401, + }, + ["tradeHashes"] = { + [933355817] = { + "(35-50)% to gain Archon of Undeath when you create an Offering", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { + "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["affix"] = "of Reverberation", + ["group"] = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 5565, + }, + ["tradeHashes"] = { + [2150661403] = { + "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { + "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["affix"] = "Glacial", + ["group"] = "ColdDamageIfColdInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "cold", + }, + ["statOrder"] = { + 5675, + }, + ["tradeHashes"] = { + [1002535626] = { + "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltDamageRemovedFromSpectres"] = { + "5% of Damage from Hits is taken from your Spectres' Life before you", + ["affix"] = "Underling's", + ["group"] = "DamageRemovedFromSpectres", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 6036, + }, + ["tradeHashes"] = { + [54812069] = { + "5% of Damage from Hits is taken from your Spectres' Life before you", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { + "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["affix"] = "Erupting", + ["group"] = "FireDamageIfFireInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + }, + ["statOrder"] = { + 6561, + }, + ["tradeHashes"] = { + [3858572996] = { + "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { + "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["affix"] = "Energising", + ["group"] = "LightningDamageIfLightningInfusionCollectedLast8Seconds", + ["level"] = 1, + ["modTags"] = { + "elemental", + "lightning", + }, + ["statOrder"] = { + 7543, + }, + ["tradeHashes"] = { + [797289402] = { + "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { + "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", + ["affix"] = "of Scattering", + ["group"] = "MinionAdditionalProjectileChance", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9019, + }, + ["tradeHashes"] = { + [1797815732] = { + "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { + "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["affix"] = "Instructor's", + ["group"] = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "damage", + "minion", + }, + ["statOrder"] = { + 9034, + }, + ["tradeHashes"] = { + [3526763442] = { + "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionDuration"] = { + "(35-49)% increased Minion Duration", + ["affix"] = "of Binding", + ["group"] = "MinionDuration", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 4728, + }, + ["tradeHashes"] = { + [999511066] = { + "(35-49)% increased Minion Duration", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionMeleeSplash"] = { + "Minions' Strikes have Melee Splash", + ["affix"] = "of Ravaging", + ["group"] = "MinionMeleeSplash", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9067, + }, + ["tradeHashes"] = { + [3249412463] = { + "Minions' Strikes have Melee Splash", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionReservationEfficiency"] = { + "(7-10)% increased Reservation Efficiency of Minion Skills", + ["affix"] = "of Coherence", + ["group"] = "MinionReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9767, + }, + ["tradeHashes"] = { + [1805633363] = { + "(7-10)% increased Reservation Efficiency of Minion Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { + "Your Minions are Gigantic if they have Revived Recently", + ["affix"] = "Monstrous", + ["group"] = "MinionsGiganticRevivedRecently", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9096, + }, + ["tradeHashes"] = { + [1265767008] = { + "Your Minions are Gigantic if they have Revived Recently", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltSealGainFrequency"] = { + "Sealed Skills have (21-35)% increased Seal gain frequency", + ["affix"] = "of Expectation", + ["group"] = "SealGainFrequency", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 9800, + }, + ["tradeHashes"] = { + [3384867265] = { + "Sealed Skills have (21-35)% increased Seal gain frequency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { + "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", + ["affix"] = "of Imbuing", + ["group"] = "SpellElementalAilmentMagnitude", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + "caster", + }, + ["statOrder"] = { + 10025, + }, + ["tradeHashes"] = { + [3621874554] = { + "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "ring", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeFireSpellBaseCriticalChance"] = { + "+(4-5)% to Fire Spell Critical Hit Chance", + ["affix"] = "of Xoph", + ["group"] = "FireSpellBaseCriticalChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "elemental", + "fire", + "caster", + "critical", + }, + ["statOrder"] = { + 6590, + }, + ["tradeHashes"] = { + [3399401168] = { + "+(4-5)% to Fire Spell Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "ring", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingCommandSkillSpeed"] = { + "Minions have (20-30)% increased Skill Speed with Command Skills", + ["affix"] = "of Punctuality", + ["group"] = "MinionCommandSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "minion_speed", + "speed", + "minion", + }, + ["statOrder"] = { + 9025, + }, + ["tradeHashes"] = { + [73032170] = { + "Minions have (20-30)% increased Skill Speed with Command Skills", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { + "(8-12)% of Damage is taken from Mana before Life", + ["affix"] = "Burdensome", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(8-12)% of Damage is taken from Mana before Life", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingExposureEffect"] = { + "(25-35)% increased Exposure Effect", + ["affix"] = "of Drenching", + ["group"] = "ElementalExposureEffect", + ["level"] = 1, + ["modTags"] = { + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(25-35)% increased Exposure Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMaximumElementalInfusion"] = { + "+1 to maximum number of Elemental Infusions", + ["affix"] = "of Amplification", + ["group"] = "MaximumElementalInfusion", + ["level"] = 1, + ["modTags"] = { + "elemental", + }, + ["statOrder"] = { + 8875, + }, + ["tradeHashes"] = { + [4097212302] = { + "+1 to maximum number of Elemental Infusions", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMaximumInvocationEnergy"] = { + "Invocated skills have (25-35)% increased Maximum Energy", + ["affix"] = "of Vastness", + ["group"] = "InvocationMaximumEnergy", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 7385, + }, + ["tradeHashes"] = { + [1615901249] = { + "Invocated skills have (25-35)% increased Maximum Energy", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMinionAilmentMagnitude"] = { + "Minions have (35-45)% increased Magnitude of Damaging Ailments", + ["affix"] = "Contaminating", + ["group"] = "MinionDamagingAilments", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9012, + }, + ["tradeHashes"] = { + [953593695] = { + "Minions have (35-45)% increased Magnitude of Damaging Ailments", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMinionArmourBreak"] = { + "Minions Break Armour equal to (2-4)% of Physical damage dealt", + ["affix"] = "Scratching", + ["group"] = "MinionArmourBreak", + ["level"] = 1, + ["modTags"] = { + "physical", + "minion", + }, + ["statOrder"] = { + 9000, + }, + ["tradeHashes"] = { + [195270549] = { + "Minions Break Armour equal to (2-4)% of Physical damage dealt", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMinionCooldownRecovery"] = { + "Minions have (21-29)% increased Cooldown Recovery Rate", + ["affix"] = "of Invigoration", + ["group"] = "MinionCooldownRecoveryRate", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 9029, + }, + ["tradeHashes"] = { + [1691403182] = { + "Minions have (21-29)% increased Cooldown Recovery Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingMinionPuppetMaster"] = { + "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["affix"] = "of the Cabal", + ["group"] = "MinionGainPuppetMasterOnCommand", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10202, + }, + ["tradeHashes"] = { + [2840930496] = { + "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingOfferingEffect"] = { + "Offering Skills have (23-30)% increased Buff effect", + ["affix"] = "Dedicated", + ["group"] = "OfferingEffect", + ["level"] = 1, + ["modTags"] = { + }, + ["statOrder"] = { + 3719, + }, + ["tradeHashes"] = { + [3191479793] = { + "Offering Skills have (23-30)% increased Buff effect", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraChaos"] = { + "Spells Gain (8-12)% of Damage as extra Chaos Damage", + ["affix"] = "Soul Stealer's", + ["group"] = "SpellDamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_warband", + "damage", + }, + ["statOrder"] = { + 9242, + }, + ["tradeHashes"] = { + [555706343] = { + "Spells Gain (8-12)% of Damage as extra Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraCold"] = { + "Gain (8-12)% of Damage as Extra Cold Damage with Spells", + ["affix"] = "Tempest Rider's", + ["group"] = "SpellDamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 868, + }, + ["tradeHashes"] = { + [825116955] = { + "Gain (8-12)% of Damage as Extra Cold Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraFire"] = { + "Gain (8-12)% of Damage as Extra Fire Damage with Spells", + ["affix"] = "Fire Breather's", + ["group"] = "SpellDamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 864, + }, + ["tradeHashes"] = { + [1321054058] = { + "Gain (8-12)% of Damage as Extra Fire Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingSpellDamageAsExtraLightning"] = { + "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", + ["affix"] = "Storm Chaser's", + ["group"] = "SpellDamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 870, + }, + ["tradeHashes"] = { + [323800555] = { + "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingSpellImpaleEffect"] = { + "(20-30)% increased Magnitude of Impales inflicted with Spells", + ["affix"] = "of Lancing", + ["group"] = "SpellImpaleEffect", + ["level"] = 1, + ["modTags"] = { + "physical", + "caster", + }, + ["statOrder"] = { + 10027, + }, + ["tradeHashes"] = { + [4259875040] = { + "(20-30)% increased Magnitude of Impales inflicted with Spells", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["GenesisTreeRingTemporaryMinionLimit"] = { + "Temporary Minion Skills have +1 to Limit of Minions summoned", + ["affix"] = "of Multitudes", + ["group"] = "TemporaryMinionLimit", + ["level"] = 1, + ["modTags"] = { + "minion", + }, + ["statOrder"] = { + 10247, + }, + ["tradeHashes"] = { + [1058934731] = { + "Temporary Minion Skills have +1 to Limit of Minions summoned", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "amulet", + "belt", + "breach_desecration", + "default", + }, + ["weightVal"] = { + 0, + 0, + 1, + 0, + }, + }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { + "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_1", + "attribute", + }, + ["statOrder"] = { + 7709, + }, + ["tradeHashes"] = { + [2552484522] = { + "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_1", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelAttributesGrantExtraDexterity", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_1", + "attribute", + }, + ["statOrder"] = { + 7710, + }, + ["tradeHashes"] = { + [1938221597] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_1", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelAttributesGrantExtraIntelligence", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_1", + "attribute", + }, + ["statOrder"] = { + 7711, + }, + ["tradeHashes"] = { + [3116427713] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_1", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Strength", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelAttributesGrantExtraStrength", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_1", + "attribute", + }, + ["statOrder"] = { + 7712, + }, + ["tradeHashes"] = { + [3871530702] = { + "Conquered Attribute Passive Skills also grant +(4-8) to Strength", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_1", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { + "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelAttributesGrantExtraTribute", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_1", + }, + ["statOrder"] = { + 7713, + }, + ["tradeHashes"] = { + [1119086588] = { + "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_1", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { + "Conquered Small Passive Skills also grant (2-4)% increased Armour", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantArmourIncrease", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "historic_abyss_jewel_2", + "armour", + }, + ["statOrder"] = { + 7715, + }, + ["tradeHashes"] = { + [970480050] = { + "Conquered Small Passive Skills also grant (2-4)% increased Armour", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { + "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "attack", + }, + ["statOrder"] = { + 7716, + }, + ["tradeHashes"] = { + [8816597] = { + "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { + "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "chaos", + }, + ["statOrder"] = { + 7717, + }, + ["tradeHashes"] = { + [2601021356] = { + "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { + "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_2", + "elemental", + "fire", + "cold", + "lightning", + "ailment", + }, + ["statOrder"] = { + 7714, + }, + ["tradeHashes"] = { + [1283490138] = { + "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { + "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 7718, + }, + ["tradeHashes"] = { + [4240116297] = { + "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { + "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "historic_abyss_jewel_2", + "energy_shield", + }, + ["statOrder"] = { + 7719, + }, + ["tradeHashes"] = { + [2780670304] = { + "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { + "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "historic_abyss_jewel_2", + "evasion", + }, + ["statOrder"] = { + 7720, + }, + ["tradeHashes"] = { + [468694293] = { + "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { + "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "historic_abyss_jewel_2", + "life", + }, + ["statOrder"] = { + 7721, + }, + ["tradeHashes"] = { + [4264952559] = { + "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { + "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "historic_abyss_jewel_2", + "mana", + }, + ["statOrder"] = { + 7722, + }, + ["tradeHashes"] = { + [1818915622] = { + "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { + "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "minion", + }, + ["statOrder"] = { + 7723, + }, + ["tradeHashes"] = { + [3343033032] = { + "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { + "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "physical", + }, + ["statOrder"] = { + 7724, + }, + ["tradeHashes"] = { + [1829333149] = { + "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { + "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "caster_damage", + "unveiled_mod", + "historic_abyss_jewel_2", + "damage", + "caster", + }, + ["statOrder"] = { + 7725, + }, + ["tradeHashes"] = { + [3038857426] = { + "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { + "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "historic_abyss_jewel_2", + }, + ["statOrder"] = { + 7726, + }, + ["tradeHashes"] = { + [2475870935] = { + "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + "historic_abyss_jewel_2", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { + "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["affix"] = "", + ["group"] = "AggravateBleedOnAttackHitChance", + ["level"] = 1, + ["modTags"] = { + "bleed", + "unveiled_mod", + "heart_unique_jewel_prefix", + "physical", + "ailment", + }, + ["statOrder"] = { + 4240, + }, + ["tradeHashes"] = { + [2705185939] = { + "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["affix"] = "", + ["group"] = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "attack", + "speed", + }, + ["statOrder"] = { + 4568, + }, + ["tradeHashes"] = { + [314741699] = { + "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { + "(40-60)% increased Armour from Equipped Body Armour", + ["affix"] = "", + ["group"] = "BodyArmourFromBodyArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "heart_unique_jewel_prefix", + "armour", + }, + ["statOrder"] = { + 4957, + }, + ["tradeHashes"] = { + [1015576579] = { + "(40-60)% increased Armour from Equipped Body Armour", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixChanceToPierce"] = { + "(30-50)% chance to Pierce an Enemy", + ["affix"] = "", + ["group"] = "ChanceToPierce", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 1068, + }, + ["tradeHashes"] = { + [2321178454] = { + "(30-50)% chance to Pierce an Enemy", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { + "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", + ["affix"] = "", + ["group"] = "CharmChanceToUseOtherCharm", + ["level"] = 1, + ["modTags"] = { + "charm", + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 5633, + }, + ["tradeHashes"] = { + [1949851472] = { + "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixCharmEffect"] = { + "Charms applied to you have (15-25)% increased Effect", + ["affix"] = "", + ["group"] = "CharmEffect", + ["level"] = 1, + ["modTags"] = { + "charm", + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 5612, + }, + ["tradeHashes"] = { + [3480095574] = { + "Charms applied to you have (15-25)% increased Effect", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { + "Recover (5-10)% of maximum Mana when a Charm is used", + ["affix"] = "", + ["group"] = "CharmRecoverManaOnUse", + ["level"] = 1, + ["modTags"] = { + "charm", + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "mana", + }, + ["statOrder"] = { + 9699, + }, + ["tradeHashes"] = { + [4121454694] = { + "Recover (5-10)% of maximum Mana when a Charm is used", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { + "(15-25)% increased Culling Strike Threshold", + ["affix"] = "", + ["group"] = "CullingStrikeThreshold", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 5914, + }, + ["tradeHashes"] = { + [3563080185] = { + "(15-25)% increased Culling Strike Threshold", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixDamageGainedAsChaos"] = { + "Gain (9-15)% of Damage as Extra Lightning Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsLightning", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 869, + }, + ["tradeHashes"] = { + [3278136794] = { + "Gain (9-15)% of Damage as Extra Lightning Damage", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixDamageGainedAsCold"] = { + "Gain (7-13)% of Damage as Extra Chaos Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsChaos", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "chaos", + }, + ["statOrder"] = { + 1672, + }, + ["tradeHashes"] = { + [3398787959] = { + "Gain (7-13)% of Damage as Extra Chaos Damage", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixDamageGainedAsFire"] = { + "Gain (9-15)% of Damage as Extra Fire Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsFire", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "elemental", + "fire", + }, + ["statOrder"] = { + 863, + }, + ["tradeHashes"] = { + [3015669065] = { + "Gain (9-15)% of Damage as Extra Fire Damage", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixDamageGainedAsLightning"] = { + "Gain (9-15)% of Damage as Extra Cold Damage", + ["affix"] = "", + ["group"] = "DamageGainedAsCold", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "elemental", + "cold", + }, + ["statOrder"] = { + 866, + }, + ["tradeHashes"] = { + [2505884597] = { + "Gain (9-15)% of Damage as Extra Cold Damage", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { + "(15-25)% increased Damage while your Companion is in your Presence", + ["affix"] = "", + ["group"] = "DamageWhileInPresenceOfCompanion", + ["level"] = 1, + ["modTags"] = { + "minion_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "minion", + }, + ["statOrder"] = { + 5961, + }, + ["tradeHashes"] = { + [693180608] = { + "(15-25)% increased Damage while your Companion is in your Presence", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixElementalExposureEffect"] = { + "(15-25)% increased Exposure Effect", + ["affix"] = "", + ["group"] = "ElementalExposureEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "elemental", + "fire", + "cold", + "lightning", + }, + ["statOrder"] = { + 6533, + }, + ["tradeHashes"] = { + [2074866941] = { + "(15-25)% increased Exposure Effect", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { + "(40-60)% increased Evasion Rating from Equipped Body Armour", + ["affix"] = "", + ["group"] = "EvasionRatingFromBodyArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "heart_unique_jewel_prefix", + "evasion", + }, + ["statOrder"] = { + 4958, + }, + ["tradeHashes"] = { + [3509362078] = { + "(40-60)% increased Evasion Rating from Equipped Body Armour", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { + "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + ["affix"] = "", + ["group"] = "FlaskLifeRegenForXSeconds", + ["level"] = 1, + ["modTags"] = { + "flask", + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "life", + }, + ["statOrder"] = { + 7516, + }, + ["tradeHashes"] = { + [3161573445] = { + "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixGlobalCooldownRecovery"] = { + "(10-18)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(10-18)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { + "(40-60)% increased Ice Crystal Life", + ["affix"] = "", + ["group"] = "IceCrystalMaximumLife", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 7238, + }, + ["tradeHashes"] = { + [3274422940] = { + "(40-60)% increased Ice Crystal Life", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixIncreasedSkillSpeed"] = { + "(4-8)% increased Skill Speed", + ["affix"] = "", + ["group"] = "IncreasedSkillSpeed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "speed", + }, + ["statOrder"] = { + 837, + }, + ["tradeHashes"] = { + [970213192] = { + "(4-8)% increased Skill Speed", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { + "(15-25)% chance for Lightning Damage with Hits to be Lucky", + ["affix"] = "", + ["group"] = "LuckyLightningDamageChancePercent", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "elemental", + "lightning", + }, + ["statOrder"] = { + 5405, + }, + ["tradeHashes"] = { + [2466011626] = { + "(15-25)% chance for Lightning Damage with Hits to be Lucky", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixManaCostEfficiency"] = { + "(8-16)% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "ManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(8-16)% increased Mana Cost Efficiency", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { + "(20-30)% increased Mana Regeneration Rate while moving", + ["affix"] = "", + ["group"] = "ManaRegenerationRateWhileMoving", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "mana", + }, + ["statOrder"] = { + 8021, + }, + ["tradeHashes"] = { + [1327522346] = { + "(20-30)% increased Mana Regeneration Rate while moving", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixMaximumElementalResistance"] = { + "+1% to all Maximum Elemental Resistances", + ["affix"] = "", + ["group"] = "MaximumElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "unveiled_mod", + "heart_unique_jewel_prefix", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1007, + }, + ["tradeHashes"] = { + [1978899297] = { + "+1% to all Maximum Elemental Resistances", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { + "(40-60)% increased Energy Shield from Equipped Body Armour", + ["affix"] = "", + ["group"] = "MaximumEnergyShieldFromBodyArmour", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "heart_unique_jewel_prefix", + "energy_shield", + }, + ["statOrder"] = { + 8863, + }, + ["tradeHashes"] = { + [1195319608] = { + "(40-60)% increased Energy Shield from Equipped Body Armour", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { + "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", + ["affix"] = "", + ["group"] = "MinionLifeGainAsEnergyShield", + ["level"] = 1, + ["modTags"] = { + "defences", + "unveiled_mod", + "heart_unique_jewel_prefix", + "energy_shield", + "minion", + }, + ["statOrder"] = { + 1437, + }, + ["tradeHashes"] = { + [943702197] = { + "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixMinionLifeRegeneration"] = { + "Minions Regenerate (1-3)% of maximum Life per second", + ["affix"] = "", + ["group"] = "MinionLifeRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "life", + "minion", + }, + ["statOrder"] = { + 2666, + }, + ["tradeHashes"] = { + [2479683456] = { + "Minions Regenerate (1-3)% of maximum Life per second", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { + "Minions Revive (5-10)% faster", + ["affix"] = "", + ["group"] = "MinionReviveSpeed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "minion", + }, + ["statOrder"] = { + 9085, + }, + ["tradeHashes"] = { + [2639966148] = { + "Minions Revive (5-10)% faster", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { + "(8-15)% of Leech is Instant", + ["affix"] = "", + ["group"] = "PercentOfLeechIsInstant", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 7425, + }, + ["tradeHashes"] = { + [3561837752] = { + "(8-15)% of Leech is Instant", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 0, + 0, + }, + }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { + "(5-10)% of Physical Damage prevented Recouped as Life", + ["affix"] = "", + ["group"] = "PhysicalDamagePreventedRecoup", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "life", + "physical", + }, + ["statOrder"] = { + 9451, + }, + ["tradeHashes"] = { + [1374654984] = { + "(5-10)% of Physical Damage prevented Recouped as Life", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixRecoupSpeed"] = { + "(8-14)% increased speed of Recoup Effects", + ["affix"] = "", + ["group"] = "RecoupSpeed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 9663, + }, + ["tradeHashes"] = { + [2363593824] = { + "(8-14)% increased speed of Recoup Effects", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { + "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", + ["affix"] = "", + ["group"] = "RecoverLifeOnKillingPoisonedEnemy", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_prefix", + "life", + }, + ["statOrder"] = { + 9697, + }, + ["tradeHashes"] = { + [1781372024] = { + "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixSkillEffectDuration"] = { + "(10-15)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(10-15)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { + "+(2-4)% to Thorns Critical Hit Chance", + ["affix"] = "", + ["group"] = "ThornsCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + "critical", + }, + ["statOrder"] = { + 4758, + }, + ["tradeHashes"] = { + [2715190555] = { + "+(2-4)% to Thorns Critical Hit Chance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { + "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", + ["affix"] = "", + ["group"] = "ThornsFromPercentBodyArmour", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + "damage", + }, + ["statOrder"] = { + 4664, + }, + ["tradeHashes"] = { + [1793740180] = { + "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { + "(6-12)% chance for Trigger skills to refund half of Energy Spent", + ["affix"] = "", + ["group"] = "TriggersRefundEnergySpent", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_prefix", + }, + ["statOrder"] = { + 10320, + }, + ["tradeHashes"] = { + [599320227] = { + "(6-12)% chance for Trigger skills to refund half of Energy Spent", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixAilmentChance"] = { + "(4-8)% increased chance to inflict Ailments", + ["affix"] = "", + ["group"] = "AilmentChance", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "ailment", + }, + ["statOrder"] = { + 4255, + }, + ["tradeHashes"] = { + [1772247089] = { + "(4-8)% increased chance to inflict Ailments", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { + "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", + ["affix"] = "", + ["group"] = "AilmentThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "ailment", + }, + ["statOrder"] = { + 4265, + }, + ["tradeHashes"] = { + [3398301358] = { + "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixBaseChanceToBleed"] = { + "(5-10)% chance to inflict Bleeding on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToBleed", + ["level"] = 1, + ["modTags"] = { + "bleed", + "unveiled_mod", + "heart_unique_jewel_suffix", + "physical", + "ailment", + }, + ["statOrder"] = { + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "(5-10)% chance to inflict Bleeding on Hit", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixBaseChanceToPoison"] = { + "(5-10)% chance to Poison on Hit", + ["affix"] = "", + ["group"] = "BaseChanceToPoison", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "ailment", + }, + ["statOrder"] = { + 2899, + }, + ["tradeHashes"] = { + [795138349] = { + "(5-10)% chance to Poison on Hit", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixCritChanceForJewel"] = { + "(4-8)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "CritChanceForJewel", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "critical", + }, + ["statOrder"] = { + 976, + }, + ["tradeHashes"] = { + [587431675] = { + "(4-8)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixCritMultiplierForJewel"] = { + "(6-12)% increased Critical Damage Bonus", + ["affix"] = "", + ["group"] = "CritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "damage", + "critical", + }, + ["statOrder"] = { + 980, + }, + ["tradeHashes"] = { + [3556824919] = { + "(6-12)% increased Critical Damage Bonus", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { + "(2-3)% of Damage is taken from Mana before Life", + ["affix"] = "", + ["group"] = "DamageRemovedFromManaBeforeLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "life", + "mana", + }, + ["statOrder"] = { + 2472, + }, + ["tradeHashes"] = { + [458438597] = { + "(2-3)% of Damage is taken from Mana before Life", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixDebuffTimePassed"] = { + "Debuffs on you expire (4-8)% faster", + ["affix"] = "", + ["group"] = "DebuffTimePassed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 6099, + }, + ["tradeHashes"] = { + [1238227257] = { + "Debuffs on you expire (4-8)% faster", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { + "Damaging Ailments deal damage (2-4)% faster", + ["affix"] = "", + ["group"] = "FasterAilmentDamageForJewel", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "damage", + "ailment", + }, + ["statOrder"] = { + 6068, + }, + ["tradeHashes"] = { + [538241406] = { + "Damaging Ailments deal damage (2-4)% faster", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixFlaskDuration"] = { + "(4-8)% increased Flask Effect Duration", + ["affix"] = "", + ["group"] = "FlaskDuration", + ["level"] = 1, + ["modTags"] = { + "flask", + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 902, + }, + ["tradeHashes"] = { + [3741323227] = { + "(4-8)% increased Flask Effect Duration", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixGainRageWhenHit"] = { + "Gain (1-2) Rage when Hit by an Enemy", + ["affix"] = "", + ["group"] = "GainRageWhenHit", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 6875, + }, + ["tradeHashes"] = { + [3292710273] = { + "Gain (1-2) Rage when Hit by an Enemy", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixGlobalCooldownRecovery"] = { + "(2-3)% increased Cooldown Recovery Rate", + ["affix"] = "", + ["group"] = "GlobalCooldownRecovery", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 4677, + }, + ["tradeHashes"] = { + [1004011302] = { + "(2-3)% increased Cooldown Recovery Rate", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { + "(6-12)% increased Elemental Ailment Threshold", + ["affix"] = "", + ["group"] = "IncreasedAilmentThreshold", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "ailment", + }, + ["statOrder"] = { + 4266, + }, + ["tradeHashes"] = { + [3544800472] = { + "(6-12)% increased Elemental Ailment Threshold", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixIncreasedAttackSpeed"] = { + "(2-3)% increased Attack Speed", + ["affix"] = "", + ["group"] = "IncreasedAttackSpeed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "attack", + "speed", + }, + ["statOrder"] = { + 985, + }, + ["tradeHashes"] = { + [681332047] = { + "(2-3)% increased Attack Speed", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { + "(2-3)% increased Cast Speed", + ["affix"] = "", + ["group"] = "IncreasedCastSpeedForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "unveiled_mod", + "heart_unique_jewel_suffix", + "caster", + "speed", + }, + ["statOrder"] = { + 987, + }, + ["tradeHashes"] = { + [2891184298] = { + "(2-3)% increased Cast Speed", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { + "(4-8)% increased Flask Charges gained", + ["affix"] = "", + ["group"] = "IncreasedFlaskChargesGained", + ["level"] = 1, + ["modTags"] = { + "flask", + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 6640, + }, + ["tradeHashes"] = { + [1836676211] = { + "(4-8)% increased Flask Charges gained", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixIncreasedStunThreshold"] = { + "(5-10)% increased Stun Threshold", + ["affix"] = "", + ["group"] = "IncreasedStunThreshold", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 2983, + }, + ["tradeHashes"] = { + [680068163] = { + "(5-10)% increased Stun Threshold", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixLifeCost"] = { + "(2-3)% of Skill Mana Costs Converted to Life Costs", + ["affix"] = "", + ["group"] = "LifeCost", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "life", + }, + ["statOrder"] = { + 4744, + }, + ["tradeHashes"] = { + [2480498143] = { + "(2-3)% of Skill Mana Costs Converted to Life Costs", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixLifeRecoupForJewel"] = { + "(2-3)% of Damage taken Recouped as Life", + ["affix"] = "", + ["group"] = "LifeRecoupForJewel", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "life", + }, + ["statOrder"] = { + 1037, + }, + ["tradeHashes"] = { + [1444556985] = { + "(2-3)% of Damage taken Recouped as Life", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixLifeRegenerationRate"] = { + "(6-12)% increased Life Regeneration rate", + ["affix"] = "", + ["group"] = "LifeRegenerationRate", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "life", + }, + ["statOrder"] = { + 1036, + }, + ["tradeHashes"] = { + [44972811] = { + "(6-12)% increased Life Regeneration rate", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { + "Recover (1-2)% of maximum Mana on Kill", + ["affix"] = "", + ["group"] = "ManaGainedOnKillPercentage", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "mana", + }, + ["statOrder"] = { + 1517, + }, + ["tradeHashes"] = { + [1604736568] = { + "Recover (1-2)% of maximum Mana on Kill", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixManaRegeneration"] = { + "(4-8)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "ManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(4-8)% increased Mana Regeneration Rate", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMaximumColdResist"] = { + "+1% to Maximum Cold Resistance", + ["affix"] = "", + ["group"] = "MaximumColdResist", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "unveiled_mod", + "heart_unique_jewel_suffix", + "elemental", + "cold", + "resistance", + }, + ["statOrder"] = { + 1010, + }, + ["tradeHashes"] = { + [3676141501] = { + "+1% to Maximum Cold Resistance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMaximumFireResist"] = { + "+1% to Maximum Fire Resistance", + ["affix"] = "", + ["group"] = "MaximumFireResist", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "fire_resistance", + "unveiled_mod", + "heart_unique_jewel_suffix", + "elemental", + "fire", + "resistance", + }, + ["statOrder"] = { + 1009, + }, + ["tradeHashes"] = { + [4095671657] = { + "+1% to Maximum Fire Resistance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { + "Recover (1-2)% of maximum Life on Kill", + ["affix"] = "", + ["group"] = "MaximumLifeOnKillPercent", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "heart_unique_jewel_suffix", + "life", + }, + ["statOrder"] = { + 1511, + }, + ["tradeHashes"] = { + [2023107756] = { + "Recover (1-2)% of maximum Life on Kill", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMaximumLightningResist"] = { + "+1% to Maximum Lightning Resistance", + ["affix"] = "", + ["group"] = "MaximumLightningResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "lightning_resistance", + "unveiled_mod", + "heart_unique_jewel_suffix", + "elemental", + "lightning", + "resistance", + }, + ["statOrder"] = { + 1011, + }, + ["tradeHashes"] = { + [1011760251] = { + "+1% to Maximum Lightning Resistance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { + "Minions have (2-3)% increased Attack and Cast Speed", + ["affix"] = "", + ["group"] = "MinionAttackSpeedAndCastSpeed", + ["level"] = 1, + ["modTags"] = { + "caster_speed", + "minion_speed", + "unveiled_mod", + "heart_unique_jewel_suffix", + "attack", + "caster", + "speed", + "minion", + }, + ["statOrder"] = { + 9003, + }, + ["tradeHashes"] = { + [3091578504] = { + "Minions have (2-3)% increased Attack and Cast Speed", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { + "Minions have (6-12)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "MinionCriticalStrikeChanceIncrease", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "minion", + "critical", + }, + ["statOrder"] = { + 9030, + }, + ["tradeHashes"] = { + [491450213] = { + "Minions have (6-12)% increased Critical Hit Chance", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMinionElementalResistance"] = { + "Minions have +(3-4)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "MinionElementalResistance", + ["level"] = 1, + ["modTags"] = { + "cold_resistance", + "elemental_resistance", + "fire_resistance", + "lightning_resistance", + "minion_resistance", + "unveiled_mod", + "heart_unique_jewel_suffix", + "elemental", + "fire", + "cold", + "lightning", + "resistance", + "minion", + }, + ["statOrder"] = { + 2667, + }, + ["tradeHashes"] = { + [1423639565] = { + "Minions have +(3-4)% to all Elemental Resistances", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { + "Minions have (3-12)% additional Physical Damage Reduction", + ["affix"] = "", + ["group"] = "MinionPhysicalDamageReduction", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "physical", + "minion", + }, + ["statOrder"] = { + 2022, + }, + ["tradeHashes"] = { + [3119612865] = { + "Minions have (3-12)% additional Physical Damage Reduction", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixMovementVelocity"] = { + "(1-2)% increased Movement Speed", + ["affix"] = "", + ["group"] = "MovementVelocity", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "speed", + }, + ["statOrder"] = { + 836, + }, + ["tradeHashes"] = { + [2250533757] = { + "(1-2)% increased Movement Speed", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixRageOnHit"] = { + "Gain 1 Rage on Melee Hit", + ["affix"] = "", + ["group"] = "RageOnHit", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + "attack", + }, + ["statOrder"] = { + 6873, + }, + ["tradeHashes"] = { + [2709367754] = { + "Gain 1 Rage on Melee Hit", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixSkillEffectDuration"] = { + "(3-8)% increased Skill Effect Duration", + ["affix"] = "", + ["group"] = "SkillEffectDuration", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 1645, + }, + ["tradeHashes"] = { + [3377888098] = { + "(3-8)% increased Skill Effect Duration", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixSlowPotency"] = { + "(5-10)% reduced Slowing Potency of Debuffs on You", + ["affix"] = "", + ["group"] = "SlowPotency", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 4747, + }, + ["tradeHashes"] = { + [924253255] = { + "(5-10)% reduced Slowing Potency of Debuffs on You", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { + "(6-12)% increased Critical Spell Damage Bonus", + ["affix"] = "", + ["group"] = "SpellCritMultiplierForJewel", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "caster_damage", + "unveiled_mod", + "heart_unique_jewel_suffix", + "damage", + "caster", + "critical", + }, + ["statOrder"] = { + 982, + }, + ["tradeHashes"] = { + [274716455] = { + "(6-12)% increased Critical Spell Damage Bonus", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { + "(4-8)% increased Critical Hit Chance for Spells", + ["affix"] = "", + ["group"] = "SpellCriticalStrikeChance", + ["level"] = 1, + ["modTags"] = { + "caster_critical", + "unveiled_mod", + "heart_unique_jewel_suffix", + "caster", + "critical", + }, + ["statOrder"] = { + 978, + }, + ["tradeHashes"] = { + [737908626] = { + "(4-8)% increased Critical Hit Chance for Spells", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixStunDamageIncrease"] = { + "(6-12)% increased Stun Buildup", + ["affix"] = "", + ["group"] = "StunDamageIncrease", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 1051, + }, + ["tradeHashes"] = { + [239367161] = { + "(6-12)% increased Stun Buildup", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { + "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", + ["affix"] = "", + ["group"] = "StunThresholdfromEnergyShield", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "heart_unique_jewel_suffix", + }, + ["statOrder"] = { + 10138, + }, + ["tradeHashes"] = { + [416040624] = { + "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", + }, + }, + ["weightKey"] = { + "heart_unique_jewel_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakChaosDamageAndExplosion_1"] = { + "(100-160)% increased Chaos Damage", + "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["affix"] = "", + ["group"] = "UniqueChaosDamageAndExplosion", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "kulemak_abyss_special_prefix", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + 3012, + }, + ["tradeHashes"] = { + [1776945532] = { + "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + }, + [736967255] = { + "(100-160)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { + "(100-160)% increased Chaos Damage", + "Enemies you Curse have -(8-5)% to Chaos Resistance", + ["affix"] = "", + ["group"] = "UniqueChaosDamageAndCurseLowersChaosRes", + ["level"] = 1, + ["modTags"] = { + "chaos_damage", + "unveiled_mod", + "kulemak_abyss_special_prefix", + "damage", + "chaos", + }, + ["statOrder"] = { + 876, + 3716, + }, + ["tradeHashes"] = { + [1772929282] = { + "Enemies you Curse have -(8-5)% to Chaos Resistance", + }, + [736967255] = { + "(100-160)% increased Chaos Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { + "(10-20)% increased Duration of Elemental Ailments on Enemies", + "(100-160)% increased Elemental Damage", + ["affix"] = "", + ["group"] = "UniqueElementalDamageAndDurationOfEleAilments", + ["level"] = 1, + ["modTags"] = { + "elemental_damage", + "unveiled_mod", + "kulemak_abyss_special_prefix", + "damage", + "elemental", + }, + ["statOrder"] = { + 1617, + 1726, + }, + ["tradeHashes"] = { + [2604619892] = { + "(10-20)% increased Duration of Elemental Ailments on Enemies", + }, + [3141070085] = { + "(100-160)% increased Elemental Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { + "(100-160)% increased Spell Physical Damage", + "(20-30)% chance to inflict Bleeding on Hit", + ["affix"] = "", + ["group"] = "UniqueSpellPhysicalAndBleedChance", + ["level"] = 1, + ["modTags"] = { + "physical_damage", + "unveiled_mod", + "kulemak_abyss_special_prefix", + "damage", + "physical", + }, + ["statOrder"] = { + 878, + 4671, + }, + ["tradeHashes"] = { + [2174054121] = { + "(20-30)% chance to inflict Bleeding on Hit", + }, + [2768835289] = { + "(100-160)% increased Spell Physical Damage", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { + "+(40-60) to Spirit", + "(6-10)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "UniqueSpiritAndSpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "kulemak_abyss_special_prefix", + }, + ["statOrder"] = { + 895, + 4755, + }, + ["tradeHashes"] = { + [2704225257] = { + "+(40-60) to Spirit", + }, + [53386210] = { + "(6-10)% increased Spirit Reservation Efficiency", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { + "(28-56)% increased Magnitude of Unholy Might buffs you grant", + "You have Unholy Might", + ["affix"] = "", + ["group"] = "UniqueUnholyMightAndMagnitude", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "kulemak_abyss_special_prefix", + }, + ["statOrder"] = { + 4762, + 6978, + }, + ["tradeHashes"] = { + [2725205297] = { + "(28-56)% increased Magnitude of Unholy Might buffs you grant", + }, + [3007552094] = { + "You have Unholy Might", + }, + }, + ["type"] = "Prefix", + ["weightKey"] = { + "kulemak_abyss_special_prefix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { + "Allies in your Presence have +(11-18)% to all Elemental Resistances", + ["affix"] = "", + ["group"] = "UniqueAlliesInPresenceAllElementalResistance", + ["level"] = 1, + ["modTags"] = { + "elemental_resistance", + "unveiled_mod", + "watcher_abyss_suffix", + "elemental", + "resistance", + "aura", + }, + ["statOrder"] = { + 920, + }, + ["tradeHashes"] = { + [3850614073] = { + "Allies in your Presence have +(11-18)% to all Elemental Resistances", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { + "Allies in your Presence have (8-15)% increased Cast Speed", + ["affix"] = "", + ["group"] = "UniqueAlliesInPresenceCastSpeed", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + "caster", + "aura", + }, + ["statOrder"] = { + 919, + }, + ["tradeHashes"] = { + [289128254] = { + "Allies in your Presence have (8-15)% increased Cast Speed", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { + "Allies in your Presence have (26-41)% increased Critical Hit Chance", + ["affix"] = "", + ["group"] = "UniqueAlliesInPresenceCriticalHitChance", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + "critical", + "aura", + }, + ["statOrder"] = { + 916, + }, + ["tradeHashes"] = { + [1250712710] = { + "Allies in your Presence have (26-41)% increased Critical Hit Chance", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { + "Allies in your Presence Regenerate (29.1-33) Life per second", + ["affix"] = "", + ["group"] = "UniqueAlliesInPresenceFlatLifeRegen", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "watcher_abyss_suffix", + "life", + "aura", + }, + ["statOrder"] = { + 921, + }, + ["tradeHashes"] = { + [4010677958] = { + "Allies in your Presence Regenerate (29.1-33) Life per second", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledCurseAreaOfEffect"] = { + "(11-21)% increased Area of Effect of Curses", + ["affix"] = "", + ["group"] = "UniqueCurseAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + "curse", + }, + ["statOrder"] = { + 1950, + }, + ["tradeHashes"] = { + [153777645] = { + "(11-21)% increased Area of Effect of Curses", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledEffectOfCurses"] = { + "(11-18)% increased Curse Magnitudes", + ["affix"] = "", + ["group"] = "UniqueEffectOfCurses", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + "curse", + }, + ["statOrder"] = { + 2376, + }, + ["tradeHashes"] = { + [2353576063] = { + "(11-18)% increased Curse Magnitudes", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { + "(12-16)% increased Mana Cost Efficiency", + ["affix"] = "", + ["group"] = "UniqueManaCostEfficiency", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "watcher_abyss_suffix", + "mana", + }, + ["statOrder"] = { + 4718, + }, + ["tradeHashes"] = { + [4101445926] = { + "(12-16)% increased Mana Cost Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledManaRegeneration"] = { + "(68-91)% increased Mana Regeneration Rate", + ["affix"] = "", + ["group"] = "UniqueManaRegeneration", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "watcher_abyss_suffix", + "mana", + }, + ["statOrder"] = { + 1043, + }, + ["tradeHashes"] = { + [789117908] = { + "(68-91)% increased Mana Regeneration Rate", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledMinionLife"] = { + "Minions have (41-50)% increased maximum Life", + ["affix"] = "", + ["group"] = "UniqueMinionLife", + ["level"] = 1, + ["modTags"] = { + "resource", + "unveiled_mod", + "watcher_abyss_suffix", + "life", + "minion", + }, + ["statOrder"] = { + 1026, + }, + ["tradeHashes"] = { + [770672621] = { + "Minions have (41-50)% increased maximum Life", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { + "(46-55)% increased Presence Area of Effect", + ["affix"] = "", + ["group"] = "UniquePresenceAreaOfEffect", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + "aura", + }, + ["statOrder"] = { + 1069, + }, + ["tradeHashes"] = { + [101878827] = { + "(46-55)% increased Presence Area of Effect", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { + "(12-16)% increased Spirit Reservation Efficiency", + ["affix"] = "", + ["group"] = "UniqueSpiritReservationEfficiency", + ["level"] = 1, + ["modTags"] = { + "unveiled_mod", + "watcher_abyss_suffix", + }, + ["statOrder"] = { + 4755, + }, + ["tradeHashes"] = { + [53386210] = { + "(12-16)% increased Spirit Reservation Efficiency", + }, + }, + ["type"] = "Suffix", + ["weightKey"] = { + "watcher_abyss_suffix", + "default", + }, + ["weightVal"] = { + 1, + 0, + }, + }, +} diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 093622a291..eedfa453a6 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -1,12 +1,13 @@ -- This file is automatically generated, do not edit! --- Stat data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games -- This file contains categories of stats, mapped from trade hash to details -- relevant for generating search weights Note that the trade site requires a -- prefix of e.g. explicit.stat_{hash}. See --- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade +-- TradeSiteStats.lua for a list of all trade -- site stats. +-- spell-checker: disable return { ["AgainstTheDarkness"] = { ["1247628870"] = { @@ -27792,6 +27793,20 @@ return { ["type"] = "implicit", }, }, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -28889,6 +28904,23 @@ return { ["type"] = "augment", }, }, + ["1273508088"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1273508088", + ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["type"] = "augment", + }, + }, ["1311130924"] = { ["Chest"] = { ["max"] = 25, @@ -29627,6 +29659,20 @@ return { ["type"] = "augment", }, }, + ["1702195217"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1755296234"] = { ["1HMace"] = { ["max"] = 1, @@ -30879,6 +30925,15 @@ return { ["type"] = "augment", }, }, + ["2438634449"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2438634449", + ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + ["type"] = "augment", + }, + }, ["2441825294"] = { ["Boots"] = { ["max"] = 50, @@ -31557,6 +31612,19 @@ return { ["type"] = "augment", }, }, + ["2875218423"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2875218423", + ["text"] = "Damage Blocked is Recouped as Mana", + ["type"] = "augment", + }, + }, ["2876843277"] = { ["Boots"] = { ["max"] = 15, @@ -34318,6 +34386,19 @@ return { ["type"] = "augment", }, }, + ["44972811"] = { + ["Shield"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "augment", + }, + }, ["458438597"] = { ["Chest"] = { ["max"] = 15, @@ -35778,4 +35859,4 @@ return { }, }, }, -} \ No newline at end of file +} diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index c4f952c4ed..4777182956 100644 --- a/src/Data/TimelessJewelData/LegionPassives.lua +++ b/src/Data/TimelessJewelData/LegionPassives.lua @@ -1,11881 +1,11883 @@ -- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games +-- Game data (c) Grinding Gear Games + +-- spell-checker: disable return { ["additions"] = { - [1] = { - ["dn"] = "Fire Damage", - ["id"] = "vaal_small_fire_damage", + { + ["dn"] = "Fire Damage", + ["id"] = "vaal_small_fire_damage", ["sd"] = { - [1] = "(7-12)% increased Fire Damage", - }, + "(7-12)% increased Fire Damage", + }, ["sortedStats"] = { - [1] = "fire_damage_+%", - }, + "fire_damage_+%", + }, ["stats"] = { ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 873, - }, - }, - }, - [2] = { - ["dn"] = "Cold Damage", - ["id"] = "vaal_small_cold_damage", - ["sd"] = { - [1] = "(7-12)% increased Cold Damage", - }, - ["sortedStats"] = { - [1] = "cold_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 873, + }, + }, + }, + { + ["dn"] = "Cold Damage", + ["id"] = "vaal_small_cold_damage", + ["sd"] = { + "(7-12)% increased Cold Damage", + }, + ["sortedStats"] = { + "cold_damage_+%", + }, ["stats"] = { ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 874, - }, - }, - }, - [3] = { - ["dn"] = "Lightning Damage", - ["id"] = "vaal_small_lightning_damage", - ["sd"] = { - [1] = "(7-12)% increased Lightning Damage", - }, - ["sortedStats"] = { - [1] = "lightning_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 874, + }, + }, + }, + { + ["dn"] = "Lightning Damage", + ["id"] = "vaal_small_lightning_damage", + ["sd"] = { + "(7-12)% increased Lightning Damage", + }, + ["sortedStats"] = { + "lightning_damage_+%", + }, ["stats"] = { ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 875, - }, - }, - }, - [4] = { - ["dn"] = "Physical Damage", - ["id"] = "vaal_small_physical_damage", - ["sd"] = { - [1] = "(7-12)% increased Physical Damage", - }, - ["sortedStats"] = { - [1] = "physical_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 875, + }, + }, + }, + { + ["dn"] = "Physical Damage", + ["id"] = "vaal_small_physical_damage", + ["sd"] = { + "(7-12)% increased Physical Damage", + }, + ["sortedStats"] = { + "physical_damage_+%", + }, ["stats"] = { ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 10898, - }, - }, - }, - [5] = { - ["dn"] = "Chaos Damage", - ["id"] = "vaal_small_chaos_damage", - ["sd"] = { - [1] = "(7-12)% increased Chaos Damage", - }, - ["sortedStats"] = { - [1] = "chaos_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 10898, + }, + }, + }, + { + ["dn"] = "Chaos Damage", + ["id"] = "vaal_small_chaos_damage", + ["sd"] = { + "(7-12)% increased Chaos Damage", + }, + ["sortedStats"] = { + "chaos_damage_+%", + }, ["stats"] = { ["chaos_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 876, - }, - }, - }, - [6] = { - ["dn"] = "Minion Damage", - ["id"] = "vaal_small_minion_damage", - ["sd"] = { - [1] = "Minions deal (8-13)% increased Damage", - }, - ["sortedStats"] = { - [1] = "minion_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 876, + }, + }, + }, + { + ["dn"] = "Minion Damage", + ["id"] = "vaal_small_minion_damage", + ["sd"] = { + "Minions deal (8-13)% increased Damage", + }, + ["sortedStats"] = { + "minion_damage_+%", + }, ["stats"] = { ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 13, - ["min"] = 8, - ["statOrder"] = 1720, - }, - }, - }, - [7] = { - ["dn"] = "Attack Damage", - ["id"] = "vaal_small_attack_damage", - ["sd"] = { - [1] = "(7-12)% increased Attack Damage", - }, - ["sortedStats"] = { - [1] = "attack_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 8, + ["statOrder"] = 1720, + }, + }, + }, + { + ["dn"] = "Attack Damage", + ["id"] = "vaal_small_attack_damage", + ["sd"] = { + "(7-12)% increased Attack Damage", + }, + ["sortedStats"] = { + "attack_damage_+%", + }, ["stats"] = { ["attack_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1156, - }, - }, - }, - [8] = { - ["dn"] = "Spell Damage", - ["id"] = "vaal_small_spell_damage", - ["sd"] = { - [1] = "(7-12)% increased Spell Damage", - }, - ["sortedStats"] = { - [1] = "spell_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1156, + }, + }, + }, + { + ["dn"] = "Spell Damage", + ["id"] = "vaal_small_spell_damage", + ["sd"] = { + "(7-12)% increased Spell Damage", + }, + ["sortedStats"] = { + "spell_damage_+%", + }, ["stats"] = { ["spell_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 871, - }, - }, - }, - [9] = { - ["dn"] = "Area Damage", - ["id"] = "vaal_small_area_damage", - ["sd"] = { - [1] = "(7-12)% increased Area Damage", - }, - ["sortedStats"] = { - [1] = "area_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 871, + }, + }, + }, + { + ["dn"] = "Area Damage", + ["id"] = "vaal_small_area_damage", + ["sd"] = { + "(7-12)% increased Area Damage", + }, + ["sortedStats"] = { + "area_damage_+%", + }, ["stats"] = { ["area_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1774, - }, - }, - }, - [10] = { - ["dn"] = "Projectile Damage", - ["id"] = "vaal_small_projectile_damage", - ["sd"] = { - [1] = "(7-12)% increased Projectile Damage", - }, - ["sortedStats"] = { - [1] = "projectile_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1774, + }, + }, + }, + { + ["dn"] = "Projectile Damage", + ["id"] = "vaal_small_projectile_damage", + ["sd"] = { + "(7-12)% increased Projectile Damage", + }, + ["sortedStats"] = { + "projectile_damage_+%", + }, ["stats"] = { ["projectile_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1738, - }, - }, - }, - [11] = { - ["dn"] = "Damage Over Time", - ["id"] = "vaal_small_damage_over_time", - ["sd"] = { - [1] = "(7-12)% increased Damage over Time", - }, - ["sortedStats"] = { - [1] = "damage_over_time_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1738, + }, + }, + }, + { + ["dn"] = "Damage Over Time", + ["id"] = "vaal_small_damage_over_time", + ["sd"] = { + "(7-12)% increased Damage over Time", + }, + ["sortedStats"] = { + "damage_over_time_+%", + }, ["stats"] = { ["damage_over_time_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1167, - }, - }, - }, - [12] = { - ["dn"] = "Area Of Effect", - ["id"] = "vaal_small_area_of_effect", - ["sd"] = { - [1] = "(4-7)% increased Area of Effect", - }, - ["sortedStats"] = { - [1] = "base_skill_area_of_effect_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1167, + }, + }, + }, + { + ["dn"] = "Area Of Effect", + ["id"] = "vaal_small_area_of_effect", + ["sd"] = { + "(4-7)% increased Area of Effect", + }, + ["sortedStats"] = { + "base_skill_area_of_effect_+%", + }, ["stats"] = { ["base_skill_area_of_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 7, - ["min"] = 4, - ["statOrder"] = 1630, - }, - }, - }, - [13] = { - ["dn"] = "Projectile Speed", - ["id"] = "vaal_small_projectile_speed", - ["sd"] = { - [1] = "(7-12)% increased Projectile Speed", - }, - ["sortedStats"] = { - [1] = "base_projectile_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1630, + }, + }, + }, + { + ["dn"] = "Projectile Speed", + ["id"] = "vaal_small_projectile_speed", + ["sd"] = { + "(7-12)% increased Projectile Speed", + }, + ["sortedStats"] = { + "base_projectile_speed_+%", + }, ["stats"] = { ["base_projectile_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 897, - }, - }, - }, - [14] = { - ["dn"] = "Critical Strike Chance", - ["id"] = "vaal_small_critical_strike_chance", - ["sd"] = { - [1] = "(7-14)% increased Critical Hit Chance", - }, - ["sortedStats"] = { - [1] = "critical_strike_chance_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 897, + }, + }, + }, + { + ["dn"] = "Critical Strike Chance", + ["id"] = "vaal_small_critical_strike_chance", + ["sd"] = { + "(7-14)% increased Critical Hit Chance", + }, + ["sortedStats"] = { + "critical_strike_chance_+%", + }, ["stats"] = { ["critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 7, - ["statOrder"] = 10791, - }, - }, - }, - [15] = { - ["dn"] = "Critical Strike Multiplier", - ["id"] = "vaal_small_critical_strike_multiplier", - ["sd"] = { - [1] = "(6-10)% increased Critical Damage Bonus", - }, - ["sortedStats"] = { - [1] = "base_critical_strike_multiplier_+", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 7, + ["statOrder"] = 10791, + }, + }, + }, + { + ["dn"] = "Critical Strike Multiplier", + ["id"] = "vaal_small_critical_strike_multiplier", + ["sd"] = { + "(6-10)% increased Critical Damage Bonus", + }, + ["sortedStats"] = { + "base_critical_strike_multiplier_+", + }, ["stats"] = { ["base_critical_strike_multiplier_+"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 980, - }, - }, - }, - [16] = { - ["dn"] = "Attack Speed", - ["id"] = "vaal_small_attack_speed", - ["sd"] = { - [1] = "(3-4)% increased Attack Speed", - }, - ["sortedStats"] = { - [1] = "attack_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 980, + }, + }, + }, + { + ["dn"] = "Attack Speed", + ["id"] = "vaal_small_attack_speed", + ["sd"] = { + "(3-4)% increased Attack Speed", + }, + ["sortedStats"] = { + "attack_speed_+%", + }, ["stats"] = { ["attack_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 3, - ["statOrder"] = 985, - }, - }, - }, - [17] = { - ["dn"] = "Cast Speed", - ["id"] = "vaal_small_cast_speed", - ["sd"] = { - [1] = "(2-3)% increased Cast Speed", - }, - ["sortedStats"] = { - [1] = "base_cast_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 985, + }, + }, + }, + { + ["dn"] = "Cast Speed", + ["id"] = "vaal_small_cast_speed", + ["sd"] = { + "(2-3)% increased Cast Speed", + }, + ["sortedStats"] = { + "base_cast_speed_+%", + }, ["stats"] = { ["base_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 2, - ["statOrder"] = 987, - }, - }, - }, - [18] = { - ["dn"] = "Movement Speed", - ["id"] = "vaal_small_movement_speed", - ["sd"] = { - [1] = "(2-3)% increased Movement Speed", - }, - ["sortedStats"] = { - [1] = "base_movement_velocity_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 987, + }, + }, + }, + { + ["dn"] = "Movement Speed", + ["id"] = "vaal_small_movement_speed", + ["sd"] = { + "(2-3)% increased Movement Speed", + }, + ["sortedStats"] = { + "base_movement_velocity_+%", + }, ["stats"] = { ["base_movement_velocity_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 2, - ["statOrder"] = 836, - }, - }, - }, - [19] = { - ["dn"] = "Chance To Ignite", - ["id"] = "vaal_small_chance_to_ignite", - ["sd"] = { - }, - ["sortedStats"] = { - [1] = "base_chance_to_ignite_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 836, + }, + }, + }, + { + ["dn"] = "Chance To Ignite", + ["id"] = "vaal_small_chance_to_ignite", + ["sd"] = { + }, + ["sortedStats"] = { + "base_chance_to_ignite_%", + }, ["stats"] = { ["base_chance_to_ignite_%"] = { - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 99999, - }, - }, - }, - [20] = { - ["dn"] = "Chance To Freeze", - ["id"] = "vaal_small_chance_to_freeze", - ["sd"] = { - [1] = "(3-6)% chance to Freeze", - }, - ["sortedStats"] = { - [1] = "base_chance_to_freeze_%", - }, + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 99999, + }, + }, + }, + { + ["dn"] = "Chance To Freeze", + ["id"] = "vaal_small_chance_to_freeze", + ["sd"] = { + "(3-6)% chance to Freeze", + }, + ["sortedStats"] = { + "base_chance_to_freeze_%", + }, ["stats"] = { ["base_chance_to_freeze_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 1056, - }, - }, - }, - [21] = { - ["dn"] = "Chance To Shock", - ["id"] = "vaal_small_chance_to_shock", - ["sd"] = { - [1] = "(3-6)% chance to Shock", - }, - ["sortedStats"] = { - [1] = "base_chance_to_shock_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 1056, + }, + }, + }, + { + ["dn"] = "Chance To Shock", + ["id"] = "vaal_small_chance_to_shock", + ["sd"] = { + "(3-6)% chance to Shock", + }, + ["sortedStats"] = { + "base_chance_to_shock_%", + }, ["stats"] = { ["base_chance_to_shock_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 1058, - }, - }, - }, - [22] = { - ["dn"] = "Duration", - ["id"] = "vaal_small_duration", - ["sd"] = { - [1] = "(4-7)% increased Skill Effect Duration", - }, - ["sortedStats"] = { - [1] = "skill_effect_duration_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 1058, + }, + }, + }, + { + ["dn"] = "Duration", + ["id"] = "vaal_small_duration", + ["sd"] = { + "(4-7)% increased Skill Effect Duration", + }, + ["sortedStats"] = { + "skill_effect_duration_+%", + }, ["stats"] = { ["skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 7, - ["min"] = 4, - ["statOrder"] = 1645, - }, - }, - }, - [23] = { - ["dn"] = "Life", - ["id"] = "vaal_small_life", - ["sd"] = { - [1] = "(2-4)% increased maximum Life", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1645, + }, + }, + }, + { + ["dn"] = "Life", + ["id"] = "vaal_small_life", + ["sd"] = { + "(2-4)% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + }, ["stats"] = { ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 889, - }, - }, - }, - [24] = { - ["dn"] = "Mana", - ["id"] = "vaal_small_mana", - ["sd"] = { - [1] = "(4-6)% increased maximum Mana", - }, - ["sortedStats"] = { - [1] = "maximum_mana_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 889, + }, + }, + }, + { + ["dn"] = "Mana", + ["id"] = "vaal_small_mana", + ["sd"] = { + "(4-6)% increased maximum Mana", + }, + ["sortedStats"] = { + "maximum_mana_+%", + }, ["stats"] = { ["maximum_mana_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 4, - ["statOrder"] = 894, - }, - }, - }, - [25] = { - ["dn"] = "Mana Regeneration", - ["id"] = "vaal_small_mana_regeneration", - ["sd"] = { - [1] = "(12-17)% increased Mana Regeneration Rate", - }, - ["sortedStats"] = { - [1] = "mana_regeneration_rate_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 894, + }, + }, + }, + { + ["dn"] = "Mana Regeneration", + ["id"] = "vaal_small_mana_regeneration", + ["sd"] = { + "(12-17)% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + "mana_regeneration_rate_+%", + }, ["stats"] = { ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 17, - ["min"] = 12, - ["statOrder"] = 1043, - }, - }, - }, - [26] = { - ["dn"] = "Armour", - ["id"] = "vaal_small_armour", - ["sd"] = { - [1] = "(7-12)% increased Armour", - }, - ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 17, + ["min"] = 12, + ["statOrder"] = 1043, + }, + }, + }, + { + ["dn"] = "Armour", + ["id"] = "vaal_small_armour", + ["sd"] = { + "(7-12)% increased Armour", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + }, ["stats"] = { ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 882, - }, - }, - }, - [27] = { - ["dn"] = "Evasion", - ["id"] = "vaal_small_evasion", - ["sd"] = { - [1] = "(7-12)% increased Evasion Rating", - }, - ["sortedStats"] = { - [1] = "evasion_rating_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 882, + }, + }, + }, + { + ["dn"] = "Evasion", + ["id"] = "vaal_small_evasion", + ["sd"] = { + "(7-12)% increased Evasion Rating", + }, + ["sortedStats"] = { + "evasion_rating_+%", + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 884, - }, - }, - }, - [28] = { - ["dn"] = "Energy Shield", - ["id"] = "vaal_small_energy_shield", - ["sd"] = { - [1] = "(3-5)% increased maximum Energy Shield", - }, - ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 884, + }, + }, + }, + { + ["dn"] = "Energy Shield", + ["id"] = "vaal_small_energy_shield", + ["sd"] = { + "(3-5)% increased maximum Energy Shield", + }, + ["sortedStats"] = { + "maximum_energy_shield_+%", + }, ["stats"] = { ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 3, - ["statOrder"] = 886, - }, - }, - }, - [29] = { - ["dn"] = "Attack Block", - ["id"] = "vaal_small_attack_block", - ["sd"] = { - [1] = "+1% to Block chance", - }, - ["sortedStats"] = { - [1] = "additional_block_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 886, + }, + }, + }, + { + ["dn"] = "Attack Block", + ["id"] = "vaal_small_attack_block", + ["sd"] = { + "+1% to Block chance", + }, + ["sortedStats"] = { + "additional_block_%", + }, ["stats"] = { ["additional_block_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1123, - }, - }, - }, - [30] = { - ["dn"] = "Spell Block", - ["id"] = "vaal_small_spell_block", - ["sd"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1123, + }, + }, + }, + { + ["dn"] = "Spell Block", + ["id"] = "vaal_small_spell_block", + ["sd"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [31] = { - ["dn"] = "Attack Dodge", - ["id"] = "vaal_small_attack_dodge", - ["sd"] = { - [1] = "3% chance to Avoid Elemental Ailments", - }, - ["sortedStats"] = { - [1] = "avoid_all_elemental_status_%", - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["dn"] = "Attack Dodge", + ["id"] = "vaal_small_attack_dodge", + ["sd"] = { + "3% chance to Avoid Elemental Ailments", + }, + ["sortedStats"] = { + "avoid_all_elemental_status_%", + }, ["stats"] = { ["avoid_all_elemental_status_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 1599, - }, - }, - }, - [32] = { - ["dn"] = "Spell Dodge", - ["id"] = "vaal_small_spell_dodge", - ["sd"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 1599, + }, + }, + }, + { + ["dn"] = "Spell Dodge", + ["id"] = "vaal_small_spell_dodge", + ["sd"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 99999, - }, - }, - }, - [33] = { - ["dn"] = "Aura Effect", - ["id"] = "vaal_small_aura_effect", - ["sd"] = { - [1] = "(2-4)% increased Magnitudes of Non-Curse Auras from your Skills", - }, - ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", - }, + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 99999, + }, + }, + }, + { + ["dn"] = "Aura Effect", + ["id"] = "vaal_small_aura_effect", + ["sd"] = { + "(2-4)% increased Magnitudes of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + "non_curse_aura_effect_+%", + }, ["stats"] = { ["non_curse_aura_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 3251, - }, - }, - }, - [34] = { - ["dn"] = "Curse Effect", - ["id"] = "vaal_small_curse_effect", - ["sd"] = { - [1] = "2% increased Curse Magnitudes", - }, - ["sortedStats"] = { - [1] = "curse_effect_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3251, + }, + }, + }, + { + ["dn"] = "Curse Effect", + ["id"] = "vaal_small_curse_effect", + ["sd"] = { + "2% increased Curse Magnitudes", + }, + ["sortedStats"] = { + "curse_effect_+%", + }, ["stats"] = { ["curse_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 2376, - }, - }, - }, - [35] = { - ["dn"] = "Fire Resistance", - ["id"] = "vaal_small_fire_resistance", - ["sd"] = { - [1] = "+(9-14)% to Fire Resistance", - }, - ["sortedStats"] = { - [1] = "base_fire_damage_resistance_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2376, + }, + }, + }, + { + ["dn"] = "Fire Resistance", + ["id"] = "vaal_small_fire_resistance", + ["sd"] = { + "+(9-14)% to Fire Resistance", + }, + ["sortedStats"] = { + "base_fire_damage_resistance_%", + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1014, - }, - }, - }, - [36] = { - ["dn"] = "Cold Resistance", - ["id"] = "vaal_small_cold_resistance", - ["sd"] = { - [1] = "+(9-14)% to Cold Resistance", - }, - ["sortedStats"] = { - [1] = "base_cold_damage_resistance_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1014, + }, + }, + }, + { + ["dn"] = "Cold Resistance", + ["id"] = "vaal_small_cold_resistance", + ["sd"] = { + "+(9-14)% to Cold Resistance", + }, + ["sortedStats"] = { + "base_cold_damage_resistance_%", + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1020, - }, - }, - }, - [37] = { - ["dn"] = "Lightning Resistance", - ["id"] = "vaal_small_lightning_resistance", - ["sd"] = { - [1] = "+(9-14)% to Lightning Resistance", - }, - ["sortedStats"] = { - [1] = "base_lightning_damage_resistance_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1020, + }, + }, + }, + { + ["dn"] = "Lightning Resistance", + ["id"] = "vaal_small_lightning_resistance", + ["sd"] = { + "+(9-14)% to Lightning Resistance", + }, + ["sortedStats"] = { + "base_lightning_damage_resistance_%", + }, ["stats"] = { ["base_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1023, - }, - }, - }, - [38] = { - ["dn"] = "Chaos Resistance", - ["id"] = "vaal_small_chaos_resistance", - ["sd"] = { - [1] = "+(6-10)% to Chaos Resistance", - }, - ["sortedStats"] = { - [1] = "base_chaos_damage_resistance_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1023, + }, + }, + }, + { + ["dn"] = "Chaos Resistance", + ["id"] = "vaal_small_chaos_resistance", + ["sd"] = { + "+(6-10)% to Chaos Resistance", + }, + ["sortedStats"] = { + "base_chaos_damage_resistance_%", + }, ["stats"] = { ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1024, - }, - }, - }, - [39] = { - ["dn"] = "Strength", - ["id"] = "karui_attribute_strength", - ["sd"] = { - [1] = "+2 to Strength", - }, - ["sortedStats"] = { - [1] = "base_strength", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1024, + }, + }, + }, + { + ["dn"] = "Strength", + ["id"] = "karui_attribute_strength", + ["sd"] = { + "+2 to Strength", + }, + ["sortedStats"] = { + "base_strength", + }, ["stats"] = { ["base_strength"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 10762, - }, - }, - }, - [40] = { - ["dn"] = "Strength", - ["id"] = "karui_small_strength", - ["sd"] = { - [1] = "+4 to Strength", - }, - ["sortedStats"] = { - [1] = "base_strength", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10762, + }, + }, + }, + { + ["dn"] = "Strength", + ["id"] = "karui_small_strength", + ["sd"] = { + "+4 to Strength", + }, + ["sortedStats"] = { + "base_strength", + }, ["stats"] = { ["base_strength"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 10762, - }, - }, - }, - [41] = { - ["dn"] = "Add Strength", - ["id"] = "karui_notable_add_strength", - ["sd"] = { - [1] = "+20 to Strength", - }, - ["sortedStats"] = { - [1] = "base_strength", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 10762, + }, + }, + }, + { + ["dn"] = "Add Strength", + ["id"] = "karui_notable_add_strength", + ["sd"] = { + "+20 to Strength", + }, + ["sortedStats"] = { + "base_strength", + }, ["stats"] = { ["base_strength"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10762, - }, - }, - }, - [42] = { - ["dn"] = "Add Percent Strength", - ["id"] = "karui_notable_add_percent_strength", - ["sd"] = { - [1] = "5% increased Strength", - }, - ["sortedStats"] = { - [1] = "strength_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10762, + }, + }, + }, + { + ["dn"] = "Add Percent Strength", + ["id"] = "karui_notable_add_percent_strength", + ["sd"] = { + "5% increased Strength", + }, + ["sortedStats"] = { + "strength_+%", + }, ["stats"] = { ["strength_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10763, - }, - }, - }, - [43] = { - ["dn"] = "Add Armour", - ["id"] = "karui_notable_add_armour", - ["sd"] = { - [1] = "20% increased Armour", - }, - ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10763, + }, + }, + }, + { + ["dn"] = "Add Armour", + ["id"] = "karui_notable_add_armour", + ["sd"] = { + "20% increased Armour", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + }, ["stats"] = { ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 882, - }, - }, - }, - [44] = { - ["dn"] = "Add Leech", - ["id"] = "karui_notable_add_leech", - ["sd"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 882, + }, + }, + }, + { + ["dn"] = "Add Leech", + ["id"] = "karui_notable_add_leech", + ["sd"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 99999, - }, - }, - }, - [45] = { - ["dn"] = "Add Double Damage", - ["id"] = "karui_notable_add_double_damage", - ["sd"] = { - [1] = "5% chance to deal Double Damage", - }, - ["sortedStats"] = { - [1] = "chance_to_deal_double_damage_%", - }, + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 99999, + }, + }, + }, + { + ["dn"] = "Add Double Damage", + ["id"] = "karui_notable_add_double_damage", + ["sd"] = { + "5% chance to deal Double Damage", + }, + ["sortedStats"] = { + "chance_to_deal_double_damage_%", + }, ["stats"] = { ["chance_to_deal_double_damage_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 5500, - }, - }, - }, - [46] = { - ["dn"] = "Add Life", - ["id"] = "karui_notable_add_life", - ["sd"] = { - [1] = "4% increased maximum Life", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 5500, + }, + }, + }, + { + ["dn"] = "Add Life", + ["id"] = "karui_notable_add_life", + ["sd"] = { + "4% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + }, ["stats"] = { ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 889, - }, - }, - }, - [47] = { - ["dn"] = "Add Fortify Effect", - ["id"] = "karui_notable_add_fortify_effect", - ["sd"] = { - [1] = "+1 to maximum Fortification", - }, - ["sortedStats"] = { - [1] = "base_max_fortification", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 889, + }, + }, + }, + { + ["dn"] = "Add Fortify Effect", + ["id"] = "karui_notable_add_fortify_effect", + ["sd"] = { + "+1 to maximum Fortification", + }, + ["sortedStats"] = { + "base_max_fortification", + }, ["stats"] = { ["base_max_fortification"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 4725, - }, - }, - }, - [48] = { - ["dn"] = "Add Life Regen", - ["id"] = "karui_notable_add_life_regen", - ["sd"] = { - [1] = "Regenerate 1% of maximum Life per second", - }, - ["sortedStats"] = { - [1] = "life_regeneration_rate_per_minute_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4725, + }, + }, + }, + { + ["dn"] = "Add Life Regen", + ["id"] = "karui_notable_add_life_regen", + ["sd"] = { + "Regenerate 1% of maximum Life per second", + }, + ["sortedStats"] = { + "life_regeneration_rate_per_minute_%", + }, ["stats"] = { ["life_regeneration_rate_per_minute_%"] = { - ["fmt"] = "g", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1691, - }, - }, - }, - [49] = { - ["dn"] = "Add Fire Resistance", - ["id"] = "karui_notable_add_fire_resistance", - ["sd"] = { - [1] = "+20% to Fire Resistance", - }, - ["sortedStats"] = { - [1] = "base_fire_damage_resistance_%", - }, + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1691, + }, + }, + }, + { + ["dn"] = "Add Fire Resistance", + ["id"] = "karui_notable_add_fire_resistance", + ["sd"] = { + "+20% to Fire Resistance", + }, + ["sortedStats"] = { + "base_fire_damage_resistance_%", + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1014, - }, - }, - }, - [50] = { - ["dn"] = "Add Melee Damage", - ["id"] = "karui_notable_add_melee_damage", - ["sd"] = { - [1] = "20% increased Melee Damage", - }, - ["sortedStats"] = { - [1] = "melee_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1014, + }, + }, + }, + { + ["dn"] = "Add Melee Damage", + ["id"] = "karui_notable_add_melee_damage", + ["sd"] = { + "20% increased Melee Damage", + }, + ["sortedStats"] = { + "melee_damage_+%", + }, ["stats"] = { ["melee_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1187, - }, - }, - }, - [51] = { - ["dn"] = "Add Damage From Crits", - ["id"] = "karui_notable_add_damage_from_crits", - ["sd"] = { - [1] = "Hits against you have 10% reduced Critical Damage Bonus", - }, - ["sortedStats"] = { - [1] = "base_self_critical_strike_multiplier_-%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1187, + }, + }, + }, + { + ["dn"] = "Add Damage From Crits", + ["id"] = "karui_notable_add_damage_from_crits", + ["sd"] = { + "Hits against you have 10% reduced Critical Damage Bonus", + }, + ["sortedStats"] = { + "base_self_critical_strike_multiplier_-%", + }, ["stats"] = { ["base_self_critical_strike_multiplier_-%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1005, - }, - }, - }, - [52] = { - ["dn"] = "Add Melee Crit Chance", - ["id"] = "karui_notable_add_melee_crit_chance", - ["sd"] = { - [1] = "30% increased Melee Critical Hit Chance", - }, - ["sortedStats"] = { - [1] = "melee_critical_strike_chance_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1005, + }, + }, + }, + { + ["dn"] = "Add Melee Crit Chance", + ["id"] = "karui_notable_add_melee_crit_chance", + ["sd"] = { + "30% increased Melee Critical Hit Chance", + }, + ["sortedStats"] = { + "melee_critical_strike_chance_+%", + }, ["stats"] = { ["melee_critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1375, - }, - }, - }, - [53] = { - ["dn"] = "Add Burning Damage", - ["id"] = "karui_notable_add_burning_damage", - ["sd"] = { - [1] = "20% increased Burning Damage", - }, - ["sortedStats"] = { - [1] = "burn_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1375, + }, + }, + }, + { + ["dn"] = "Add Burning Damage", + ["id"] = "karui_notable_add_burning_damage", + ["sd"] = { + "20% increased Burning Damage", + }, + ["sortedStats"] = { + "burn_damage_+%", + }, ["stats"] = { ["burn_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1627, - }, - }, - }, - [54] = { - ["dn"] = "Add Totem Damage", - ["id"] = "karui_notable_add_totem_damage", - ["sd"] = { - [1] = "20% increased Totem Damage", - }, - ["sortedStats"] = { - [1] = "totem_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1627, + }, + }, + }, + { + ["dn"] = "Add Totem Damage", + ["id"] = "karui_notable_add_totem_damage", + ["sd"] = { + "20% increased Totem Damage", + }, + ["sortedStats"] = { + "totem_damage_+%", + }, ["stats"] = { ["totem_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1152, - }, - }, - }, - [55] = { - ["dn"] = "Add Melee Crit Multi", - ["id"] = "karui_notable_add_melee_crit_multi", - ["sd"] = { - [1] = "+15% to Melee Critical Damage Bonus", - }, - ["sortedStats"] = { - [1] = "melee_weapon_critical_strike_multiplier_+", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1152, + }, + }, + }, + { + ["dn"] = "Add Melee Crit Multi", + ["id"] = "karui_notable_add_melee_crit_multi", + ["sd"] = { + "+15% to Melee Critical Damage Bonus", + }, + ["sortedStats"] = { + "melee_weapon_critical_strike_multiplier_+", + }, ["stats"] = { ["melee_weapon_critical_strike_multiplier_+"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1395, - }, - }, - }, - [56] = { - ["dn"] = "Add Physical Damage", - ["id"] = "karui_notable_add_physical_damage", - ["sd"] = { - [1] = "20% increased Physical Damage", - }, - ["sortedStats"] = { - [1] = "physical_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1395, + }, + }, + }, + { + ["dn"] = "Add Physical Damage", + ["id"] = "karui_notable_add_physical_damage", + ["sd"] = { + "20% increased Physical Damage", + }, + ["sortedStats"] = { + "physical_damage_+%", + }, ["stats"] = { ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10898, - }, - }, - }, - [57] = { - ["dn"] = "Add Warcry Buff Effect", - ["id"] = "karui_notable_add_warcry_buff_effect", - ["sd"] = { - [1] = "8% increased Warcry Buff Effect", - }, - ["sortedStats"] = { - [1] = "warcry_buff_effect_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10898, + }, + }, + }, + { + ["dn"] = "Add Warcry Buff Effect", + ["id"] = "karui_notable_add_warcry_buff_effect", + ["sd"] = { + "8% increased Warcry Buff Effect", + }, + ["sortedStats"] = { + "warcry_buff_effect_+%", + }, ["stats"] = { ["warcry_buff_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 10506, - }, - }, - }, - [58] = { - ["dn"] = "Add Totem Placement Speed", - ["id"] = "karui_notable_add_totem_placement_speed", - ["sd"] = { - [1] = "12% increased Totem Placement speed", - }, - ["sortedStats"] = { - [1] = "summon_totem_cast_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 10506, + }, + }, + }, + { + ["dn"] = "Add Totem Placement Speed", + ["id"] = "karui_notable_add_totem_placement_speed", + ["sd"] = { + "12% increased Totem Placement speed", + }, + ["sortedStats"] = { + "summon_totem_cast_speed_+%", + }, ["stats"] = { ["summon_totem_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 2360, - }, - }, - }, - [59] = { - ["dn"] = "Add Stun Duration", - ["id"] = "karui_notable_add_stun_duration", - ["sd"] = { - [1] = "20% increased Stun Duration on Enemies", - }, - ["sortedStats"] = { - [1] = "base_stun_duration_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 2360, + }, + }, + }, + { + ["dn"] = "Add Stun Duration", + ["id"] = "karui_notable_add_stun_duration", + ["sd"] = { + "20% increased Stun Duration on Enemies", + }, + ["sortedStats"] = { + "base_stun_duration_+%", + }, ["stats"] = { ["base_stun_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1053, - }, - }, - }, - [60] = { - ["dn"] = "Add Faster Ignite", - ["id"] = "karui_notable_add_faster_ignite", - ["sd"] = { - [1] = "Ignites you inflict deal Damage 10% faster", - }, - ["sortedStats"] = { - [1] = "faster_burn_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1053, + }, + }, + }, + { + ["dn"] = "Add Faster Ignite", + ["id"] = "karui_notable_add_faster_ignite", + ["sd"] = { + "Ignites you inflict deal Damage 10% faster", + }, + ["sortedStats"] = { + "faster_burn_%", + }, ["stats"] = { ["faster_burn_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2346, - }, - }, - }, - [61] = { - ["dn"] = "Add Reduced Stun Threshold", - ["id"] = "karui_notable_add_reduced_stun_threshold", - ["sd"] = { - [1] = "10% reduced Enemy Stun Threshold", - }, - ["sortedStats"] = { - [1] = "base_stun_threshold_reduction_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2346, + }, + }, + }, + { + ["dn"] = "Add Reduced Stun Threshold", + ["id"] = "karui_notable_add_reduced_stun_threshold", + ["sd"] = { + "10% reduced Enemy Stun Threshold", + }, + ["sortedStats"] = { + "base_stun_threshold_reduction_+%", + }, ["stats"] = { ["base_stun_threshold_reduction_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1050, - }, - }, - }, - [62] = { - ["dn"] = "Add Physical Added As Fire", - ["id"] = "karui_notable_add_physical_added_as_fire", - ["sd"] = { - [1] = "Gain 5% of Physical Damage as Extra Fire Damage", - }, - ["sortedStats"] = { - [1] = "non_skill_base_physical_damage_%_to_gain_as_fire", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1050, + }, + }, + }, + { + ["dn"] = "Add Physical Added As Fire", + ["id"] = "karui_notable_add_physical_added_as_fire", + ["sd"] = { + "Gain 5% of Physical Damage as Extra Fire Damage", + }, + ["sortedStats"] = { + "non_skill_base_physical_damage_%_to_gain_as_fire", + }, ["stats"] = { ["non_skill_base_physical_damage_%_to_gain_as_fire"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1674, - }, - }, - }, - [63] = { - ["dn"] = "Add Rage On Melee Hit", - ["id"] = "karui_notable_add_rage_on_melee_hit", - ["sd"] = { - [1] = "5% of Physical Damage from Hits taken as Fire Damage", - }, - ["sortedStats"] = { - [1] = "physical_damage_taken_%_as_fire", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1674, + }, + }, + }, + { + ["dn"] = "Add Rage On Melee Hit", + ["id"] = "karui_notable_add_rage_on_melee_hit", + ["sd"] = { + "5% of Physical Damage from Hits taken as Fire Damage", + }, + ["sortedStats"] = { + "physical_damage_taken_%_as_fire", + }, ["stats"] = { ["physical_damage_taken_%_as_fire"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 2197, - }, - }, - }, - [64] = { - ["dn"] = "Add Endurance Charge On Kill", - ["id"] = "karui_notable_add_endurance_charge_on_kill", - ["sd"] = { - [1] = "5% chance to gain an Endurance Charge on kill", - }, - ["sortedStats"] = { - [1] = "endurance_charge_on_kill_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 2197, + }, + }, + }, + { + ["dn"] = "Add Endurance Charge On Kill", + ["id"] = "karui_notable_add_endurance_charge_on_kill", + ["sd"] = { + "5% chance to gain an Endurance Charge on kill", + }, + ["sortedStats"] = { + "endurance_charge_on_kill_%", + }, ["stats"] = { ["endurance_charge_on_kill_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 2403, - }, - }, - }, - [65] = { - ["dn"] = "Add Intimidate", - ["id"] = "karui_notable_add_intimidate", - ["sd"] = { - [1] = "10% chance to Intimidate Enemies for 4 seconds on Hit", - }, - ["sortedStats"] = { - [1] = "chance_to_intimidate_on_hit_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 2403, + }, + }, + }, + { + ["dn"] = "Add Intimidate", + ["id"] = "karui_notable_add_intimidate", + ["sd"] = { + "10% chance to Intimidate Enemies for 4 seconds on Hit", + }, + ["sortedStats"] = { + "chance_to_intimidate_on_hit_%", + }, ["stats"] = { ["chance_to_intimidate_on_hit_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 5559, - }, - }, - }, - [66] = { - ["dn"] = "Dex", - ["id"] = "maraketh_attribute_dex", - ["sd"] = { - [1] = "+2 to Dexterity", - }, - ["sortedStats"] = { - [1] = "base_dexterity", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5559, + }, + }, + }, + { + ["dn"] = "Dex", + ["id"] = "maraketh_attribute_dex", + ["sd"] = { + "+2 to Dexterity", + }, + ["sortedStats"] = { + "base_dexterity", + }, ["stats"] = { ["base_dexterity"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 10764, - }, - }, - }, - [67] = { - ["dn"] = "Dex", - ["id"] = "maraketh_small_dex", - ["sd"] = { - [1] = "+4 to Dexterity", - }, - ["sortedStats"] = { - [1] = "base_dexterity", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10764, + }, + }, + }, + { + ["dn"] = "Dex", + ["id"] = "maraketh_small_dex", + ["sd"] = { + "+4 to Dexterity", + }, + ["sortedStats"] = { + "base_dexterity", + }, ["stats"] = { ["base_dexterity"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 10764, - }, - }, - }, - [68] = { - ["dn"] = "Add Dexterity", - ["id"] = "maraketh_notable_add_dexterity", - ["sd"] = { - [1] = "+20 to Dexterity", - }, - ["sortedStats"] = { - [1] = "base_dexterity", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 10764, + }, + }, + }, + { + ["dn"] = "Add Dexterity", + ["id"] = "maraketh_notable_add_dexterity", + ["sd"] = { + "+20 to Dexterity", + }, + ["sortedStats"] = { + "base_dexterity", + }, ["stats"] = { ["base_dexterity"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10764, - }, - }, - }, - [69] = { - ["dn"] = "Add Percent Dexterity", - ["id"] = "maraketh_notable_add_percent_dexterity", - ["sd"] = { - [1] = "5% increased Dexterity", - }, - ["sortedStats"] = { - [1] = "dexterity_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10764, + }, + }, + }, + { + ["dn"] = "Add Percent Dexterity", + ["id"] = "maraketh_notable_add_percent_dexterity", + ["sd"] = { + "5% increased Dexterity", + }, + ["sortedStats"] = { + "dexterity_+%", + }, ["stats"] = { ["dexterity_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10765, - }, - }, - }, - [70] = { - ["dn"] = "Add Evasion", - ["id"] = "maraketh_notable_add_evasion", - ["sd"] = { - [1] = "20% increased Evasion Rating", - }, - ["sortedStats"] = { - [1] = "evasion_rating_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10765, + }, + }, + }, + { + ["dn"] = "Add Evasion", + ["id"] = "maraketh_notable_add_evasion", + ["sd"] = { + "20% increased Evasion Rating", + }, + ["sortedStats"] = { + "evasion_rating_+%", + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 884, - }, - }, - }, - [71] = { - ["dn"] = "Add Flask Charges", - ["id"] = "maraketh_notable_add_flask_charges", - ["sd"] = { - [1] = "10% increased Flask and Charm Charges gained", - }, - ["sortedStats"] = { - [1] = "charges_gained_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 884, + }, + }, + }, + { + ["dn"] = "Add Flask Charges", + ["id"] = "maraketh_notable_add_flask_charges", + ["sd"] = { + "10% increased Flask and Charm Charges gained", + }, + ["sortedStats"] = { + "charges_gained_+%", + }, ["stats"] = { ["charges_gained_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1048, - }, - }, - }, - [72] = { - ["dn"] = "Add Speed", - ["id"] = "maraketh_notable_add_speed", - ["sd"] = { - [1] = "5% increased Attack and Cast Speed", - }, - ["sortedStats"] = { - [1] = "attack_and_cast_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1048, + }, + }, + }, + { + ["dn"] = "Add Speed", + ["id"] = "maraketh_notable_add_speed", + ["sd"] = { + "5% increased Attack and Cast Speed", + }, + ["sortedStats"] = { + "attack_and_cast_speed_+%", + }, ["stats"] = { ["attack_and_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1781, - }, - }, - }, - [73] = { - ["dn"] = "Add Life", - ["id"] = "maraketh_notable_add_life", - ["sd"] = { - [1] = "4% increased maximum Life", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1781, + }, + }, + }, + { + ["dn"] = "Add Life", + ["id"] = "maraketh_notable_add_life", + ["sd"] = { + "4% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + }, ["stats"] = { ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 889, - }, - }, - }, - [74] = { - ["dn"] = "Add Blind", - ["id"] = "maraketh_notable_add_blind", - ["sd"] = { - [1] = "5% chance to Blind Enemies on Hit", - }, - ["sortedStats"] = { - [1] = "global_chance_to_blind_on_hit_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 889, + }, + }, + }, + { + ["dn"] = "Add Blind", + ["id"] = "maraketh_notable_add_blind", + ["sd"] = { + "5% chance to Blind Enemies on Hit", + }, + ["sortedStats"] = { + "global_chance_to_blind_on_hit_%", + }, ["stats"] = { ["global_chance_to_blind_on_hit_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10800, - }, - }, - }, - [75] = { - ["dn"] = "Add Movement Speed", - ["id"] = "maraketh_notable_add_movement_speed", - ["sd"] = { - [1] = "5% increased Movement Speed", - }, - ["sortedStats"] = { - [1] = "base_movement_velocity_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10800, + }, + }, + }, + { + ["dn"] = "Add Movement Speed", + ["id"] = "maraketh_notable_add_movement_speed", + ["sd"] = { + "5% increased Movement Speed", + }, + ["sortedStats"] = { + "base_movement_velocity_+%", + }, ["stats"] = { ["base_movement_velocity_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 836, - }, - }, - }, - [76] = { - ["dn"] = "Add Cold Resistance", - ["id"] = "maraketh_notable_add_cold_resistance", - ["sd"] = { - [1] = "+20% to Cold Resistance", - }, - ["sortedStats"] = { - [1] = "base_cold_damage_resistance_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 836, + }, + }, + }, + { + ["dn"] = "Add Cold Resistance", + ["id"] = "maraketh_notable_add_cold_resistance", + ["sd"] = { + "+20% to Cold Resistance", + }, + ["sortedStats"] = { + "base_cold_damage_resistance_%", + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1020, - }, - }, - }, - [77] = { - ["dn"] = "Add Projectile Damage", - ["id"] = "maraketh_notable_add_projectile_damage", - ["sd"] = { - [1] = "20% increased Projectile Damage", - }, - ["sortedStats"] = { - [1] = "projectile_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1020, + }, + }, + }, + { + ["dn"] = "Add Projectile Damage", + ["id"] = "maraketh_notable_add_projectile_damage", + ["sd"] = { + "20% increased Projectile Damage", + }, + ["sortedStats"] = { + "projectile_damage_+%", + }, ["stats"] = { ["projectile_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1738, - }, - }, - }, - [78] = { - ["dn"] = "Add Stun Avoid", - ["id"] = "maraketh_notable_add_stun_avoid", - ["sd"] = { - [1] = "20% chance to Avoid being Stunned", - }, - ["sortedStats"] = { - [1] = "base_avoid_stun_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1738, + }, + }, + }, + { + ["dn"] = "Add Stun Avoid", + ["id"] = "maraketh_notable_add_stun_avoid", + ["sd"] = { + "20% chance to Avoid being Stunned", + }, + ["sortedStats"] = { + "base_avoid_stun_%", + }, ["stats"] = { ["base_avoid_stun_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1607, - }, - }, - }, - [79] = { - ["dn"] = "Add Global Crit Chance", - ["id"] = "maraketh_notable_add_global_crit_chance", - ["sd"] = { - [1] = "25% increased Critical Hit Chance", - }, - ["sortedStats"] = { - [1] = "critical_strike_chance_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1607, + }, + }, + }, + { + ["dn"] = "Add Global Crit Chance", + ["id"] = "maraketh_notable_add_global_crit_chance", + ["sd"] = { + "25% increased Critical Hit Chance", + }, + ["sortedStats"] = { + "critical_strike_chance_+%", + }, ["stats"] = { ["critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 10791, - }, - }, - }, - [80] = { - ["dn"] = "Add Poison Damage", - ["id"] = "maraketh_notable_add_poison_damage", - ["sd"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 10791, + }, + }, + }, + { + ["dn"] = "Add Poison Damage", + ["id"] = "maraketh_notable_add_poison_damage", + ["sd"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, - }, - }, - [81] = { - ["dn"] = "Add Minion Damage", - ["id"] = "maraketh_notable_add_minion_damage", - ["sd"] = { - [1] = "Minions deal 20% increased Damage", - }, - ["sortedStats"] = { - [1] = "minion_damage_+%", - }, + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, + }, + }, + { + ["dn"] = "Add Minion Damage", + ["id"] = "maraketh_notable_add_minion_damage", + ["sd"] = { + "Minions deal 20% increased Damage", + }, + ["sortedStats"] = { + "minion_damage_+%", + }, ["stats"] = { ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1720, - }, - }, - }, - [82] = { - ["dn"] = "Add Accuracy", - ["id"] = "maraketh_notable_add_accuracy", - ["sd"] = { - [1] = "5% increased Accuracy Rating", - }, - ["sortedStats"] = { - [1] = "accuracy_rating_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1720, + }, + }, + }, + { + ["dn"] = "Add Accuracy", + ["id"] = "maraketh_notable_add_accuracy", + ["sd"] = { + "5% increased Accuracy Rating", + }, + ["sortedStats"] = { + "accuracy_rating_+%", + }, ["stats"] = { ["accuracy_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1332, - }, - }, - }, - [83] = { - ["dn"] = "Add Elemental Damage", - ["id"] = "maraketh_notable_add_elemental_damage", - ["sd"] = { - [1] = "20% increased Elemental Damage", - }, - ["sortedStats"] = { - [1] = "elemental_damage_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1332, + }, + }, + }, + { + ["dn"] = "Add Elemental Damage", + ["id"] = "maraketh_notable_add_elemental_damage", + ["sd"] = { + "20% increased Elemental Damage", + }, + ["sortedStats"] = { + "elemental_damage_+%", + }, ["stats"] = { ["elemental_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1726, - }, - }, - }, - [84] = { - ["dn"] = "Add Aura Effect", - ["id"] = "maraketh_notable_add_aura_effect", - ["sd"] = { - [1] = "8% increased Magnitudes of Non-Curse Auras from your Skills", - }, - ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1726, + }, + }, + }, + { + ["dn"] = "Add Aura Effect", + ["id"] = "maraketh_notable_add_aura_effect", + ["sd"] = { + "8% increased Magnitudes of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + "non_curse_aura_effect_+%", + }, ["stats"] = { ["non_curse_aura_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 3251, - }, - }, - }, - [85] = { - ["dn"] = "Add Minion Movement Speed", - ["id"] = "maraketh_notable_add_minion_movement_speed", - ["sd"] = { - [1] = "Minions have 15% increased Movement Speed", - }, - ["sortedStats"] = { - [1] = "minion_movement_speed_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 3251, + }, + }, + }, + { + ["dn"] = "Add Minion Movement Speed", + ["id"] = "maraketh_notable_add_minion_movement_speed", + ["sd"] = { + "Minions have 15% increased Movement Speed", + }, + ["sortedStats"] = { + "minion_movement_speed_+%", + }, ["stats"] = { ["minion_movement_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1528, - }, - }, - }, - [86] = { - ["dn"] = "Add Ailment Duration", - ["id"] = "maraketh_notable_add_ailment_duration", - ["sd"] = { - [1] = "10% increased Duration of Elemental Ailments on Enemies", - }, - ["sortedStats"] = { - [1] = "base_elemental_status_ailment_duration_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1528, + }, + }, + }, + { + ["dn"] = "Add Ailment Duration", + ["id"] = "maraketh_notable_add_ailment_duration", + ["sd"] = { + "10% increased Duration of Elemental Ailments on Enemies", + }, + ["sortedStats"] = { + "base_elemental_status_ailment_duration_+%", + }, ["stats"] = { ["base_elemental_status_ailment_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1617, - }, - }, - }, - [87] = { - ["dn"] = "Add Faster Poison", - ["id"] = "maraketh_notable_add_faster_poison", - ["sd"] = { - [1] = "Poisons you inflict deal Damage 10% faster", - }, - ["sortedStats"] = { - [1] = "faster_poison_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1617, + }, + }, + }, + { + ["dn"] = "Add Faster Poison", + ["id"] = "maraketh_notable_add_faster_poison", + ["sd"] = { + "Poisons you inflict deal Damage 10% faster", + }, + ["sortedStats"] = { + "faster_poison_%", + }, ["stats"] = { ["faster_poison_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6551, - }, - }, - }, - [88] = { - ["dn"] = "Add Ailment Effect", - ["id"] = "maraketh_notable_add_ailment_effect", - ["sd"] = { - [1] = "10% increased Magnitude of Non-Damaging Ailments you inflict", - }, - ["sortedStats"] = { - [1] = "non_damaging_ailment_effect_+%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6551, + }, + }, + }, + { + ["dn"] = "Add Ailment Effect", + ["id"] = "maraketh_notable_add_ailment_effect", + ["sd"] = { + "10% increased Magnitude of Non-Damaging Ailments you inflict", + }, + ["sortedStats"] = { + "non_damaging_ailment_effect_+%", + }, ["stats"] = { ["non_damaging_ailment_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 9224, - }, - }, - }, - [89] = { - ["dn"] = "Add Physical Added As Cold", - ["id"] = "maraketh_notable_add_physical_added_as_cold", - ["sd"] = { - [1] = "Gain 5% of Physical Damage as Extra Cold Damage", - }, - ["sortedStats"] = { - [1] = "non_skill_base_physical_damage_%_to_gain_as_cold", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9224, + }, + }, + }, + { + ["dn"] = "Add Physical Added As Cold", + ["id"] = "maraketh_notable_add_physical_added_as_cold", + ["sd"] = { + "Gain 5% of Physical Damage as Extra Cold Damage", + }, + ["sortedStats"] = { + "non_skill_base_physical_damage_%_to_gain_as_cold", + }, ["stats"] = { ["non_skill_base_physical_damage_%_to_gain_as_cold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1675, - }, - }, - }, - [90] = { - ["dn"] = "Add Alchemists Genius", - ["id"] = "maraketh_notable_add_alchemists_genius", - ["sd"] = { - [1] = "25% chance to gain Alchemist's Genius when you use a Flask", - }, - ["sortedStats"] = { - [1] = "gain_alchemists_genius_on_flask_use_%", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1675, + }, + }, + }, + { + ["dn"] = "Add Alchemists Genius", + ["id"] = "maraketh_notable_add_alchemists_genius", + ["sd"] = { + "25% chance to gain Alchemist's Genius when you use a Flask", + }, + ["sortedStats"] = { + "gain_alchemists_genius_on_flask_use_%", + }, ["stats"] = { ["gain_alchemists_genius_on_flask_use_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 6742, - }, - }, - }, - [91] = { - ["dn"] = "Add Frenzy Charge On Kill", - ["id"] = "maraketh_notable_add_frenzy_charge_on_kill", - ["sd"] = { - [1] = "5% chance to gain a Frenzy Charge on kill", - }, - ["sortedStats"] = { - [1] = "add_frenzy_charge_on_kill_%_chance", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 6742, + }, + }, + }, + { + ["dn"] = "Add Frenzy Charge On Kill", + ["id"] = "maraketh_notable_add_frenzy_charge_on_kill", + ["sd"] = { + "5% chance to gain a Frenzy Charge on kill", + }, + ["sortedStats"] = { + "add_frenzy_charge_on_kill_%_chance", + }, ["stats"] = { ["add_frenzy_charge_on_kill_%_chance"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 2405, - }, - }, - }, - [92] = { - ["dn"] = "Add Onslaught", - ["id"] = "maraketh_notable_add_onslaught", - ["sd"] = { - [1] = "You gain Onslaught for 8 seconds on Kill", - }, - ["sortedStats"] = { - [1] = "onslaught_buff_duration_on_kill_ms", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 2405, + }, + }, + }, + { + ["dn"] = "Add Onslaught", + ["id"] = "maraketh_notable_add_onslaught", + ["sd"] = { + "You gain Onslaught for 8 seconds on Kill", + }, + ["sortedStats"] = { + "onslaught_buff_duration_on_kill_ms", + }, ["stats"] = { ["onslaught_buff_duration_on_kill_ms"] = { - ["fmt"] = "g", - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 2417, - }, - }, - }, - [93] = { - ["dn"] = "Devotion", - ["id"] = "templar_small_devotion", - ["sd"] = { - [1] = "+5 to Devotion", - }, - ["sortedStats"] = { - [1] = "base_devotion", - }, + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 2417, + }, + }, + }, + { + ["dn"] = "Devotion", + ["id"] = "templar_small_devotion", + ["sd"] = { + "+5 to Devotion", + }, + ["sortedStats"] = { + "base_devotion", + }, ["stats"] = { ["base_devotion"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10759, - }, - }, - }, - [94] = { - ["dn"] = "Devotion", - ["id"] = "templar_notable_devotion", - ["sd"] = { - [1] = "+5 to Devotion", - }, - ["sortedStats"] = { - [1] = "base_devotion", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10759, + }, + }, + }, + { + ["dn"] = "Devotion", + ["id"] = "templar_notable_devotion", + ["sd"] = { + "+5 to Devotion", + }, + ["sortedStats"] = { + "base_devotion", + }, ["stats"] = { ["base_devotion"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10759, - }, - }, - }, - [95] = { - ["dn"] = "Tribute", - ["id"] = "abyss_attribute_tribute", - ["sd"] = { - [1] = "+3 to Tribute", - }, - ["sortedStats"] = { - [1] = "base_tribute", - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10759, + }, + }, + }, + { + ["dn"] = "Tribute", + ["id"] = "abyss_attribute_tribute", + ["sd"] = { + "+3 to Tribute", + }, + ["sortedStats"] = { + "base_tribute", + }, ["stats"] = { ["base_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 10760, - }, - }, - }, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 10760, + }, + }, + }, + }, ["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, - }, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + }, ["oo"] = { - }, - ["x"] = -6500, - ["y"] = -6500, - }, - }, + }, + ["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"] = { - }, + { + ["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"] = { + "All Damage taken bypasses Energy Shield", + "50% of Elemental Damage taken as Chaos Damage", + "+5% to maximum Chaos Resistance", + }, + ["sortedStats"] = { + "keystone_divine_flesh", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_divine_flesh"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10929, - }, - }, - }, - [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] = "Life Recharges instead of Energy Shield", - [2] = "50% less Life Recovery from Flasks", - }, - ["sortedStats"] = { - [1] = "keystone_eternal_youth", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10929, + }, + }, + }, + { + ["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"] = { + "Life Recharges instead of Energy Shield", + "50% less Life Recovery from Flasks", + }, + ["sortedStats"] = { + "keystone_eternal_youth", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_eternal_youth"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10934, - }, - }, - }, - [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] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10934, + }, + }, + }, + { + ["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"] = { + "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", + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Fire Damage", + }, + ["sortedStats"] = { + "fire_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 873, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 873, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Cold Damage", + }, + ["sortedStats"] = { + "cold_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 874, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 874, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Lightning Damage", + }, + ["sortedStats"] = { + "lightning_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 875, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 875, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Physical Damage", + }, + ["sortedStats"] = { + "physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 10898, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 10898, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Chaos Damage", + }, + ["sortedStats"] = { + "chaos_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["chaos_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 876, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 876, + }, + }, + }, + { + ["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"] = { + "Minions deal (8-13)% increased Damage", + }, + ["sortedStats"] = { + "minion_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 13, - ["min"] = 8, - ["statOrder"] = 1720, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 8, + ["statOrder"] = 1720, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Attack Damage", + }, + ["sortedStats"] = { + "attack_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["attack_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1156, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1156, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Spell Damage", + }, + ["sortedStats"] = { + "spell_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["spell_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 871, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 871, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Area Damage", + }, + ["sortedStats"] = { + "area_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["area_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1774, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1774, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Projectile Damage", + }, + ["sortedStats"] = { + "projectile_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["projectile_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1738, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1738, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Damage over Time", + }, + ["sortedStats"] = { + "damage_over_time_+%", + }, + ["spc"] = { + }, ["stats"] = { ["damage_over_time_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1167, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1167, + }, + }, + }, + { + ["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"] = { + "(4-7)% increased Area of Effect", + }, + ["sortedStats"] = { + "base_skill_area_of_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_skill_area_of_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 7, - ["min"] = 4, - ["statOrder"] = 1630, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1630, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Projectile Speed", + }, + ["sortedStats"] = { + "base_projectile_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_projectile_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 897, - }, - }, - }, - [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 Hit Chance", - }, - ["sortedStats"] = { - [1] = "critical_strike_chance_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 897, + }, + }, + }, + { + ["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"] = { + "(7-14)% increased Critical Hit Chance", + }, + ["sortedStats"] = { + "critical_strike_chance_+%", + }, + ["spc"] = { + }, ["stats"] = { ["critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 7, - ["statOrder"] = 10791, - }, - }, - }, - [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)% increased Critical Damage Bonus", - }, - ["sortedStats"] = { - [1] = "base_critical_strike_multiplier_+", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 7, + ["statOrder"] = 10791, + }, + }, + }, + { + ["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"] = { + "(6-10)% increased Critical Damage Bonus", + }, + ["sortedStats"] = { + "base_critical_strike_multiplier_+", + }, + ["spc"] = { + }, ["stats"] = { ["base_critical_strike_multiplier_+"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 980, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 980, + }, + }, + }, + { + ["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"] = { + "(3-4)% increased Attack Speed", + }, + ["sortedStats"] = { + "attack_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["attack_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 3, - ["statOrder"] = 985, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 985, + }, + }, + }, + { + ["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"] = { + "(2-3)% increased Cast Speed", + }, + ["sortedStats"] = { + "base_cast_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 2, - ["statOrder"] = 987, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 987, + }, + }, + }, + { + ["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"] = { + "(2-3)% increased Movement Speed", + }, + ["sortedStats"] = { + "base_movement_velocity_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_movement_velocity_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 2, - ["statOrder"] = 836, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "base_chance_to_ignite_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 836, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "base_chance_to_ignite_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chance_to_ignite_%"] = { - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "(3-6)% chance to Freeze", + }, + ["sortedStats"] = { + "base_chance_to_freeze_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chance_to_freeze_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 1056, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 1056, + }, + }, + }, + { + ["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"] = { + "(3-6)% chance to Shock", + }, + ["sortedStats"] = { + "base_chance_to_shock_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chance_to_shock_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 1058, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 1058, + }, + }, + }, + { + ["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"] = { + "(4-7)% increased Skill Effect Duration", + }, + ["sortedStats"] = { + "skill_effect_duration_+%", + }, + ["spc"] = { + }, ["stats"] = { ["skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 7, - ["min"] = 4, - ["statOrder"] = 1645, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1645, + }, + }, + }, + { + ["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"] = { + "(2-4)% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 889, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 889, + }, + }, + }, + { + ["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"] = { + "(4-6)% increased maximum Mana", + }, + ["sortedStats"] = { + "maximum_mana_+%", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_mana_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 4, - ["statOrder"] = 894, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 894, + }, + }, + }, + { + ["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"] = { + "(12-17)% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, ["stats"] = { ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 17, - ["min"] = 12, - ["statOrder"] = 1043, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 17, + ["min"] = 12, + ["statOrder"] = 1043, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Armour", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 882, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 882, + }, + }, + }, + { + ["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"] = { + "(7-12)% increased Evasion Rating", + }, + ["sortedStats"] = { + "evasion_rating_+%", + }, + ["spc"] = { + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 884, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 884, + }, + }, + }, + { + ["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"] = { + "(3-5)% increased maximum Energy Shield", + }, + ["sortedStats"] = { + "maximum_energy_shield_+%", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 3, - ["statOrder"] = 886, - }, - }, - }, - [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] = "+1% to Block chance", - }, - ["sortedStats"] = { - [1] = "additional_block_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 886, + }, + }, + }, + { + ["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% to Block chance", + }, + ["sortedStats"] = { + "additional_block_%", + }, + ["spc"] = { + }, ["stats"] = { ["additional_block_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1123, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1123, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "3% chance to Avoid Elemental Ailments", + }, + ["sortedStats"] = { + "avoid_all_elemental_status_%", + }, + ["spc"] = { + }, ["stats"] = { ["avoid_all_elemental_status_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 1599, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 1599, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 99999, - }, - }, - }, - [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 Magnitudes of Non-Curse Auras from your Skills", - }, - ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", - }, - ["spc"] = { - }, + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "(2-4)% increased Magnitudes of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["non_curse_aura_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 3251, - }, - }, - }, - [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 Curse Magnitudes", - }, - ["sortedStats"] = { - [1] = "curse_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3251, + }, + }, + }, + { + ["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"] = { + "2% increased Curse Magnitudes", + }, + ["sortedStats"] = { + "curse_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["curse_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 2376, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2376, + }, + }, + }, + { + ["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"] = { + "+(9-14)% to Fire Resistance", + }, + ["sortedStats"] = { + "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1014, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1014, + }, + }, + }, + { + ["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"] = { + "+(9-14)% to Cold Resistance", + }, + ["sortedStats"] = { + "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1020, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1020, + }, + }, + }, + { + ["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"] = { + "+(9-14)% to Lightning Resistance", + }, + ["sortedStats"] = { + "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1023, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1023, + }, + }, + }, + { + ["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"] = { + "+(6-10)% to Chaos Resistance", + }, + ["sortedStats"] = { + "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1024, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1024, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Fire Damage", + "Damage Penetrates (2-4)% Fire Resistance", + }, + ["sortedStats"] = { + "fire_damage_+%", + "base_reduce_enemy_fire_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_reduce_enemy_fire_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2724, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 2724, + }, ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 873, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "fire_damage_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 873, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Fire Damage", + }, + ["sortedStats"] = { + "fire_damage_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 873, - }, - }, - }, - [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] = "non_skill_base_physical_damage_%_to_convert_to_fire", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 873, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Fire Damage", + "10% of Physical Damage Converted to Fire Damage", + }, + ["sortedStats"] = { + "fire_damage_+%", + "non_skill_base_physical_damage_%_to_convert_to_fire", + }, + ["spc"] = { + }, ["stats"] = { ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 873, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 873, + }, ["non_skill_base_physical_damage_%_to_convert_to_fire"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1702, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1702, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Cold Damage", + "Damage Penetrates (2-4)% Cold Resistance", + }, + ["sortedStats"] = { + "cold_damage_+%", + "base_reduce_enemy_cold_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_reduce_enemy_cold_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2725, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 2725, + }, ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 874, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "cold_damage_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 874, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Cold Damage", + }, + ["sortedStats"] = { + "cold_damage_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 874, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 874, + }, ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, - }, - }, - [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] = "non_skill_base_physical_damage_%_to_convert_to_cold", - }, - ["spc"] = { - }, + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Cold Damage", + "10% of Physical Damage Converted to Cold Damage", + }, + ["sortedStats"] = { + "cold_damage_+%", + "non_skill_base_physical_damage_%_to_convert_to_cold", + }, + ["spc"] = { + }, ["stats"] = { ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 874, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 874, + }, ["non_skill_base_physical_damage_%_to_convert_to_cold"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1705, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1705, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Lightning Damage", + "Damage Penetrates (2-4)% Lightning Resistance", + }, + ["sortedStats"] = { + "lightning_damage_+%", + "base_reduce_enemy_lightning_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_reduce_enemy_lightning_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2726, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 2726, + }, ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 875, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "lightning_damage_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 875, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Lightning Damage", + }, + ["sortedStats"] = { + "lightning_damage_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 875, - }, - }, - }, - [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] = "non_skill_base_physical_damage_%_to_convert_to_lightning", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 875, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Lightning Damage", + "10% of Physical Damage Converted to Lightning Damage", + }, + ["sortedStats"] = { + "lightning_damage_+%", + "non_skill_base_physical_damage_%_to_convert_to_lightning", + }, + ["spc"] = { + }, ["stats"] = { ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 875, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 875, + }, ["non_skill_base_physical_damage_%_to_convert_to_lightning"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1707, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1707, + }, + }, + }, + { + ["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"] = { + "(2-4)% chance to deal Double Damage", + "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + "chance_to_deal_double_damage_%", + "physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["chance_to_deal_double_damage_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 5500, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 5500, + }, ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10898, - }, - }, - }, - [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] = "(25-35)% increased Physical Damage", - }, - ["sortedStats"] = { - [1] = "physical_damage_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 10898, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + "physical_damage_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10898, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 10898, + }, + }, + }, + { + ["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"] = { + "Bleeding you inflict deals Damage 10% faster", + "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + "faster_bleed_%", + "physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["faster_bleed_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6550, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6550, + }, ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10898, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 10898, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Chaos Damage", + "25% chance to inflict Withered for 2 seconds on Hit", + }, + ["sortedStats"] = { + "chaos_damage_+%", + "withered_on_hit_for_2_seconds_%_chance", + }, + ["spc"] = { + }, ["stats"] = { ["chaos_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 876, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 876, + }, ["withered_on_hit_for_2_seconds_%_chance"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 4056, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "chaos_damage_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4056, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Chaos Damage", + }, + ["sortedStats"] = { + "chaos_damage_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["chaos_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 876, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 876, + }, ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 99999, - }, - }, - }, - [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 Critical Hit Chance for Spells", - }, - ["sortedStats"] = { - [1] = "spell_damage_+%", - [2] = "spell_critical_strike_chance_+%", - }, - ["spc"] = { - }, + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Spell Damage", + "(35-50)% increased Critical Hit Chance for Spells", + }, + ["sortedStats"] = { + "spell_damage_+%", + "spell_critical_strike_chance_+%", + }, + ["spc"] = { + }, ["stats"] = { ["spell_critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 50, - ["min"] = 35, - ["statOrder"] = 978, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 35, + ["statOrder"] = 978, + }, ["spell_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 871, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 871, + }, + }, + }, + { + ["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"] = { + "Minions have (15-20)% increased maximum Life", + "Minions deal (25-35)% increased Damage", + }, + ["sortedStats"] = { + "minion_maximum_life_+%", + "minion_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1720, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1720, + }, ["minion_maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 15, - ["statOrder"] = 1026, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1026, + }, + }, + }, + { + ["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"] = { + "(25-35)% increased Damage over Time", + "(7-11)% increased Skill Effect Duration", + }, + ["sortedStats"] = { + "damage_over_time_+%", + "skill_effect_duration_+%", + }, + ["spc"] = { + }, ["stats"] = { ["damage_over_time_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1167, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1167, + }, ["skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 11, - ["min"] = 7, - ["statOrder"] = 1645, - }, - }, - }, - [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 maximum Life per second", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - [2] = "life_regeneration_rate_per_minute_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 11, + ["min"] = 7, + ["statOrder"] = 1645, + }, + }, + }, + { + ["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"] = { + "(6-10)% increased maximum Life", + "Regenerate (0.7-1.2)% of maximum Life per second", + }, + ["sortedStats"] = { + "maximum_life_+%", + "life_regeneration_rate_per_minute_%", + }, + ["spc"] = { + }, ["stats"] = { ["life_regeneration_rate_per_minute_%"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 1.2, - ["min"] = 0.7, - ["statOrder"] = 1691, - }, + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 1.2, + ["min"] = 0.7, + ["statOrder"] = 1691, + }, ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 889, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 889, + }, + }, + }, + { + ["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"] = { + "(6-10)% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 99999, - }, + ["index"] = 2, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 99999, + }, ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 889, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 889, + }, + }, + }, + { + ["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"] = { + "(17-23)% increased maximum Mana", + "(15-25)% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + "maximum_mana_+%", + "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, ["stats"] = { ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 25, - ["min"] = 15, - ["statOrder"] = 1043, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 15, + ["statOrder"] = 1043, + }, ["maximum_mana_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 23, - ["min"] = 17, - ["statOrder"] = 894, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 23, + ["min"] = 17, + ["statOrder"] = 894, + }, + }, + }, + { + ["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"] = { + "(30-40)% increased Armour", + "(3-4)% additional Physical Damage Reduction", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + "base_additional_physical_damage_reduction_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_additional_physical_damage_reduction_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 3, - ["statOrder"] = 1006, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 1006, + }, ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 30, - ["statOrder"] = 882, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 30, + ["statOrder"] = 882, + }, + }, + }, + { + ["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"] = { + "(30-40)% increased Evasion Rating", + "(5-7)% chance to Blind Enemies on Hit", + }, + ["sortedStats"] = { + "evasion_rating_+%", + "global_chance_to_blind_on_hit_%", + }, + ["spc"] = { + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 30, - ["statOrder"] = 884, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 30, + ["statOrder"] = 884, + }, ["global_chance_to_blind_on_hit_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 7, - ["min"] = 5, - ["statOrder"] = 10800, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 10800, + }, + }, + }, + { + ["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"] = { + "(8-12)% increased maximum Energy Shield", + "(10-15)% increased Energy Shield Recharge Rate", + }, + ["sortedStats"] = { + "maximum_energy_shield_+%", + "energy_shield_recharge_rate_+%", + }, + ["spc"] = { + }, ["stats"] = { ["energy_shield_recharge_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 10, - ["statOrder"] = 1032, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 1032, + }, ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 8, - ["statOrder"] = 886, - }, - }, - }, - [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", - }, - ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 886, + }, + }, + }, + { + ["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"] = { + "(8-12)% increased maximum Energy Shield", + }, + ["sortedStats"] = { + "maximum_energy_shield_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 2, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 99999, - }, + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 99999, + }, ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 8, - ["statOrder"] = 886, - }, - }, - }, - [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] = "+5% to Block chance", - [2] = "(6-10) Life gained when you Block", - }, - ["sortedStats"] = { - [1] = "additional_block_%", - [2] = "life_gained_on_block", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 886, + }, + }, + }, + { + ["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"] = { + "+5% to Block chance", + "(6-10) Life gained when you Block", + }, + ["sortedStats"] = { + "additional_block_%", + "life_gained_on_block", + }, + ["spc"] = { + }, ["stats"] = { ["additional_block_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1123, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1123, + }, ["life_gained_on_block"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1519, - }, - }, - }, - [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] = "(20-30)% increased Armour, Evasion and Energy Shield from Equipped Shield", - }, - ["sortedStats"] = { - [1] = "shield_armour_evasion_energy_shield_+%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1519, + }, + }, + }, + { + ["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"] = { + "(20-30)% increased Armour, Evasion and Energy Shield from Equipped Shield", + }, + ["sortedStats"] = { + "shield_armour_evasion_energy_shield_+%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 99999, - }, + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 99999, + }, ["shield_armour_evasion_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 9838, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 9838, + }, + }, + }, + { + ["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"] = { + "(8-10)% chance to Avoid Elemental Ailments", + "(8-10)% chance to Avoid being Stunned", + }, + ["sortedStats"] = { + "avoid_all_elemental_status_%", + "base_avoid_stun_%", + }, + ["spc"] = { + }, ["stats"] = { ["avoid_all_elemental_status_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1599, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1599, + }, ["base_avoid_stun_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1607, - }, - }, - }, - [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] = "+(8-10)% to all Elemental Resistances", - }, - ["sortedStats"] = { - [1] = "base_resist_all_elements_%", - [2] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1607, + }, + }, + }, + { + ["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"] = { + "+(8-10)% to all Elemental Resistances", + }, + ["sortedStats"] = { + "base_resist_all_elements_%", + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["base_resist_all_elements_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1013, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1013, + }, ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 6, - ["min"] = 6, - ["statOrder"] = 99999, - }, - }, - }, - [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 Magnitudes of Non-Curse Auras from your Skills", - }, - ["sortedStats"] = { - [1] = "base_aura_area_of_effect_+%", - [2] = "non_curse_aura_effect_+%", - }, - ["spc"] = { - }, + ["index"] = 1, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "20% increased Area of Effect of Aura Skills", + "(7-10)% increased Magnitudes of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + "base_aura_area_of_effect_+%", + "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_aura_area_of_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1949, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1949, + }, ["non_curse_aura_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 7, - ["statOrder"] = 3251, - }, - }, - }, - [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 Curse Magnitudes", - [2] = "Curse Skills have 20% increased Skill Effect Duration", - }, - ["sortedStats"] = { - [1] = "curse_effect_+%", - [2] = "curse_skill_effect_duration_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 7, + ["statOrder"] = 3251, + }, + }, + }, + { + ["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"] = { + "(4-6)% increased Curse Magnitudes", + "Curse Skills have 20% increased Skill Effect Duration", + }, + ["sortedStats"] = { + "curse_effect_+%", + "curse_skill_effect_duration_+%", + }, + ["spc"] = { + }, ["stats"] = { ["curse_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 6, - ["min"] = 4, - ["statOrder"] = 2376, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2376, + }, ["curse_skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 5934, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 5934, + }, + }, + }, + { + ["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% to Maximum Fire Resistance", + "+(20-30)% to Fire Resistance", + }, + ["sortedStats"] = { + "base_maximum_fire_damage_resistance_%", + "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1014, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1014, + }, ["base_maximum_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1009, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1009, + }, + }, + }, + { + ["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% to Maximum Cold Resistance", + "+(20-30)% to Cold Resistance", + }, + ["sortedStats"] = { + "base_maximum_cold_damage_resistance_%", + "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1020, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1020, + }, ["base_maximum_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1010, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1010, + }, + }, + }, + { + ["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% to Maximum Lightning Resistance", + "+(20-30)% to Lightning Resistance", + }, + ["sortedStats"] = { + "base_maximum_lightning_damage_resistance_%", + "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1023, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1023, + }, ["base_maximum_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1011, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1011, + }, + }, + }, + { + ["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% to Maximum Chaos Resistance", + "+(13-19)% to Chaos Resistance", + }, + ["sortedStats"] = { + "base_maximum_chaos_damage_resistance_%", + "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 19, - ["min"] = 13, - ["statOrder"] = 1024, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 19, + ["min"] = 13, + ["statOrder"] = 1024, + }, ["base_maximum_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1012, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "keystone_strength_of_blood", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1012, + }, + }, + }, + { + ["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"] = { + }, + }, + { + ["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"] = { + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "keystone_strength_of_blood", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_strength_of_blood"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "50% of Cold and Lightning Damage taken as Fire Damage", + "50% less Cold Resistance", + "50% less Lightning Resistance", + }, + ["sortedStats"] = { + "keystone_tempered_by_war", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_tempered_by_war"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10961, - }, - }, - }, - [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 Evade is Unlucky", - [2] = "Chance to Deflect is Lucky", - }, - ["sortedStats"] = { - [1] = "keystone_glancing_blows", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10961, + }, + }, + }, + { + ["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"] = { + "Chance to Evade is Unlucky", + "Chance to Deflect is Lucky", + }, + ["sortedStats"] = { + "keystone_glancing_blows", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_glancing_blows"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10937, - }, - }, - }, - [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] = "Skills Cost +3 Rage", - }, - ["sortedStats"] = { - [1] = "keystone_focused_rage", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10937, + }, + }, + }, + { + ["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"] = { + "Mana Recovery from Regeneration is not applied", + "1 Rage Regenerated for every 25 Mana Regeneration per Second", + "Skills Cost +3 Rage", + }, + ["sortedStats"] = { + "keystone_focused_rage", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_focused_rage"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10936, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10936, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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] = "Cannot use Charms", - [2] = "30% more Recovery from Flasks", - }, - ["sortedStats"] = { - [1] = "keystone_oasis", - }, - ["spc"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "Cannot use Charms", + "30% more Recovery from Flasks", + }, + ["sortedStats"] = { + "keystone_oasis", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_oasis"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10951, - }, - }, - }, - [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 Hit Chance is Lucky", - [3] = "Your Damage with Critical Hits is Lucky", - [4] = "Enemies' Damage with Critical Hits against you is Lucky", - }, - ["sortedStats"] = { - [1] = "keystone_sharp_and_brittle", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10951, + }, + }, + }, + { + ["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"] = { + "Can't use Helmets", + "Your Critical Hit Chance is Lucky", + "Your Damage with Critical Hits is Lucky", + "Enemies' Damage with Critical Hits against you is Lucky", + }, + ["sortedStats"] = { + "keystone_sharp_and_brittle", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_sharp_and_brittle"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10958, - }, - }, - }, - [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 Hit Chance while Blinded", - }, - ["sortedStats"] = { - [1] = "keystone_blind_monk", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10958, + }, + }, + }, + { + ["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"] = { + "You are Blind", + "Blind does not affect your Light Radius", + "25% more Melee Critical Hit Chance while Blinded", + }, + ["sortedStats"] = { + "keystone_blind_monk", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_blind_monk"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10925, - }, - }, - }, - [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] = "Damage over Time bypasses your Energy Shield", - [2] = "While not on Full Life, Sacrifice 1% of maximum Mana per Second to Recover that much Life", - }, - ["sortedStats"] = { - [1] = "unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10925, + }, + }, + }, + { + ["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"] = { + "Damage over Time bypasses your Energy Shield", + "While not on Full Life, Sacrifice 1% of maximum Mana per Second to Recover that much Life", + }, + ["sortedStats"] = { + "unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es", + }, + ["spc"] = { + }, ["stats"] = { ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10668, - }, - }, - }, - [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] = "+100% of Armour applies to Elemental Damage", - [2] = "Armour does not apply to Physical Damage", - [3] = "-15% to all maximum Elemental Resistances", - }, - ["sortedStats"] = { - [1] = "keystone_prismatic_bulwark", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10668, + }, + }, + }, + { + ["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"] = { + "+100% of Armour applies to Elemental Damage", + "Armour does not apply to Physical Damage", + "-15% to all maximum Elemental Resistances", + }, + ["sortedStats"] = { + "keystone_prismatic_bulwark", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_prismatic_bulwark"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10953, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10953, + }, + }, + }, + { + ["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"] = { + "3% more Spell Damage per Power Charge", + "Gain Power Charges instead of Frenzy Charges", + }, + ["sortedStats"] = { + "keystone_quiet_might", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_quiet_might"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10954, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10954, + }, + }, + }, + { + ["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"] = { + "80% of Maximum Mana is Converted to twice that much Armour", + }, + ["sortedStats"] = { + "keystone_mental_conditioning", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_mental_conditioning"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10949, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10949, + }, + }, + }, + { + ["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"] = { + "+10 to Devotion", + }, + ["sortedStats"] = { + "base_devotion", + }, + ["spc"] = { + }, ["stats"] = { ["base_devotion"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 10759, - }, - }, - }, - [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] = "non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10759, + }, + }, + }, + { + ["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"] = { + "15% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9293, - }, - }, - }, - [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] = "non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9293, + }, + }, + }, + { + ["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"] = { + "15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9291, - }, - }, - }, - [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] = "non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9291, + }, + }, + }, + { + ["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"] = { + "15% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9295, - }, - }, - }, - [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_gain_as_energy_shield_at_devotion_threshold", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9295, + }, + }, + }, + { + ["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"] = { + "Gain 5% of maximum Mana as Extra maximum Energy Shield while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "mana_%_to_gain_as_energy_shield_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1432, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1432, + }, + }, + }, + { + ["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"] = { + "Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 6748, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6748, + }, + }, + }, + { + ["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 to Minimum Endurance Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "minimum_endurance_charges_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["minimum_endurance_charges_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 8983, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8983, + }, + }, + }, + { + ["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 to Minimum Power Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "minimum_power_charges_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["minimum_power_charges_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 8989, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8989, + }, + }, + }, + { + ["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 to Minimum Frenzy Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "minimum_frenzy_charges_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["minimum_frenzy_charges_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 8985, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8985, + }, + }, + }, + { + ["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"] = { + "Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 7290, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7290, + }, + }, + }, + { + ["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"] = { + "5% additional Physical Damage Reduction while you have at least 150 Devotion", + }, + ["sortedStats"] = { + "physical_damage_reduction_%_at_devotion_threshold", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_reduction_%_at_devotion_threshold"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 9453, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 9453, + }, + }, + }, + { + ["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% to all maximum Resistances if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 4205, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4205, + }, + }, + }, + { + ["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"] = { + "10% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 7345, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7345, + }, + }, + }, + { + ["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"] = { + "10% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 7342, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7342, + }, + }, + }, + { + ["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"] = { + "10% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + "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"] = 7351, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7351, + }, + }, + }, + { + ["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"] = { + "Life Recovery from Flasks also applies to Energy Shield", + "30% less Life Recovery from Flasks", + }, + ["sortedStats"] = { + "keystone_emperors_heart", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_emperors_heart"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10933, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10933, + }, + }, + }, + { + ["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"] = { + "Nearby Allies and Enemies Share Charges with you", + "Enemies Hitting you have 10% chance to gain an Endurance, ", + "Frenzy or Power Charge", + }, + ["sortedStats"] = { + "keystone_magnetic_charge", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_magnetic_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10948, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10948, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "Ignore Attribute Requirements", + "Gain no inherent bonuses from Attributes", + }, + ["sortedStats"] = { + "keystone_supreme_prodigy", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_supreme_prodigy"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10959, - }, - }, - }, - [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 Hit Chance", - }, - ["sortedStats"] = { - [1] = "critical_strike_chance_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10959, + }, + }, + }, + { + ["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"] = { + }, + }, + { + ["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"] = { + "80% increased Critical Hit Chance", + }, + ["sortedStats"] = { + "critical_strike_chance_+%", + }, + ["spc"] = { + }, ["stats"] = { ["critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 10791, - }, - }, - }, - [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% increased Critical Damage Bonus", - }, - ["sortedStats"] = { - [1] = "base_critical_strike_multiplier_+", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 10791, + }, + }, + }, + { + ["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"] = { + "40% increased Critical Damage Bonus", + }, + ["sortedStats"] = { + "base_critical_strike_multiplier_+", + }, + ["spc"] = { + }, ["stats"] = { ["base_critical_strike_multiplier_+"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 980, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 980, + }, + }, + }, + { + ["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"] = { + "Gain 1 Endurance Charge every second if you've been Hit Recently", + }, + ["sortedStats"] = { + "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"] = 6780, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6780, + }, + }, + }, + { + ["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"] = { + "8% increased Armour per Endurance Charge", + }, + ["sortedStats"] = { + "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"] = 9463, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 9463, + }, + }, + }, + { + ["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"] = { + "10% increased Damage per Endurance Charge", + }, + ["sortedStats"] = { + "damage_+%_per_endurance_charge", + }, + ["spc"] = { + }, ["stats"] = { ["damage_+%_per_endurance_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2917, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2917, + }, + }, + }, + { + ["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"] = { + "10% chance to gain a Frenzy Charge on Hit", + }, + ["sortedStats"] = { + "add_frenzy_charge_on_skill_hit_%", + }, + ["spc"] = { + }, ["stats"] = { ["add_frenzy_charge_on_skill_hit_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1588, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1588, + }, + }, + }, + { + ["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"] = { + "8% increased Evasion Rating per Frenzy Charge", + }, + ["sortedStats"] = { + "evasion_rating_+%_per_frenzy_charge", + }, + ["spc"] = { + }, ["stats"] = { ["evasion_rating_+%_per_frenzy_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1426, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1426, + }, + }, + }, + { + ["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"] = { + "10% increased Damage per Frenzy Charge", + }, + ["sortedStats"] = { + "damage_+%_per_frenzy_charge", + }, + ["spc"] = { + }, ["stats"] = { ["damage_+%_per_frenzy_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2994, - }, - }, - }, - [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 Hit", - }, - ["sortedStats"] = { - [1] = "add_power_charge_on_critical_strike_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2994, + }, + }, + }, + { + ["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"] = { + "15% chance to gain a Power Charge on Critical Hit", + }, + ["sortedStats"] = { + "add_power_charge_on_critical_strike_%", + }, + ["spc"] = { + }, ["stats"] = { ["add_power_charge_on_critical_strike_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1585, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1585, + }, + }, + }, + { + ["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"] = { + "4% increased Energy Shield per Power Charge", + }, + ["sortedStats"] = { + "energy_shield_+%_per_power_charge", + }, + ["spc"] = { + }, ["stats"] = { ["energy_shield_+%_per_power_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 6435, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 6435, + }, + }, + }, + { + ["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"] = { + "10% increased Damage per Power Charge", + }, + ["sortedStats"] = { + "damage_+%_per_power_charge", + }, + ["spc"] = { + }, ["stats"] = { ["damage_+%_per_power_charge"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6009, - }, - }, - }, - [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 Magnitude of Chill you inflict", - }, - ["sortedStats"] = { - [1] = "chill_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6009, + }, + }, + }, + { + ["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"] = { + "30% increased Magnitude of Chill you inflict", + }, + ["sortedStats"] = { + "chill_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["chill_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 10841, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10841, + }, + }, + }, + { + ["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"] = { + "80% chance to Avoid being Chilled", + }, + ["sortedStats"] = { + "base_avoid_chill_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_avoid_chill_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1600, - }, - }, - }, - [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 Magnitude of Shock you inflict", - }, - ["sortedStats"] = { - [1] = "shock_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1600, + }, + }, + }, + { + ["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"] = { + "30% increased Magnitude of Shock you inflict", + }, + ["sortedStats"] = { + "shock_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["shock_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 10907, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10907, + }, + }, + }, + { + ["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"] = { + "80% chance to Avoid being Shocked", + }, + ["sortedStats"] = { + "base_avoid_shock_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_avoid_shock_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1604, - }, - }, - }, - [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] = "+8% to Block chance", - }, - ["sortedStats"] = { - [1] = "additional_block_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1604, + }, + }, + }, + { + ["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"] = { + "+8% to Block chance", + }, + ["sortedStats"] = { + "additional_block_%", + }, + ["spc"] = { + }, ["stats"] = { ["additional_block_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1123, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1123, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 99999, - }, - }, - }, - [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"] = { - }, + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "20% chance to Avoid Elemental Ailments", + }, + ["sortedStats"] = { + "avoid_all_elemental_status_%", + }, + ["spc"] = { + }, ["stats"] = { ["avoid_all_elemental_status_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1599, - }, - }, - }, - [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"] = { - }, - ["sortedStats"] = { - [1] = "dummy_stat_display_nothing", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1599, + }, + }, + }, + { + ["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"] = { + }, + ["sortedStats"] = { + "dummy_stat_display_nothing", + }, + ["spc"] = { + }, ["stats"] = { ["dummy_stat_display_nothing"] = { - ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 99999, - }, - }, - }, - [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 Magnitudes of Non-Curse Auras from your Skills", - }, - ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", - }, - ["spc"] = { - }, + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 99999, + }, + }, + }, + { + ["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"] = { + "12% increased Magnitudes of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["non_curse_aura_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 3251, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 3251, + }, + }, + }, + { + ["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"] = { + "Minions deal 80% increased Damage", + }, + ["sortedStats"] = { + "minion_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1720, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1720, + }, + }, + }, + { + ["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"] = { + "Minions have 80% increased maximum Life", + }, + ["sortedStats"] = { + "minion_maximum_life_+%", + }, + ["spc"] = { + }, ["stats"] = { ["minion_maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1026, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1026, + }, + }, + }, + { + ["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"] = { + "80% increased Spell Damage", + }, + ["sortedStats"] = { + "spell_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["spell_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 871, - }, - }, - }, - [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 Critical Hit Chance for Spells", - }, - ["sortedStats"] = { - [1] = "spell_critical_strike_chance_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 871, + }, + }, + }, + { + ["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"] = { + "80% increased Critical Hit Chance for Spells", + }, + ["sortedStats"] = { + "spell_critical_strike_chance_+%", + }, + ["spc"] = { + }, ["stats"] = { ["spell_critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 978, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 978, + }, + }, + }, + { + ["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"] = { + "80% increased Fire Damage with Attack Skills", + }, + ["sortedStats"] = { + "fire_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, ["stats"] = { ["fire_damage_with_attack_skills_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 6580, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 6580, + }, + }, + }, + { + ["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"] = { + "80% increased Cold Damage with Attack Skills", + }, + ["sortedStats"] = { + "cold_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, ["stats"] = { ["cold_damage_with_attack_skills_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 5692, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 5692, + }, + }, + }, + { + ["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"] = { + "80% increased Lightning Damage with Attack Skills", + }, + ["sortedStats"] = { + "lightning_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, ["stats"] = { ["lightning_damage_with_attack_skills_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 7553, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 7553, + }, + }, + }, + { + ["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"] = { + "80% increased Physical Damage", + }, + ["sortedStats"] = { + "physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 10898, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 10898, + }, + }, + }, + { + ["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"] = { + "80% increased Melee Physical Damage", + }, + ["sortedStats"] = { + "melee_physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["melee_physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1727, - }, - }, - }, - [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] = "Bleeding you inflict deals Damage 10% faster", - }, - ["sortedStats"] = { - [1] = "faster_bleed_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1727, + }, + }, + }, + { + ["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"] = { + "Bleeding you inflict deals Damage 10% faster", + }, + ["sortedStats"] = { + "faster_bleed_%", + }, + ["spc"] = { + }, ["stats"] = { ["faster_bleed_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6550, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6550, + }, + }, + }, + { + ["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"] = { + "80% increased Projectile Attack Damage", + }, + ["sortedStats"] = { + "projectile_attack_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["projectile_attack_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1739, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1739, + }, + }, + }, + { + ["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"] = { + "15% increased Attack Speed", + }, + ["sortedStats"] = { + "attack_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["attack_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 985, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 985, + }, + }, + }, + { + ["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"] = { + "15% increased Cast Speed", + }, + ["sortedStats"] = { + "base_cast_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 987, - }, - }, - }, - [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] = "40% increased Rarity of Items found", - }, - ["sortedStats"] = { - [1] = "base_item_found_rarity_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 987, + }, + }, + }, + { + ["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"] = { + "40% increased Rarity of Items found", + }, + ["sortedStats"] = { + "base_item_found_rarity_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_item_found_rarity_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 941, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 941, + }, + }, + }, + { + ["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"] = { + "80% increased Armour", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 882, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 882, + }, + }, + }, + { + ["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"] = { + "80% increased Evasion Rating", + }, + ["sortedStats"] = { + "evasion_rating_+%", + }, + ["spc"] = { + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 884, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 884, + }, + }, + }, + { + ["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"] = { + "+50% to Fire Resistance", + }, + ["sortedStats"] = { + "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1014, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1014, + }, + }, + }, + { + ["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"] = { + "+50% to Cold Resistance", + }, + ["sortedStats"] = { + "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1020, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1020, + }, + }, + }, + { + ["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"] = { + "+50% to Lightning Resistance", + }, + ["sortedStats"] = { + "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1023, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1023, + }, + }, + }, + { + ["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"] = { + "+37% to Chaos Resistance", + }, + ["sortedStats"] = { + "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 37, - ["min"] = 37, - ["statOrder"] = 1024, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 37, + ["min"] = 37, + ["statOrder"] = 1024, + }, + }, + }, + { + ["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"] = { + "10% increased maximum Life", + }, + ["sortedStats"] = { + "maximum_life_+%", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 889, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 889, + }, + }, + }, + { + ["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"] = { + "30% increased maximum Mana", + }, + ["sortedStats"] = { + "maximum_mana_+%", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_mana_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 894, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 894, + }, + }, + }, + { + ["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"] = { + "50% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, ["stats"] = { ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1043, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1043, + }, + }, + }, + { + ["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"] = { + "25% increased Accuracy Rating", + }, + ["sortedStats"] = { + "accuracy_rating_+%", + }, + ["spc"] = { + }, ["stats"] = { ["accuracy_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 1332, - }, - }, - }, - [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"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 1332, + }, + }, + }, + { + ["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"] = { + "20% increased Flask Effect Duration", + }, + ["sortedStats"] = { + "flask_duration_+%", + }, + ["spc"] = { + }, ["stats"] = { ["flask_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 902, - }, - }, - }, - [156] = { - ["da"] = 0, - ["dn"] = "Black Scythe Training", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.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] = "Gain no inherent bonus from Strength", - [2] = "1% increased Energy Shield per 2 Strength", - }, - ["sortedStats"] = { - [1] = "keystone_alternate_strength_bonus", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 902, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Black Scythe Training", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.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"] = { + "Gain no inherent bonus from Strength", + "1% increased Energy Shield per 2 Strength", + }, + ["sortedStats"] = { + "keystone_alternate_strength_bonus", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_alternate_strength_bonus"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10921, - }, - }, - }, - [157] = { - ["da"] = 0, - ["dn"] = "Circular Teachings", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.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] = "Gain no inherent bonus from Dexterity", - [2] = "1% increased Armour per 2 Dexterity", - }, - ["sortedStats"] = { - [1] = "keystone_alternate_dexterity_bonus", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10921, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Circular Teachings", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.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"] = { + "Gain no inherent bonus from Dexterity", + "1% increased Armour per 2 Dexterity", + }, + ["sortedStats"] = { + "keystone_alternate_dexterity_bonus", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_alternate_dexterity_bonus"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10918, - }, - }, - }, - [158] = { - ["da"] = 0, - ["dn"] = "Knightly Tenets", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.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] = "Gain no inherent bonus from Intelligence", - [2] = "1% increased Evasion Rating per 2 Intelligence", - }, - ["sortedStats"] = { - [1] = "keystone_alternate_intelligence_bonus", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10918, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Knightly Tenets", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.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"] = { + "Gain no inherent bonus from Intelligence", + "1% increased Evasion Rating per 2 Intelligence", + }, + ["sortedStats"] = { + "keystone_alternate_intelligence_bonus", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_alternate_intelligence_bonus"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10920, - }, - }, - }, - [159] = { - ["da"] = 0, - ["dn"] = "Scorched Earth", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable1", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 79440, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Fire Damage", - [2] = "+15 to Intelligence", - }, - ["sortedStats"] = { - [1] = "fire_damage_+%", - [2] = "base_intelligence", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10920, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Scorched Earth", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79440, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Fire Damage", + "+15 to Intelligence", + }, + ["sortedStats"] = { + "fire_damage_+%", + "base_intelligence", + }, + ["spc"] = { + }, ["stats"] = { ["base_intelligence"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 10766, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 10766, + }, ["fire_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 873, - }, - }, - }, - [160] = { - ["da"] = 0, - ["dn"] = "War Tactics", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable2", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 97049, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "20% increased Mana Regeneration Rate", - [2] = "40% increased Physical Damage", - }, - ["sortedStats"] = { - [1] = "mana_regeneration_rate_+%", - [2] = "physical_damage_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 873, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "War Tactics", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 97049, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "20% increased Mana Regeneration Rate", + "40% increased Physical Damage", + }, + ["sortedStats"] = { + "mana_regeneration_rate_+%", + "physical_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1043, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1043, + }, ["physical_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 10898, - }, - }, - }, - [161] = { - ["da"] = 0, - ["dn"] = "Kalguuran Forged", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable3", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 33869, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+2% to Maximum Fire Resistance", - [2] = "10% reduced Freeze Duration on you", - }, - ["sortedStats"] = { - [1] = "base_maximum_fire_damage_resistance_%", - [2] = "base_self_freeze_duration_-%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 10898, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Kalguuran Forged", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 33869, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+2% to Maximum Fire Resistance", + "10% reduced Freeze Duration on you", + }, + ["sortedStats"] = { + "base_maximum_fire_damage_resistance_%", + "base_self_freeze_duration_-%", + }, + ["spc"] = { + }, ["stats"] = { ["base_maximum_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 1009, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1009, + }, ["base_self_freeze_duration_-%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1065, - }, - }, - }, - [162] = { - ["da"] = 0, - ["dn"] = "Born of Middengard", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable4", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 20074, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Armour", - [2] = "+10% to Cold Resistance", - }, - ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", - [2] = "base_cold_damage_resistance_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1065, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Born of Middengard", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable4", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 20074, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Armour", + "+10% to Cold Resistance", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%", + "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1020, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1020, + }, ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 882, - }, - }, - }, - [163] = { - ["da"] = 0, - ["dn"] = "Force of Will", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable5", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 29349, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased maximum Mana", - [2] = "30% increased Stun Buildup", - }, - ["sortedStats"] = { - [1] = "maximum_mana_+%", - [2] = "hit_damage_stun_multiplier_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 882, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Force of Will", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable5", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29349, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased maximum Mana", + "30% increased Stun Buildup", + }, + ["sortedStats"] = { + "maximum_mana_+%", + "hit_damage_stun_multiplier_+%", + }, + ["spc"] = { + }, ["stats"] = { ["hit_damage_stun_multiplier_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1051, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1051, + }, ["maximum_mana_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 894, - }, - }, - }, - [164] = { - ["da"] = 0, - ["dn"] = "Runic Flows", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable6", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 39254, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased Curse Duration", - [2] = "Regenerate 1.5% of maximum Life per second", - }, - ["sortedStats"] = { - [1] = "base_curse_duration_+%", - [2] = "life_regeneration_rate_per_minute_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 894, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Runic Flows", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable6", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 39254, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased Curse Duration", + "Regenerate 1.5% of maximum Life per second", + }, + ["sortedStats"] = { + "base_curse_duration_+%", + "life_regeneration_rate_per_minute_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_curse_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1540, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1540, + }, ["life_regeneration_rate_per_minute_%"] = { - ["fmt"] = "g", - ["index"] = 1, - ["max"] = 1.5, - ["min"] = 1.5, - ["statOrder"] = 1691, - }, - }, - }, - [165] = { - ["da"] = 0, - ["dn"] = "Siege Mentality", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable7", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 74833, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% faster start of Energy Shield Recharge", - [2] = "Break 40% increased Armour", - }, - ["sortedStats"] = { - [1] = "energy_shield_delay_-%", - [2] = "armour_break_amount_+%", - }, - ["spc"] = { - }, + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 1.5, + ["min"] = 1.5, + ["statOrder"] = 1691, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Siege Mentality", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable7", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 74833, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% faster start of Energy Shield Recharge", + "Break 40% increased Armour", + }, + ["sortedStats"] = { + "energy_shield_delay_-%", + "armour_break_amount_+%", + }, + ["spc"] = { + }, ["stats"] = { ["armour_break_amount_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 4407, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 4407, + }, ["energy_shield_delay_-%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1033, - }, - }, - }, - [166] = { - ["da"] = 0, - ["dn"] = "Rune Knight", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable8", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 56253, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "15% increased Critical Spell Damage Bonus", - [2] = "40% increased Melee Damage", - }, - ["sortedStats"] = { - [1] = "base_spell_critical_strike_multiplier_+", - [2] = "melee_damage_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1033, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Rune Knight", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable8", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 56253, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "15% increased Critical Spell Damage Bonus", + "40% increased Melee Damage", + }, + ["sortedStats"] = { + "base_spell_critical_strike_multiplier_+", + "melee_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_spell_critical_strike_multiplier_+"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 982, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 982, + }, ["melee_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1187, - }, - }, - }, - [167] = { - ["da"] = 0, - ["dn"] = "Fiery Leadership", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable9", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 82715, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Flammability Magnitude", - [2] = "Minions have +15% to all Elemental Resistances", - }, - ["sortedStats"] = { - [1] = "ignite_chance_+%", - [2] = "minion_elemental_resistance_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1187, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Fiery Leadership", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable9", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 82715, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Flammability Magnitude", + "Minions have +15% to all Elemental Resistances", + }, + ["sortedStats"] = { + "ignite_chance_+%", + "minion_elemental_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["ignite_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1055, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1055, + }, ["minion_elemental_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 2667, - }, - }, - }, - [168] = { - ["da"] = 0, - ["dn"] = "Druidic Alliance", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable10", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 52436, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+7% to Chaos Resistance", - [2] = "40% increased Totem Damage", - }, - ["sortedStats"] = { - [1] = "base_chaos_damage_resistance_%", - [2] = "totem_damage_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 2667, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Druidic Alliance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable10", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 52436, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+7% to Chaos Resistance", + "40% increased Totem Damage", + }, + ["sortedStats"] = { + "base_chaos_damage_resistance_%", + "totem_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 7, - ["min"] = 7, - ["statOrder"] = 1024, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 7, + ["min"] = 7, + ["statOrder"] = 1024, + }, ["totem_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1152, - }, - }, - }, - [169] = { - ["da"] = 0, - ["dn"] = "Steel and Sorcery", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable11", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 2468, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased effect of Arcane Surge on you", - [2] = "20% increased Magnitude of Bleeding you inflict", - }, - ["sortedStats"] = { - [1] = "arcane_surge_effect_on_self_+%", - [2] = "base_bleeding_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1152, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Steel and Sorcery", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable11", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 2468, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased effect of Arcane Surge on you", + "20% increased Magnitude of Bleeding you inflict", + }, + ["sortedStats"] = { + "arcane_surge_effect_on_self_+%", + "base_bleeding_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["arcane_surge_effect_on_self_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2996, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2996, + }, ["base_bleeding_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 4809, - }, - }, - }, - [170] = { - ["da"] = 0, - ["dn"] = "Triskelion's Light", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable12", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 30208, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased Cold Exposure Effect", - [2] = "Empowered Attacks deal 50% increased Damage", - [3] = "10% increased Fire Exposure Effect", - [4] = "10% increased Lightning Exposure Effect", - }, - ["sortedStats"] = { - [1] = "cold_exposure_effect_+%", - [2] = "empowered_attack_damage_+%", - [3] = "fire_exposure_effect_+%", - [4] = "lightning_exposure_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 4809, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Triskelion's Light", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable12", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 30208, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased Cold Exposure Effect", + "Empowered Attacks deal 50% increased Damage", + "10% increased Fire Exposure Effect", + "10% increased Lightning Exposure Effect", + }, + ["sortedStats"] = { + "cold_exposure_effect_+%", + "empowered_attack_damage_+%", + "fire_exposure_effect_+%", + "lightning_exposure_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["cold_exposure_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 3, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 5694, - }, + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5694, + }, ["empowered_attack_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 6322, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 6322, + }, ["fire_exposure_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 4, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6582, - }, + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6582, + }, ["lightning_exposure_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 7558, - }, - }, - }, - [171] = { - ["da"] = 0, - ["dn"] = "Stormtossed Voyager", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable13", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 29546, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+2% to Maximum Lightning Resistance", - [2] = "10% reduced Ignite Duration on you", - }, - ["sortedStats"] = { - [1] = "base_maximum_lightning_damage_resistance_%", - [2] = "base_self_ignite_duration_-%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7558, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Stormtossed Voyager", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable13", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29546, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+2% to Maximum Lightning Resistance", + "10% reduced Ignite Duration on you", + }, + ["sortedStats"] = { + "base_maximum_lightning_damage_resistance_%", + "base_self_ignite_duration_-%", + }, + ["spc"] = { + }, ["stats"] = { ["base_maximum_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 1011, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1011, + }, ["base_self_ignite_duration_-%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1063, - }, - }, - }, - [172] = { - ["da"] = 0, - ["dn"] = "Wrest Control", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable14", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 20764, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Lightning Damage", - [2] = "+15 to Strength", - }, - ["sortedStats"] = { - [1] = "lightning_damage_+%", - [2] = "base_strength", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1063, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Wrest Control", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable14", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 20764, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Lightning Damage", + "+15 to Strength", + }, + ["sortedStats"] = { + "lightning_damage_+%", + "base_strength", + }, + ["spc"] = { + }, ["stats"] = { ["base_strength"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 10762, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 10762, + }, ["lightning_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 875, - }, - }, - }, - [173] = { - ["da"] = 0, - ["dn"] = "Firedancer", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable15", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 7170, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Evasion Rating", - [2] = "+10% to Fire Resistance", - }, - ["sortedStats"] = { - [1] = "evasion_rating_+%", - [2] = "base_fire_damage_resistance_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 875, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Firedancer", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable15", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 7170, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Evasion Rating", + "+10% to Fire Resistance", + }, + ["sortedStats"] = { + "evasion_rating_+%", + "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1014, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1014, + }, ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 884, - }, - }, - }, - [174] = { - ["da"] = 0, - ["dn"] = "Mercenary's Lot", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable16", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 95734, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased Attack Speed", - [2] = "15% increased Stun Threshold", - }, - ["sortedStats"] = { - [1] = "attack_speed_+%", - [2] = "stun_threshold_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 884, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Mercenary's Lot", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable16", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 95734, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased Attack Speed", + "15% increased Stun Threshold", + }, + ["sortedStats"] = { + "attack_speed_+%", + "stun_threshold_+%", + }, + ["spc"] = { + }, ["stats"] = { ["attack_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 985, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 985, + }, ["stun_threshold_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 2983, - }, - }, - }, - [175] = { - ["da"] = 0, - ["dn"] = "Vorana's Fury", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable17", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 81354, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Projectile Damage", - [2] = "Gain 1 Rage on Melee Hit", - }, - ["sortedStats"] = { - [1] = "projectile_damage_+%", - [2] = "gain_x_rage_on_melee_hit", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 2983, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Vorana's Fury", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable17", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 81354, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Projectile Damage", + "Gain 1 Rage on Melee Hit", + }, + ["sortedStats"] = { + "projectile_damage_+%", + "gain_x_rage_on_melee_hit", + }, + ["spc"] = { + }, ["stats"] = { ["gain_x_rage_on_melee_hit"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6873, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6873, + }, ["projectile_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1738, - }, - }, - }, - [176] = { - ["da"] = 0, - ["dn"] = "Sensible Precautions", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable18", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 78304, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "6% increased Block chance", - [2] = "40% increased Life Recovery from Flasks", - }, - ["sortedStats"] = { - [1] = "block_chance_+%", - [2] = "flask_life_to_recover_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1738, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sensible Precautions", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable18", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 78304, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "6% increased Block chance", + "40% increased Life Recovery from Flasks", + }, + ["sortedStats"] = { + "block_chance_+%", + "flask_life_to_recover_+%", + }, + ["spc"] = { + }, ["stats"] = { ["block_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 6, - ["min"] = 6, - ["statOrder"] = 1133, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 1133, + }, ["flask_life_to_recover_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1794, - }, - }, - }, - [177] = { - ["da"] = 0, - ["dn"] = "Aim for the Jugular", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable19", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 15373, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "30% increased Accuracy Rating", - [2] = "10% increased Magnitude of Bleeding you inflict", - }, - ["sortedStats"] = { - [1] = "accuracy_rating_+%", - [2] = "base_bleeding_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1794, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Aim for the Jugular", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable19", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 15373, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "30% increased Accuracy Rating", + "10% increased Magnitude of Bleeding you inflict", + }, + ["sortedStats"] = { + "accuracy_rating_+%", + "base_bleeding_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["accuracy_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1332, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1332, + }, ["base_bleeding_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 4809, - }, - }, - }, - [178] = { - ["da"] = 0, - ["dn"] = "Survival Plan", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable20", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 27792, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased maximum Life", - [2] = "40% increased Mana Recovery from Flasks", - }, - ["sortedStats"] = { - [1] = "maximum_life_+%", - [2] = "flask_mana_to_recover_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4809, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Survival Plan", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable20", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27792, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased maximum Life", + "40% increased Mana Recovery from Flasks", + }, + ["sortedStats"] = { + "maximum_life_+%", + "flask_mana_to_recover_+%", + }, + ["spc"] = { + }, ["stats"] = { ["flask_mana_to_recover_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1795, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1795, + }, ["maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 889, - }, - }, - }, - [179] = { - ["da"] = 0, - ["dn"] = "War of Attrition", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable21", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 27192, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased amount of Life Leeched", - [2] = "20% increased Magnitude of Poison you inflict", - }, - ["sortedStats"] = { - [1] = "base_life_leech_amount_+%", - [2] = "base_poison_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 889, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "War of Attrition", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable21", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27192, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased amount of Life Leeched", + "20% increased Magnitude of Poison you inflict", + }, + ["sortedStats"] = { + "base_life_leech_amount_+%", + "base_poison_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_life_leech_amount_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1895, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1895, + }, ["base_poison_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 9498, - }, - }, - }, - [180] = { - ["da"] = 0, - ["dn"] = "Guerilla Warfare", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable22", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 45680, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased chance to Shock", - [2] = "15% increased Totem Life", - }, - ["sortedStats"] = { - [1] = "shock_chance_+%", - [2] = "totem_life_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 9498, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Guerilla Warfare", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable22", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 45680, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased chance to Shock", + "15% increased Totem Life", + }, + ["sortedStats"] = { + "shock_chance_+%", + "totem_life_+%", + }, + ["spc"] = { + }, ["stats"] = { ["shock_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1059, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1059, + }, ["totem_life_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1533, - }, - }, - }, - [181] = { - ["da"] = 0, - ["dn"] = "One for the Road", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable23", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 79160, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "30% increased Flask Effect Duration", - [2] = "15% increased Warcry Cooldown Recovery Rate", - }, - ["sortedStats"] = { - [1] = "flask_duration_+%", - [2] = "warcry_cooldown_speed_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1533, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "One for the Road", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable23", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79160, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "30% increased Flask Effect Duration", + "15% increased Warcry Cooldown Recovery Rate", + }, + ["sortedStats"] = { + "flask_duration_+%", + "warcry_cooldown_speed_+%", + }, + ["spc"] = { + }, ["stats"] = { ["flask_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 902, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 902, + }, ["warcry_cooldown_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 3035, - }, - }, - }, - [182] = { - ["da"] = 0, - ["dn"] = "Targeted Strike", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable24", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 64617, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "8% increased Skill Effect Duration", - [2] = "20% increased Effect of your Mark Skills", - }, - ["sortedStats"] = { - [1] = "skill_effect_duration_+%", - [2] = "mark_effect_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 3035, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Targeted Strike", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable24", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 64617, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "8% increased Skill Effect Duration", + "20% increased Effect of your Mark Skills", + }, + ["sortedStats"] = { + "skill_effect_duration_+%", + "mark_effect_+%", + }, + ["spc"] = { + }, ["stats"] = { ["mark_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2378, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2378, + }, ["skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1645, - }, - }, - }, - [183] = { - ["da"] = 0, - ["dn"] = "Steel Bastion", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable25", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 27124, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Elemental Damage", - [2] = "20% increased Armour, Evasion and Energy Shield from Equipped Shield", - }, - ["sortedStats"] = { - [1] = "elemental_damage_+%", - [2] = "shield_armour_evasion_energy_shield_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1645, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Steel Bastion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable25", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27124, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Elemental Damage", + "20% increased Armour, Evasion and Energy Shield from Equipped Shield", + }, + ["sortedStats"] = { + "elemental_damage_+%", + "shield_armour_evasion_energy_shield_+%", + }, + ["spc"] = { + }, ["stats"] = { ["elemental_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1726, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1726, + }, ["shield_armour_evasion_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 9838, - }, - }, - }, - [184] = { - ["da"] = 0, - ["dn"] = "Forceful Energies", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable26", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 82620, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased Cast Speed", - [2] = "10% chance to Pierce an Enemy", - }, - ["sortedStats"] = { - [1] = "base_cast_speed_+%", - [2] = "base_chance_to_pierce_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 9838, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Forceful Energies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable26", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 82620, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased Cast Speed", + "10% chance to Pierce an Enemy", + }, + ["sortedStats"] = { + "base_cast_speed_+%", + "base_chance_to_pierce_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_cast_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 987, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 987, + }, ["base_chance_to_pierce_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1068, - }, - }, - }, - [185] = { - ["da"] = 0, - ["dn"] = "Winter Forest", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable27", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 84022, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Cold Damage", - [2] = "+15 to Dexterity", - }, - ["sortedStats"] = { - [1] = "cold_damage_+%", - [2] = "base_dexterity", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1068, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Winter Forest", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable27", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 84022, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Cold Damage", + "+15 to Dexterity", + }, + ["sortedStats"] = { + "cold_damage_+%", + "base_dexterity", + }, + ["spc"] = { + }, ["stats"] = { ["base_dexterity"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 10764, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 10764, + }, ["cold_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 874, - }, - }, - }, - [186] = { - ["da"] = 0, - ["dn"] = "Fight as One", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable28", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 37694, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "8% increased Accuracy Rating", - [2] = "Minions deal 40% increased Damage", - }, - ["sortedStats"] = { - [1] = "accuracy_rating_+%", - [2] = "minion_damage_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 874, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Fight as One", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable28", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 37694, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "8% increased Accuracy Rating", + "Minions deal 40% increased Damage", + }, + ["sortedStats"] = { + "accuracy_rating_+%", + "minion_damage_+%", + }, + ["spc"] = { + }, ["stats"] = { ["accuracy_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1332, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1332, + }, ["minion_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 1720, - }, - }, - }, - [187] = { - ["da"] = 0, - ["dn"] = "Summer Meadows", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable29", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 88895, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "15% increased Evasion Rating", - [2] = "Minions have 30% increased maximum Life", - }, - ["sortedStats"] = { - [1] = "evasion_rating_+%", - [2] = "minion_maximum_life_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1720, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Summer Meadows", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable29", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 88895, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "15% increased Evasion Rating", + "Minions have 30% increased maximum Life", + }, + ["sortedStats"] = { + "evasion_rating_+%", + "minion_maximum_life_+%", + }, + ["spc"] = { + }, ["stats"] = { ["evasion_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 884, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 884, + }, ["minion_maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1026, - }, - }, - }, - [188] = { - ["da"] = 0, - ["dn"] = "Druidic Training", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable30", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 78681, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased Spell Damage", - [2] = "10% increased Flask and Charm Charges gained", - }, - ["sortedStats"] = { - [1] = "spell_damage_+%", - [2] = "charges_gained_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1026, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Druidic Training", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable30", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 78681, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased Spell Damage", + "10% increased Flask and Charm Charges gained", + }, + ["sortedStats"] = { + "spell_damage_+%", + "charges_gained_+%", + }, + ["spc"] = { + }, ["stats"] = { ["charges_gained_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1048, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1048, + }, ["spell_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 871, - }, - }, - }, - [189] = { - ["da"] = 0, - ["dn"] = "Corrupted Vision", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable31", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 55867, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "30% increased Critical Hit Chance for Spells", - [2] = "5% chance to Blind Enemies on Hit", - }, - ["sortedStats"] = { - [1] = "spell_critical_strike_chance_+%", - [2] = "global_chance_to_blind_on_hit_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 871, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Corrupted Vision", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable31", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 55867, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "30% increased Critical Hit Chance for Spells", + "5% chance to Blind Enemies on Hit", + }, + ["sortedStats"] = { + "spell_critical_strike_chance_+%", + "global_chance_to_blind_on_hit_%", + }, + ["spc"] = { + }, ["stats"] = { ["global_chance_to_blind_on_hit_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10800, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10800, + }, ["spell_critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 978, - }, - }, - }, - [190] = { - ["da"] = 0, - ["dn"] = "Runic Tattoos", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable32", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 79194, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "30% increased Mana Regeneration Rate", - [2] = "15% increased Elemental Ailment Threshold", - }, - ["sortedStats"] = { - [1] = "mana_regeneration_rate_+%", - [2] = "ailment_threshold_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 978, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Runic Tattoos", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable32", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79194, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "30% increased Mana Regeneration Rate", + "15% increased Elemental Ailment Threshold", + }, + ["sortedStats"] = { + "mana_regeneration_rate_+%", + "ailment_threshold_+%", + }, + ["spc"] = { + }, ["stats"] = { ["ailment_threshold_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 4266, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 4266, + }, ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1043, - }, - }, - }, - [191] = { - ["da"] = 0, - ["dn"] = "Furs and Leather", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable33", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 1855, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+2% to Maximum Cold Resistance", - [2] = "10% reduced Shock duration on you", - }, - ["sortedStats"] = { - [1] = "base_maximum_cold_damage_resistance_%", - [2] = "base_self_shock_duration_-%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1043, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Furs and Leather", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable33", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 1855, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+2% to Maximum Cold Resistance", + "10% reduced Shock duration on you", + }, + ["sortedStats"] = { + "base_maximum_cold_damage_resistance_%", + "base_self_shock_duration_-%", + }, + ["spc"] = { + }, ["stats"] = { ["base_maximum_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 1010, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1010, + }, ["base_self_shock_duration_-%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1066, - }, - }, - }, - [192] = { - ["da"] = 0, - ["dn"] = "Sudden Hail", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable34", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 55548, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "8% increased Projectile Speed", - [2] = "30% increased Freeze Buildup", - }, - ["sortedStats"] = { - [1] = "base_projectile_speed_+%", - [2] = "hit_damage_freeze_multiplier_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1066, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sudden Hail", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable34", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 55548, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "8% increased Projectile Speed", + "30% increased Freeze Buildup", + }, + ["sortedStats"] = { + "base_projectile_speed_+%", + "hit_damage_freeze_multiplier_+%", + }, + ["spc"] = { + }, ["stats"] = { ["base_projectile_speed_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 897, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 897, + }, ["hit_damage_freeze_multiplier_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1057, - }, - }, - }, - [193] = { - ["da"] = 0, - ["dn"] = "Natural Energies", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable35", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 87796, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "40% increased maximum Energy Shield", - [2] = "+10% to Lightning Resistance", - }, - ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", - [2] = "base_lightning_damage_resistance_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1057, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Natural Energies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable35", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 87796, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "40% increased maximum Energy Shield", + "+10% to Lightning Resistance", + }, + ["sortedStats"] = { + "maximum_energy_shield_+%", + "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, ["stats"] = { ["base_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1023, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1023, + }, ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 886, - }, - }, - }, - [194] = { - ["da"] = 0, - ["dn"] = "Oaken Form", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable36", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 29714, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "10% increased Charm Effect Duration", - [2] = "10% of Damage taken Recouped as Life", - }, - ["sortedStats"] = { - [1] = "charm_duration_+%", - [2] = "damage_taken_goes_to_life_over_4_seconds_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 886, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Oaken Form", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable36", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29714, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "10% increased Charm Effect Duration", + "10% of Damage taken Recouped as Life", + }, + ["sortedStats"] = { + "charm_duration_+%", + "damage_taken_goes_to_life_over_4_seconds_%", + }, + ["spc"] = { + }, ["stats"] = { ["charm_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 900, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 900, + }, ["damage_taken_goes_to_life_over_4_seconds_%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1037, - }, - }, - }, - [195] = { - ["da"] = 0, - ["dn"] = "Spider's Lesson", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable37", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 51555, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "37% increased Chaos Damage", - [2] = "Projectiles have 6% chance to Chain an additional time from terrain", - }, - ["sortedStats"] = { - [1] = "chaos_damage_+%", - [2] = "projectile_chance_to_chain_1_extra_time_from_terrain_%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1037, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Spider's Lesson", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable37", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 51555, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "37% increased Chaos Damage", + "Projectiles have 6% chance to Chain an additional time from terrain", + }, + ["sortedStats"] = { + "chaos_damage_+%", + "projectile_chance_to_chain_1_extra_time_from_terrain_%", + }, + ["spc"] = { + }, ["stats"] = { ["chaos_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 37, - ["min"] = 37, - ["statOrder"] = 876, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 37, + ["min"] = 37, + ["statOrder"] = 876, + }, ["projectile_chance_to_chain_1_extra_time_from_terrain_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 6, - ["min"] = 6, - ["statOrder"] = 9543, - }, - }, - }, - [196] = { - ["da"] = 0, - ["dn"] = "Sacrifice of Flesh", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds", - ["id"] = "abyss_keystone_1", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 69, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "When taking damage from Hits, 20% of Life Loss is prevented, then 150% of Life Loss prevented this way is Lost over 4 seconds", - }, - ["sortedStats"] = { - [1] = "keystone_amanamus_defiance", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 9543, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sacrifice of Flesh", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds", + ["id"] = "abyss_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 69, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "When taking damage from Hits, 20% of Life Loss is prevented, then 150% of Life Loss prevented this way is Lost over 4 seconds", + }, + ["sortedStats"] = { + "keystone_amanamus_defiance", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_amanamus_defiance"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10922, - }, - }, - }, - [197] = { - ["da"] = 0, - ["dn"] = "Sacrifice of Loyalty", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds", - ["id"] = "abyss_keystone_2", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 72, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "You deal 1% more Damage per 2 total Power of your Undead Minions", - [2] = "Undead Minions have 25% less maximum Life", - }, - ["sortedStats"] = { - [1] = "keystone_kulemaks_sovereignty", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10922, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sacrifice of Loyalty", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds", + ["id"] = "abyss_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 72, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "You deal 1% more Damage per 2 total Power of your Undead Minions", + "Undead Minions have 25% less maximum Life", + }, + ["sortedStats"] = { + "keystone_kulemaks_sovereignty", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_kulemaks_sovereignty"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10945, - }, - }, - }, - [198] = { - ["da"] = 0, - ["dn"] = "Sacrifice of Mind", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KurgasAmbition.dds", - ["id"] = "abyss_keystone_3", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 75, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Mana Recovery from Regeneration Overflows maximum Mana", - [2] = "50% less Mana Regeneration Rate", - }, - ["sortedStats"] = { - [1] = "keystone_kurgals_ambition", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10945, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sacrifice of Mind", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KurgasAmbition.dds", + ["id"] = "abyss_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 75, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Mana Recovery from Regeneration Overflows maximum Mana", + "50% less Mana Regeneration Rate", + }, + ["sortedStats"] = { + "keystone_kurgals_ambition", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_kurgals_ambition"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10946, - }, - }, - }, - [199] = { - ["da"] = 0, - ["dn"] = "Sacrifice of Blood", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds", - ["id"] = "abyss_keystone_4", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 78, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Regenerate 1 Life per second per 16 Life spent in the past 4 seconds", - [2] = "20% more Life Cost of Skills", - }, - ["sortedStats"] = { - [1] = "keystone_tecrods_brutality", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10946, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sacrifice of Blood", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds", + ["id"] = "abyss_keystone_4", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 78, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Regenerate 1 Life per second per 16 Life spent in the past 4 seconds", + "20% more Life Cost of Skills", + }, + ["sortedStats"] = { + "keystone_tecrods_brutality", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_tecrods_brutality"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10960, - }, - }, - }, - [200] = { - ["da"] = 0, - ["dn"] = "Sacrifice of Sight", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/UlamansVision.dds", - ["id"] = "abyss_keystone_5", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 81, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Projectiles do one of the following at random:", - [2] = "Fork an additional time", - [3] = "Chain an additional time", - [4] = "Chain from Terrain an additional time", - [5] = "Cannot collide with targets", - }, - ["sortedStats"] = { - [1] = "keystone_ulamans_vision", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10960, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Sacrifice of Sight", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/UlamansVision.dds", + ["id"] = "abyss_keystone_5", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 81, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Projectiles do one of the following at random:", + "Fork an additional time", + "Chain an additional time", + "Chain from Terrain an additional time", + "Cannot collide with targets", + }, + ["sortedStats"] = { + "keystone_ulamans_vision", + }, + ["spc"] = { + }, ["stats"] = { ["keystone_ulamans_vision"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10962, - }, - }, - }, - [201] = { - ["da"] = 0, - ["dn"] = "Tribute", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds", - ["id"] = "abyss_small_tribute", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = false, - ["o"] = 3, - ["oidx"] = 60518, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+5 to Tribute", - }, - ["sortedStats"] = { - [1] = "base_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10962, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Tribute", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds", + ["id"] = "abyss_small_tribute", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 60518, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+5 to Tribute", + }, + ["sortedStats"] = { + "base_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10760, - }, - }, - }, - [202] = { - ["da"] = 0, - ["dn"] = "Disciple of Darkness", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_1", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 32845, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "20% increased Tribute", - }, - ["sortedStats"] = { - [1] = "tribute_+%", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10760, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Disciple of Darkness", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 32845, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "20% increased Tribute", + }, + ["sortedStats"] = { + "tribute_+%", + }, + ["spc"] = { + }, ["stats"] = { ["tribute_+%"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10761, - }, - }, - }, - [203] = { - ["da"] = 0, - ["dn"] = "Creature of Death", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_2", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 40214, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% of damage taken Recouped as Life per 10 Tribute", - [2] = "Recover 1% of maximum Life on Kill per 50 Tribute", - }, - ["sortedStats"] = { - [1] = "damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute", - [2] = "recover_%_maximum_life_on_kill_per_50_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10761, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Creature of Death", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 40214, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% of damage taken Recouped as Life per 10 Tribute", + "Recover 1% of maximum Life on Kill per 50 Tribute", + }, + ["sortedStats"] = { + "damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute", + "recover_%_maximum_life_on_kill_per_50_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6044, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6044, + }, ["recover_%_maximum_life_on_kill_per_50_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9670, - }, - }, - }, - [204] = { - ["da"] = 0, - ["dn"] = "Creature of Magic", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_3", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 87392, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% of damage taken Recouped as Mana per 10 Tribute", - [2] = "Recover 1% of maximum Mana on Kill per 50 Tribute", - }, - ["sortedStats"] = { - [1] = "damage_taken_goes_to_mana_%_per_10_tribute", - [2] = "recover_%_maximum_mana_on_kill_per_50_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9670, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Creature of Magic", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 87392, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% of damage taken Recouped as Mana per 10 Tribute", + "Recover 1% of maximum Mana on Kill per 50 Tribute", + }, + ["sortedStats"] = { + "damage_taken_goes_to_mana_%_per_10_tribute", + "recover_%_maximum_mana_on_kill_per_50_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["damage_taken_goes_to_mana_%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6045, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6045, + }, ["recover_%_maximum_mana_on_kill_per_50_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9674, - }, - }, - }, - [205] = { - ["da"] = 0, - ["dn"] = "Quickened Corpses", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_4", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 88901, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Minions have 3% increased Attack and Cast Speed per 50 Tribute", - [2] = "Minions deal 1% increased damage per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "minion_attack_and_cast_speed_+%_per_50_tribute", - [2] = "minion_damage_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9674, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Quickened Corpses", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_4", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 88901, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Minions have 3% increased Attack and Cast Speed per 50 Tribute", + "Minions deal 1% increased damage per 10 Tribute", + }, + ["sortedStats"] = { + "minion_attack_and_cast_speed_+%_per_50_tribute", + "minion_damage_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["minion_attack_and_cast_speed_+%_per_50_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 9002, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 9002, + }, ["minion_damage_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9033, - }, - }, - }, - [206] = { - ["da"] = 0, - ["dn"] = "Ambivalent Command", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_5", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 1088, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Minions have 4% increased Cooldown Recovery Rate per 10 Tribute", - [2] = "Minions lose 2% Life per 10 Tribute you have when following Commands", - }, - ["sortedStats"] = { - [1] = "minion_cooldown_recovery_+%_per_10_tribute", - [2] = "minions_lose_%_life_when_following_commands_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9033, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Ambivalent Command", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_5", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 1088, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Minions have 4% increased Cooldown Recovery Rate per 10 Tribute", + "Minions lose 2% Life per 10 Tribute you have when following Commands", + }, + ["sortedStats"] = { + "minion_cooldown_recovery_+%_per_10_tribute", + "minions_lose_%_life_when_following_commands_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["minion_cooldown_recovery_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 9028, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 9028, + }, ["minions_lose_%_life_when_following_commands_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9110, - }, - }, - }, - [207] = { - ["da"] = 0, - ["dn"] = "Boneshedder", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_6", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 25300, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Projectiles have 10% chance for an additional Projectile when Forking per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "chance_to_fork_extra_projectile_%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9110, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Boneshedder", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_6", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 25300, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Projectiles have 10% chance for an additional Projectile when Forking per 10 Tribute", + }, + ["sortedStats"] = { + "chance_to_fork_extra_projectile_%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["chance_to_fork_extra_projectile_%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 5514, - }, - }, - }, - [208] = { - ["da"] = 0, - ["dn"] = "Unfiltered Brutality", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_7", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 5536, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "8% increased Attack Damage per 10 Tribute", - [2] = "1% increased damage taken per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "attack_damage_+%_per_10_tribute", - [2] = "base_damage_taken_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5514, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Unfiltered Brutality", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_7", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5536, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "8% increased Attack Damage per 10 Tribute", + "1% increased damage taken per 10 Tribute", + }, + ["sortedStats"] = { + "attack_damage_+%_per_10_tribute", + "base_damage_taken_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["attack_damage_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 4508, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 4508, + }, ["base_damage_taken_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 4683, - }, - }, - }, - [209] = { - ["da"] = 0, - ["dn"] = "Derogatory Gaze", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_8", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 40288, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "3% reduced Accuracy Rating per 25 Tribute", - [2] = "5% increased Attack Critical Hit Chance per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "accuracy_rating_+%_per_25_tribute", - [2] = "attack_critical_strike_chance_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4683, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Derogatory Gaze", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_8", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 40288, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "3% reduced Accuracy Rating per 25 Tribute", + "5% increased Attack Critical Hit Chance per 10 Tribute", + }, + ["sortedStats"] = { + "accuracy_rating_+%_per_25_tribute", + "attack_critical_strike_chance_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["accuracy_rating_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 4131, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 4131, + }, ["attack_critical_strike_chance_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 4503, - }, - }, - }, - [210] = { - ["da"] = 0, - ["dn"] = "Abyssal Conduit", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_9", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 50505, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Mana Cost Efficiency per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_mana_cost_efficiency_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 4503, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Abyssal Conduit", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_9", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 50505, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Mana Cost Efficiency per 10 Tribute", + }, + ["sortedStats"] = { + "base_mana_cost_efficiency_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_mana_cost_efficiency_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4722, - }, - }, - }, - [211] = { - ["da"] = 0, - ["dn"] = "Expedited Horrors", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_10", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 94233, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "3% faster Curse Activation per 20 Tribute", - [2] = "3% increased Curse Duration per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "curse_delay_+%_per_20_tribute", - [2] = "curse_duration_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4722, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Expedited Horrors", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_10", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 94233, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "3% faster Curse Activation per 20 Tribute", + "3% increased Curse Duration per 10 Tribute", + }, + ["sortedStats"] = { + "curse_delay_+%_per_20_tribute", + "curse_duration_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["curse_delay_+%_per_20_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 5925, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5925, + }, ["curse_duration_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 5927, - }, - }, - }, - [212] = { - ["da"] = 0, - ["dn"] = "Confined Exaltation", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_11", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 33401, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% increased Spirit Reservation Efficiency of Skills per 20 Tribute", - [2] = "2% reduced Presence Area of Effect per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_spirit_reservation_efficiency_+%_per_20_tribute", - [2] = "presence_area_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5927, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Confined Exaltation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_11", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 33401, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% increased Spirit Reservation Efficiency of Skills per 20 Tribute", + "2% reduced Presence Area of Effect per 10 Tribute", + }, + ["sortedStats"] = { + "base_spirit_reservation_efficiency_+%_per_20_tribute", + "presence_area_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_spirit_reservation_efficiency_+%_per_20_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 4756, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4756, + }, ["presence_area_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9520, - }, - }, - }, - [213] = { - ["da"] = 0, - ["dn"] = "Arcane Ascension", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_12", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 93327, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% of Maximum Life Converted to Energy Shield per 20 Tribute", - }, - ["sortedStats"] = { - [1] = "maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9520, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Arcane Ascension", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_12", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 93327, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% of Maximum Life Converted to Energy Shield per 20 Tribute", + }, + ["sortedStats"] = { + "maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 8877, - }, - }, - }, - [214] = { - ["da"] = 0, - ["dn"] = "Ravenous Mind", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_13", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 14140, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Mana Recovery rate per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "mana_recovery_rate_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8877, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Ravenous Mind", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_13", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 14140, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Mana Recovery rate per 10 Tribute", + }, + ["sortedStats"] = { + "mana_recovery_rate_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["mana_recovery_rate_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 7994, - }, - }, - }, - [215] = { - ["da"] = 0, - ["dn"] = "Gluttonous Presence", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_14", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 55075, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Life Recovery rate per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "life_recovery_rate_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7994, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Gluttonous Presence", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_14", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 55075, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Life Recovery rate per 10 Tribute", + }, + ["sortedStats"] = { + "life_recovery_rate_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["life_recovery_rate_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 7480, - }, - }, - }, - [216] = { - ["da"] = 0, - ["dn"] = "Unrestrained Intellect", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_15", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 5174, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% increased Cooldown Recovery Rate per 10 Tribute", - [2] = "+2 to Intelligence per 25 Tribute", - }, - ["sortedStats"] = { - [1] = "base_cooldown_speed_+%_per_10_tribute", - [2] = "base_intelligence_per_25_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7480, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Unrestrained Intellect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_15", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5174, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% increased Cooldown Recovery Rate per 10 Tribute", + "+2 to Intelligence per 25 Tribute", + }, + ["sortedStats"] = { + "base_cooldown_speed_+%_per_10_tribute", + "base_intelligence_per_25_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_cooldown_speed_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 4676, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4676, + }, ["base_intelligence_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4707, - }, - }, - }, - [217] = { - ["da"] = 0, - ["dn"] = "Cruel Strength", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_16", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 29868, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+2 to Strength per 25 Tribute", - [2] = "2% increased Stun Buildup per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_strength_per_25_tribute", - [2] = "hit_damage_stun_multiplier_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4707, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Cruel Strength", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_16", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29868, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+2 to Strength per 25 Tribute", + "2% increased Stun Buildup per 10 Tribute", + }, + ["sortedStats"] = { + "base_strength_per_25_tribute", + "hit_damage_stun_multiplier_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_strength_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4757, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4757, + }, ["hit_damage_stun_multiplier_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 7204, - }, - }, - }, - [218] = { - ["da"] = 0, - ["dn"] = "Opportunistic Dexterity", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_17", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 64578, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+2 to Dexterity per 25 Tribute", - [2] = "2% increased Parried Debuff Duration per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_dexterity_per_25_tribute", - [2] = "parry_skill_effect_duration_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7204, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Opportunistic Dexterity", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_17", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 64578, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+2 to Dexterity per 25 Tribute", + "2% increased Parried Debuff Duration per 10 Tribute", + }, + ["sortedStats"] = { + "base_dexterity_per_25_tribute", + "parry_skill_effect_duration_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_dexterity_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4693, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4693, + }, ["parry_skill_effect_duration_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9391, - }, - }, - }, - [219] = { - ["da"] = 0, - ["dn"] = "Unreal Potential", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_18", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 81826, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "1% chance when you gain a Charge to gain an additional Charge per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "chance_to_gain_1_more_charge_%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9391, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Unreal Potential", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_18", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 81826, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "1% chance when you gain a Charge to gain an additional Charge per 10 Tribute", + }, + ["sortedStats"] = { + "chance_to_gain_1_more_charge_%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["chance_to_gain_1_more_charge_%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 5517, - }, - }, - }, - [220] = { - ["da"] = 0, - ["dn"] = "I Have Darkvision", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_19", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 90899, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Accuracy Rating per 10 Tribute", - [2] = "2% reduced Light Radius per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "accuracy_rating_+%_per_10_tribute", - [2] = "light_radius_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5517, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "I Have Darkvision", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_19", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 90899, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Accuracy Rating per 10 Tribute", + "2% reduced Light Radius per 10 Tribute", + }, + ["sortedStats"] = { + "accuracy_rating_+%_per_10_tribute", + "light_radius_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["accuracy_rating_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4130, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4130, + }, ["light_radius_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 7531, - }, - }, - }, - [221] = { - ["da"] = 0, - ["dn"] = "Domineering Commands", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_20", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 57536, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Empowered Attacks deal 2% increased damage per 10 Tribute", - [2] = "4% increased Warcry Speed per 25 Tribute", - }, - ["sortedStats"] = { - [1] = "empowered_attack_damage_+%_per_10_tribute", - [2] = "warcry_speed_+%_per_25_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7531, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Domineering Commands", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_20", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 57536, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Empowered Attacks deal 2% increased damage per 10 Tribute", + "4% increased Warcry Speed per 25 Tribute", + }, + ["sortedStats"] = { + "empowered_attack_damage_+%_per_10_tribute", + "warcry_speed_+%_per_25_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["empowered_attack_damage_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 6321, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6321, + }, ["warcry_speed_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 10516, - }, - }, - }, - [222] = { - ["da"] = 0, - ["dn"] = "Worthy Tithes", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_21", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 55389, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Remnants you create have 2% increased effect per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "remnant_effect_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 10516, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Worthy Tithes", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_21", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 55389, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Remnants you create have 2% increased effect per 10 Tribute", + }, + ["sortedStats"] = { + "remnant_effect_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["remnant_effect_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9735, - }, - }, - }, - [223] = { - ["da"] = 0, - ["dn"] = "Buried Animosity", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_22", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 93616, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+1 to Maximum Rage per 50 Tribute", - [2] = "Inherent loss of Rage is 2% slower per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "maximum_rage_per_50_tribute", - [2] = "rage_decay_speed_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9735, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Buried Animosity", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_22", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 93616, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+1 to Maximum Rage per 50 Tribute", + "Inherent loss of Rage is 2% slower per 10 Tribute", + }, + ["sortedStats"] = { + "maximum_rage_per_50_tribute", + "rage_decay_speed_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["maximum_rage_per_50_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 8905, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8905, + }, ["rage_decay_speed_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9618, - }, - }, - }, - [224] = { - ["da"] = 0, - ["dn"] = "Fast Rot", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_23", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 99322, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Magnitude of Damaging Ailments you inflict per 10 Tribute", - [2] = "1% reduced Duration of Damaging Ailments per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_damaging_ailment_effect_+%_per_10_tribute", - [2] = "damaging_ailment_duration_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9618, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Fast Rot", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_23", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 99322, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Magnitude of Damaging Ailments you inflict per 10 Tribute", + "1% reduced Duration of Damaging Ailments per 10 Tribute", + }, + ["sortedStats"] = { + "base_damaging_ailment_effect_+%_per_10_tribute", + "damaging_ailment_duration_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_damaging_ailment_effect_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4684, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4684, + }, ["damaging_ailment_duration_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6066, - }, - }, - }, - [225] = { - ["da"] = 0, - ["dn"] = "Hollow Bones", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_24", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 79942, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Gain Deflection Rating equal to 2% of Evasion Rating per 25 Tribute", - [2] = "2% increased Evasion Rating per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "base_deflection_rating_%_of_evasion_rating_per_25_tribute", - [2] = "evasion_rating_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6066, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Hollow Bones", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_24", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79942, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Gain Deflection Rating equal to 2% of Evasion Rating per 25 Tribute", + "2% increased Evasion Rating per 10 Tribute", + }, + ["sortedStats"] = { + "base_deflection_rating_%_of_evasion_rating_per_25_tribute", + "evasion_rating_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 4692, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4692, + }, ["evasion_rating_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 6491, - }, - }, - }, - [226] = { - ["da"] = 0, - ["dn"] = "Ancient Bastion", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", - ["id"] = "abyss_notable_25", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 23145, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% reduced Energy Shield Recharge Rate per 25 Tribute", - [2] = "4% increased maximum Energy Shield per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "energy_shield_recharge_rate_+%_per_25_tribute", - [2] = "maximum_energy_shield_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6491, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Ancient Bastion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds", + ["id"] = "abyss_notable_25", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 23145, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% reduced Energy Shield Recharge Rate per 25 Tribute", + "4% increased maximum Energy Shield per 10 Tribute", + }, + ["sortedStats"] = { + "energy_shield_recharge_rate_+%_per_25_tribute", + "maximum_energy_shield_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["energy_shield_recharge_rate_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 6439, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6439, + }, ["maximum_energy_shield_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 8861, - }, - }, - }, - [227] = { - ["da"] = 0, - ["dn"] = "Deformed Steel", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_26", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 33128, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "2% increased Armour per 10 Tribute", - [2] = "5% increased Stun Threshold per 25 Tribute", - }, - ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%_per_10_tribute", - [2] = "stun_threshold_+%_per_25_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 8861, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Deformed Steel", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_26", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 33128, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "2% increased Armour per 10 Tribute", + "5% increased Stun Threshold per 25 Tribute", + }, + ["sortedStats"] = { + "physical_damage_reduction_rating_+%_per_10_tribute", + "stun_threshold_+%_per_25_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["physical_damage_reduction_rating_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 9458, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9458, + }, ["stun_threshold_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 10128, - }, - }, - }, - [228] = { - ["da"] = 0, - ["dn"] = "Mystic Brew", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_27", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 39249, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "3% increased Flask Effect Duration per 25 Tribute", - [2] = "1% increased Life and Mana Recovery from Flasks per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "flask_duration_+%_per_25_tribute", - [2] = "flask_life_and_mana_to_recover_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10128, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Mystic Brew", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_27", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 39249, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "3% increased Flask Effect Duration per 25 Tribute", + "1% increased Life and Mana Recovery from Flasks per 10 Tribute", + }, + ["sortedStats"] = { + "flask_duration_+%_per_25_tribute", + "flask_life_and_mana_to_recover_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["flask_duration_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 6641, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 6641, + }, ["flask_life_and_mana_to_recover_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6643, - }, - }, - }, - [229] = { - ["da"] = 0, - ["dn"] = "Resilient Wards", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", - ["id"] = "abyss_notable_28", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 35273, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "3% increased Charm Effect Duration per 25 Tribute", - [2] = "Charms applied to you have 1% increased Effect per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "charm_duration_+%_per_25_tribute", - [2] = "charm_effect_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6643, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Resilient Wards", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds", + ["id"] = "abyss_notable_28", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 35273, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "3% increased Charm Effect Duration per 25 Tribute", + "Charms applied to you have 1% increased Effect per 10 Tribute", + }, + ["sortedStats"] = { + "charm_duration_+%_per_25_tribute", + "charm_effect_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["charm_duration_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 5609, - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5609, + }, ["charm_effect_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 5610, - }, - }, - }, - [230] = { - ["da"] = 0, - ["dn"] = "Dreadful Fortitude", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_29", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 28021, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "Your Heavy Stun buildup empties 1% faster per 10 Tribute", - [2] = "5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute", - }, - ["sortedStats"] = { - [1] = "heavy_stun_poise_decay_rate_+%_per_10_tribute", - [2] = "shield_armour_evasion_energy_shield_+%_per_25_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5610, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Dreadful Fortitude", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_29", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 28021, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "Your Heavy Stun buildup empties 1% faster per 10 Tribute", + "5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute", + }, + ["sortedStats"] = { + "heavy_stun_poise_decay_rate_+%_per_10_tribute", + "shield_armour_evasion_energy_shield_+%_per_25_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["heavy_stun_poise_decay_rate_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6986, - }, + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6986, + }, ["shield_armour_evasion_energy_shield_+%_per_25_tribute"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 9839, - }, - }, - }, - [231] = { - ["da"] = 0, - ["dn"] = "Barbed Allegiance", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", - ["id"] = "abyss_notable_30", - ["in"] = { - }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = false, - ["m"] = false, - ["not"] = true, - ["o"] = 3, - ["oidx"] = 19644, - ["out"] = { - }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, - ["sd"] = { - [1] = "+0.5% to Thorns Critical Hit Chance per 50 Tribute", - [2] = "2% increased Thorns damage per 10 Tribute", - }, - ["sortedStats"] = { - [1] = "additional_thorns_critical_strike_chance_permyriad_per_50_tribute", - [2] = "thorns_damage_+%_per_10_tribute", - }, - ["spc"] = { - }, + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 9839, + }, + }, + }, + { + ["da"] = 0, + ["dn"] = "Barbed Allegiance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds", + ["id"] = "abyss_notable_30", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 19644, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + "+0.5% to Thorns Critical Hit Chance per 50 Tribute", + "2% increased Thorns damage per 10 Tribute", + }, + ["sortedStats"] = { + "additional_thorns_critical_strike_chance_permyriad_per_50_tribute", + "thorns_damage_+%_per_10_tribute", + }, + ["spc"] = { + }, ["stats"] = { ["additional_thorns_critical_strike_chance_permyriad_per_50_tribute"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.5, - ["min"] = 0.5, - ["statOrder"] = 4226, - }, + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.5, + ["min"] = 0.5, + ["statOrder"] = 4226, + }, ["thorns_damage_+%_per_10_tribute"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 10251, - }, - }, - }, - }, -} \ No newline at end of file + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10251, + }, + }, + }, + }, +} diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index ebff375ddd..2a480aa251 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -1,6 +1,8 @@ --- This file is automatically downloaded, do not edit! --- Trade site stat data (c) Grinding Gear Games --- https://www.pathofexile.com/api/trade2/data/stats +-- This file is automatically generated, do not edit! +-- Game data (c) Grinding Gear Games + +-- This file contains the trade site data from https://www.pathofexile.com/api/trade2/data/stats + -- spell-checker: disable return { { @@ -10877,13 +10879,13 @@ return { ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1393838912", - ["text"] = "Eat a Soul on Hitting an enemy with an Open Weakness", + ["id"] = "explicit.stat_2103621252", + ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2103621252", - ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", + ["id"] = "explicit.stat_1393838912", + ["text"] = "Eat a Soul when you Hit an enemy with an Open Weakness", ["type"] = "explicit", }, { @@ -16064,7 +16066,7 @@ return { }, { ["id"] = "implicit.stat_3051490307", - ["text"] = "#% increased number of Explosives", + ["text"] = "#% increased number of Expedition Explosives", ["type"] = "implicit", }, { @@ -33246,6 +33248,11 @@ return { ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2438634449", + ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + ["type"] = "augment", + }, { ["id"] = "rune.stat_3885634897", ["text"] = "#% chance to Poison on Hit with this weapon", @@ -33476,6 +33483,11 @@ return { ["text"] = "#% increased Life Cost Efficiency", ["type"] = "augment", }, + { + ["id"] = "rune.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2310741722", ["text"] = "#% increased Life and Mana Recovery from Flasks", @@ -33801,6 +33813,11 @@ return { ["text"] = "#% reduced effect of Shock on you", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2923486259", ["text"] = "#% to Chaos Resistance", @@ -34061,6 +34078,11 @@ return { ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1554054340", + ["text"] = "Bonded: # Life Regeneration per second", + ["type"] = "augment", + }, { ["id"] = "rune.stat_769693350", ["text"] = "Bonded: # Maximum Life per Level", @@ -34711,6 +34733,11 @@ return { ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2849118560", + ["text"] = "Bonded: #% reduced Damage taken from Projectile Hits", + ["type"] = "augment", + }, { ["id"] = "rune.stat_1441491952", ["text"] = "Bonded: #% reduced Shock duration on you", @@ -34861,6 +34888,11 @@ return { ["text"] = "Bonded: Curse zones erupt after #% increased delay", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3475931631", + ["text"] = "Bonded: Damage Blocked is Recouped as Mana", + ["type"] = "augment", + }, { ["id"] = "rune.stat_4019240232", ["text"] = "Bonded: Damage Penetrates #% Lightning Resistance", @@ -34871,6 +34903,11 @@ return { ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky if your Runic Ward has been damaged Recently", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1729154880", + ["text"] = "Bonded: Enemies in your Presence are Hindered", + ["type"] = "augment", + }, { ["id"] = "rune.stat_807013157", ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", @@ -35206,6 +35243,11 @@ return { ["text"] = "Culling Strike", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2875218423", + ["text"] = "Damage Blocked is Recouped as Mana", + ["type"] = "augment", + }, { ["id"] = "rune.stat_4258409981", ["text"] = "Deal #% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", @@ -35376,6 +35418,11 @@ return { ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1273508088", + ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["type"] = "augment", + }, { ["id"] = "rune.stat_901336307", ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", @@ -41054,4 +41101,3 @@ return { ["label"] = "Skill", }, } --- spell-checker: enable \ No newline at end of file diff --git a/src/Export/Scripts/flavourText.lua b/src/Export/Scripts/flavourText.lua index 0f554aba8e..2a99528577 100644 --- a/src/Export/Scripts/flavourText.lua +++ b/src/Export/Scripts/flavourText.lua @@ -1,6 +1,7 @@ -- -- export flavour text data -- +local utils = LoadModule("../Modules/Utils") local function normalizeId(id) id = tostring(id) -- Remove underscore and everything after it. We can't match hash sadly. @@ -52,10 +53,7 @@ for row in dat("UniqueStashLayout"):Rows() do end end -local out = io.open("../Data/FlavourText.lua", "w") -out:write('-- This file is automatically generated, do not edit!\n') -out:write('-- Flavour text data (c) Grinding Gear Games\n\n') -out:write('return {\n') +local out = {} local index = 1 for c in dat("FlavourText"):Rows() do @@ -65,25 +63,18 @@ for c in dat("FlavourText"):Rows() do if name then local lines = cleanAndSplit(tostring(c.Text)) - out:write('\t[', index, '] = {\n') - out:write('\t\tid = "', tostring(c.Id), '",\n') - out:write('\t\tname = "', name, '",\n') - if origin then - out:write('\t\torigin = "', origin, '",\n') - end - out:write('\t\ttext = {\n') - for _, line in ipairs(lines) do - out:write('\t\t\t"', line, '",\n') - end - out:write('\t\t},\n') - out:write('\t},\n') + table.insert(out, { + id = c.Id, + name = name, + origin = origin, + text = lines, + }) index = index + 1 unmatchedIds[id] = nil end end -out:write('}\n') -out:close() +utils.saveTableToFile("../Data/FlavourText.lua", out) print("Flavour Texts exported.") diff --git a/src/Export/Scripts/legionPassives.lua b/src/Export/Scripts/legionPassives.lua index 6a7c231caf..7ce62b2679 100644 --- a/src/Export/Scripts/legionPassives.lua +++ b/src/Export/Scripts/legionPassives.lua @@ -3,6 +3,7 @@ if not loadStatFile then end loadStatFile("passive_skill_stat_descriptions.csd") +local utils = LoadModule("../Modules/Utils") -- This table lists errors in the ggpk dat files local datErrors = { ["templar_notable_minimum_frenzy_charge"] = { @@ -66,7 +67,6 @@ local fixDatErrors = function(row) end end -local out = io.open("../Data/TimelessJewelData/LegionPassives.lua", "w") local stats = dat("Stats") local alternatePassiveSkillDat = dat("AlternatePassiveSkills") @@ -74,38 +74,6 @@ local alternatePassiveAdditionsDat = dat("AlternatePassiveAdditions") local LEGION_PASSIVE_GROUP = 1e9 ----@type fun(thing:string|table|number):string -function stringify(thing) - if type(thing) == 'string' then - return thing - elseif type(thing) == 'number' then - return ""..thing; - elseif type(thing) == 'table' then - local s = "{"; - for k,v in pairsSortByKey(thing) do - s = s.."\n\t" - if type(k) == 'number' then - s = s.."["..k.."] = " - else - s = s.."[\""..k.."\"] = " - end - if type(v) == 'string' then - s = s.."\""..stringify(v).."\", " - else - if type(v) == "boolean" then - v = v and "true" or "false" - end - val = stringify(v)..", " - if type(v) == "table" then - val = string.gsub(val, "\n", "\n\t") - end - s = s..val; - end - end - return s.."\n}" - end -end - function parseStats(datFileRow, legionPassive) local descOrders = {} for idx,statKey in ipairs(datFileRow.StatsKeys) do @@ -247,10 +215,6 @@ for i=1, alternatePassiveAdditionsDat.rowCount do data.additions[i] = legionPassiveAddition end -str = stringify(data) - -out:write("-- This file is automatically generated, do not edit!\n-- Item data (c) Grinding Gear Games\n\n") -out:write("return "..str) -out:close() +utils.saveTableToFile("../Data/TimelessJewelData/LegionPassives.lua", data) print("Legion passives exported.") diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index ff07ed84a9..2c24be2e29 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -4,6 +4,7 @@ end local statDescriptions = getStatDescriptors("stat_descriptions.csd") loadStatFile("stat_descriptions.csd") +local utils = LoadModule("../Modules/Utils") -- not comprehensive. see mod domains table in export tool and enums.lua local Domains = { GenericMod = 1, @@ -44,9 +45,7 @@ local function getSpawnWeightTag(mod, tag) end local function writeMods(outName, condFunc) - local out = io.open(outName, "w") - out:write('-- This file is automatically generated, do not edit!\n') - out:write('-- Item data (c) Grinding Gear Games\n\nreturn {\n') + local out = {} for mod in dat("Mods"):Rows() do if condFunc(mod) then local stats, orders, missing = describeMod(mod) @@ -64,19 +63,6 @@ local function writeMods(outName, condFunc) end end if #orders > 0 then - out:write('\t["', mod.Id, '"] = { ') - if mod.GenerationType == GenTypes.Prefix then - out:write('type = "Prefix", ') - elseif mod.GenerationType == GenTypes.Suffix then - out:write('type = "Suffix", ') - elseif mod.GenerationType == GenTypes.Intrinsic then - if mod.Id:match("SpecialCorruption") then - out:write('type = "SpecialCorrupted", ') - end - elseif mod.GenerationType == GenTypes.Corruption then - out:write('type = "Corrupted", ') - end - out:write('affix = "', mod.Name, '", ') for index, value in pairs(mod.Family) do if string.find(value.Id, "LocalDisplayNearbyEnemy") and #stats > index and #orders > index then table.remove(stats, index) @@ -84,59 +70,24 @@ local function writeMods(outName, condFunc) break end end - out:write('"', table.concat(stats, '", "'), '", ') - out:write('statOrder = { ', table.concat(orders, ', '), ' }, ') - out:write('level = ', mod.Level, ', group = "', mod.Type.Id, '", ') - out:write('weightKey = { ') + local spawnTags = {} for _, tag in ipairs(mod.SpawnTags) do - out:write('"', getSpawnWeightTag(mod, tag), '", ') + table.insert(spawnTags, getSpawnWeightTag(mod, tag)) end - out:write('}, ') - out:write('weightVal = { ', table.concat(mod.SpawnWeight, ', '), ' }, ') - if mod.GenerationWeightTags[1] then - -- make large clusters only have 1 notable suffix - if mod.GenerationType == GenTypes.Suffix and mod.Tags[1] and outName == "../Data/ModJewelCluster.lua" and mod.Tags[1].Id == "has_affliction_notable" then - out:write('weightMultiplierKey = { "has_affliction_notable2", ') - for _, tag in ipairs(mod.GenerationWeightTags) do - out:write('"', tag.Id, '", ') - end - out:write('}, ') - out:write('weightMultiplierVal = { 0, ', table.concat(mod.GenerationWeightValues, ', '), ' }, ') - if mod.Tags[1] then - out:write('tags = { "has_affliction_notable2", ') - for _, tag in ipairs(mod.Tags) do - out:write('"', tag.Id, '", ') - end - out:write('}, ') - end - else - out:write('weightMultiplierKey = { ') - for _, tag in ipairs(mod.GenerationWeightTags) do - out:write('"', tag.Id, '", ') - end - out:write('}, ') - out:write('weightMultiplierVal = { ', table.concat(mod.GenerationWeightValues, ', '), ' }, ') - if mod.Tags[1] then - out:write('tags = { ') - for _, tag in ipairs(mod.Tags) do - out:write('"', tag.Id, '", ') - end - out:write('}, ') - end - end + local weightMultiplierKey = {} + for _, tag in ipairs(mod.GenerationWeightTags) do + table.insert(weightMultiplierKey, tag.Id) end - out:write('modTags = { ', stats.modTags, ' }, ') - if mod.NodeType ~= 3 then - out:write('nodeType = ', mod.NodeType, ', ') + local tags = {} + for _, tag in ipairs(mod.Tags) do + table.insert(tags, tag.Id) end - local tradeHashes = {} local statsHashed = {} local isTinctureMod = (mod.Domain == Domains.Tincture) and (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) for statIdx = 1, 6 do - local currentStats = {} local stat = mod["Stat" .. statIdx] if not stat then break @@ -188,7 +139,7 @@ local function writeMods(outName, condFunc) if mod.NodeType == 2 then extraStat = "local_jewel_mod_stats_added_to_notable_passives" prefix = "Notable Passive Skills in Radius also grant " - -- small + -- small elseif mod.NodeType and mod.NodeType == 1 then extraStat = "local_jewel_mod_stats_added_to_small_passives" prefix = "Small Passive Skills in Radius also grant " @@ -199,7 +150,7 @@ local function writeMods(outName, condFunc) if prefix then for i, v in ipairs(description or {}) do - description[i] = prefix..v + description[i] = prefix .. v end end @@ -207,23 +158,54 @@ local function writeMods(outName, condFunc) tradeHashes[tradeHash] = description ::innerContinue:: end - out:write("tradeHashes = { ") - for hash, desc in pairs(tradeHashes) do - local descriptionLines = '"' .. table.concat(desc, '", "') .. '"' - out:write(string.format('[%d] = { %s }, ', hash, descriptionLines)) + local modTags = {} + -- modTags are represented by a string so split it + for tag in (stats.modTags .. ", "):gmatch("(.-), ") do + tag = tag:gsub('"', "") + if #tag > 0 then + table.insert(modTags, tag) + end + end + + local entry = { + affix = mod.Name, + statOrder = orders, + level = mod.Level, + group = mod.Type.Id, + weightKey = spawnTags, + weightVal = mod.SpawnWeight, + weightMultiplierKey = #weightMultiplierKey > 0 and weightMultiplierKey or nil, + weightMultiplierVal = #weightMultiplierKey > 0 and mod.GenerationWeightValues or nil, + tags = #tags > 0 and tags or nil, + modTags = modTags, + nodeType = mod.NodeType ~= 3 and mod.NodeType or nil, + tradeHashes = tradeHashes + } + for i, v in ipairs(stats) do + entry[i] = v + end + if mod.GenerationType == GenTypes.Prefix then + entry.type = "Prefix" + elseif mod.GenerationType == GenTypes.Suffix then + entry.type = "Suffix" + elseif mod.GenerationType == GenTypes.Intrinsic then + if mod.Id:match("SpecialCorruption") then + entry.type = "SpecialCorrupted" + end + elseif mod.GenerationType == GenTypes.Corruption then + entry.type = "Corrupted" end - out:write('} ') - out:write('},\n') + out[mod.Id] = entry else print("Mod '" .. mod.Id .. "' has no stats") end end ::continue:: end - out:write('}') - out:close() + utils.saveTableToFile(outName, out, "Item modifier data generated by mods.lua") end + writeMods("../Data/ModItem.lua", function(mod) return mod.Domain == Domains.GenericMod and (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) @@ -232,11 +214,11 @@ writeMods("../Data/ModItem.lua", function(mod) end) writeMods("../Data/ModCorrupted.lua", function(mod) return (mod.Domain == Domains.Jewel or mod.Domain == Domains.GenericMod) and - (mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("SpecialCorruption") or mod.GenerationType == GenTypes.Corruption) + (mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("SpecialCorruption") or mod.GenerationType == GenTypes.Corruption) end) writeMods("../Data/ModFlask.lua", function(mod) return mod.Domain == Domains.FlaskCharm and - (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) and mod.Id:match("^Flask") + (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) and mod.Id:match("^Flask") end) writeMods("../Data/ModCharm.lua", function(mod) return mod.Domain == Domains.FlaskCharm and ((mod.GenerationType == GenTypes.Prefix and mod.Id:match("^Charm")) @@ -244,7 +226,7 @@ writeMods("../Data/ModCharm.lua", function(mod) end) writeMods("../Data/ModJewel.lua", function(mod) return (mod.Domain == Domains.Jewel and (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix)) or - (mod.Domain == Domains.FlaskCharm1 and mod.GenerationType == GenTypes.Intrinsic) + (mod.Domain == Domains.FlaskCharm1 and mod.GenerationType == GenTypes.Intrinsic) end) writeMods("../Data/ModIncursionLimb.lua", function(mod) return (mod.Domain == Domains.IncursionLimb and mod.GenerationType == GenTypes.Intrinsic) @@ -261,5 +243,4 @@ writeMods("../Data/ModItemExclusive.lua", writeMods("../Data/ModVeiled.lua", function(mod) return mod.Domain == Domains.Veiled and not mod.Id:match("Map") end) - print("Mods exported.") diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index bc1cdf3d69..6fd1ec57a9 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -888,42 +888,6 @@ function supportEnabled(skillName, activeSkill) return true end --- will remove newlines from strings so that they are valid lua ----@param thing string | table | number ----@return string -function stringify(thing) - if type(thing) == 'string' then - local s = thing:gsub("\n", " ") - return s - elseif type(thing) == 'number' then - return ""..thing; - elseif type(thing) == 'table' then - local s = "{"; - local keys = { } - for key in pairs(thing) do t_insert(keys, key) end - table.sort(keys) - for _, k in ipairs(keys) do - local v = thing[k] - s = s.."\n\t" - if type(k) ~= 'number' then - s = s.."[\""..k.."\"] = " - end - if type(v) == 'string' then - s = s.."\""..stringify(v).."\"," - else - if type(v) == "boolean" then - v = v and "true" or "false" - end - val = stringify(v).."," - if type(v) == "table" then - val = string.gsub(val, "\n", "\n\t") - end - s = s..val; - end - end - return s.."\n}" - end -end -- Class function to split a string on a single character (??) separator. -- returns a list of fields, not including the separator. diff --git a/src/Modules/Utils.lua b/src/Modules/Utils.lua new file mode 100644 index 0000000000..93d21dce51 --- /dev/null +++ b/src/Modules/Utils.lua @@ -0,0 +1,124 @@ +local t_insert = table.insert + +local M = {} + +local indentCache = {} +local function indentFor(k) + if k < 1 then + return "" + end + if not indentCache[k] then + indentCache[k] = string.rep("\t", k) + end + return indentCache[k] +end +local function strSort(a, b) + return tostring(a) < tostring(b) +end +---@alias StringifyTypes string | number | boolean | nil | table +local function writeStringify(buf, value, allowNewlines, tabs) + local valType = type(value) + if not tabs then + tabs = 0 + end + if valType == "string" then + if allowNewlines and value:find("\n") then + buf[#buf + 1] = '[[' .. value .. ']]' + else + local s = value:gsub("\n", " ") + buf[#buf + 1] = '"' .. s .. '"' + end + elseif valType == "boolean" or valType == "nil" or valType == "number" then + buf[#buf + 1] = tostring(value) + elseif valType == "table" then + buf[#buf + 1] = "{\n" + -- ipairs compatible keys are done first so we can use the array syntax for them + local arrayKeys = {} + local indent = indentFor(tabs) + for k, v in ipairs(value) do + arrayKeys[k] = true + buf[#buf + 1] = indent + writeStringify(buf, v, allowNewlines, tabs + 1) + buf[#buf + 1] = ",\n" + end + + local mapKeys = {} + for key in pairs(value) do + -- avoid printing array-style items twice + if not arrayKeys[key] then + t_insert(mapKeys, key) + end + end + table.sort(mapKeys, strSort) + + for _, k in ipairs(mapKeys) do + if type(k) == "string" and allowNewlines and k:find("\n") then + -- multiline strings as keys need the space around the key value to parse correctly + buf[#buf + 1] = indent .. "[ " + writeStringify(buf, k, allowNewlines, nil) + buf[#buf + 1] = " ] = " + else + buf[#buf + 1] = indent .. "[" + writeStringify(buf, k, allowNewlines, nil) + buf[#buf + 1] = "] = " + end + writeStringify(buf, value[k], allowNewlines, tabs + 1) + buf[#buf + 1] = ",\n" + end + buf[#buf + 1] = indentFor(tabs - 1) .. "}" + else + error("Disallowed stringify type " .. valType) + end +end +-- Converts a table to a string which will be valid Lua. The result will ipairs to utilise the array +-- syntax when applicable, and will sort other keys. +--- @param value StringifyTypes +--- @param allowNewlines boolean? Determines if multi-line strings should be allowed. By default newlines are converted to spaces. +--- @return string +function M.stringify(value, allowNewlines, tabs) + local buf = {} + writeStringify(buf, value, allowNewlines, tabs) + return table.concat(buf) +end + +---@param fileName +---@param table StringifyTypes +---@param description? string A string which will be passed to string.format and which should describe what this file contains. Multi-line strings are supported. +---@param allowMultiLine? boolean Whether multi-line strings should be allowed. If not, they are converted to spaces. +---@return boolean success +function M.saveTableToFile(fileName, table, description, allowMultiLine) + local f, openErr = io.open(fileName, "w") + if not f then + error(string.format("Could not open %s for writing table: %s", fileName, openErr)) + end + local descFormatted = "" + if description then + -- add newline at the end + if description:sub(-1) ~= "\n" then + description = description .. "\n" + end + -- prepend lines with comments + for line in description:gmatch("(.-)\n") do + descFormatted = descFormatted .. "-- " .. line .. "\n" + end + end + local template = [[-- This file is automatically generated, do not edit! +-- Game data (c) Grinding Gear Games + +%s +-- spell-checker: disable +return %s +]] + + local contents = string.format(template, descFormatted, M.stringify(table, allowMultiLine, 1)) + + local _, writeErr = f:write(contents) + + if writeErr then + error(string.format("Failed to write to %s: %s", fileName, writeErr)) + end + + return f:close() or false +end + +return M